Skip to content

RyannKim327/Gender-Identification

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gender Name Based Identification

MPOP Reverse II

How to install

npm install gender-identification

How to set a name data

.set(sample_name, gender)

const gender = require("gender-identification")

gender.set("MyName", gender.MALE)

Sample Output [Success]

{
	"result": "New data added",
	"name": "MyName",
	"gender": "male"
}

Sample Output [Error]

{
	"result": "Invalid gender, kindly read the documentation or check the spelling of your input.",
	"name": "MyName",
	"gender": "null"
}

The only name that recognized by this program is on the first name only like ("Ryann Kim") only Ryann will going to be added.


How to get a name data

.get(sample_name)

const gender = require("gender-identification")

gender.set("MyName")

Sample Output

{
	"gender": "male",
	"id": 1
}

Gender IDs

Gender ID
MALE 1
FEMALE 0
UNISEX 2

Be take note that this program didn't recognized the gender totally thru appearance, but thru names only, if there's a mistake in the program, it might be the registered data. To fix it, kindly overwrite the data you've inserted. Thank you for using this program, I hope it helps.

Credits

  • Lester Navarra
  • John Paul Caigas
  • Earl Shine Sawir
  • Mart Anthony Salazar
  • And Facebook Bot dev community

Releases

No releases published

Packages

No packages published