Skip to content

A client wrapper for the genderize.io API

License

Notifications You must be signed in to change notification settings

joaomatossilva/Genderize.Net

Repository files navigation

Genderize.Net

https://genderize.io/

NuGet VersionMyGet Pre ReleaseAppVeyorGitHub contributors

A client wrapper of the genderize.io API - Genderize.io determines the gender of a first name.

Stuff still needed for version 1.0

  • Handle of the error cases

Usage

A simple way to use the client is simply like this

var client = new GenderizeClient(); var result = await client.GetNameGender("João"); Assert.AreEqual(Gender.Male, result.Gender); 
close