Official Python SDK for GenderAPI.io
Project description
genderapi-python
Official Python SDK for GenderAPI.io — determine gender from names, emails, and usernames using AI.
🚀 Installation
Install the required package:
pip install genderapi
📝 Usage
🔹 Get Gender by Name
from genderapi import GenderAPI
api = GenderAPI("YOUR_API_KEY")
# Basic usage
result = api.get_gender_by_name(name="Michael")
print(result)
# With askToAI set to True
result = api.get_gender_by_name(name="李雷", askToAI=True)
print(result)
🔹 Get Gender by Email
result = api.get_gender_by_email(email="michael.smith@example.com")
print(result)
# With askToAI set to True
result = api.get_gender_by_email(email="michael.smith@example.com", askToAI=True)
print(result)
🔹 Get Gender by Username
result = api.get_gender_by_username(username="michael_dev")
print(result)
# With askToAI set to True
result = api.get_gender_by_username(username="michael_dev", askToAI=True)
print(result)
📥 API Parameters
Common Parameters
| Parameter | Required | Description |
|---|---|---|
| country | No | 2-letter country code (e.g. "US") |
| askToAI | No | true or false. Default is false. If true, the query goes directly to AI and costs 3 requests. If false, the system tries its internal database first and only uses AI if necessary without spending 3 requests. Recommended for non-latin characters. |
Name Lookup
| Parameter | Required | Description |
|---|---|---|
| name | Yes | Name to query |
Email Lookup
| Parameter | Required | Description |
|---|---|---|
| Yes | Email address to query |
Username Lookup
| Parameter | Required | Description |
|---|---|---|
| username | Yes | Username to query |
✅ API Response
Example JSON response for all endpoints:
{
"status": true,
"used_credits": 1,
"remaining_credits": 4999,
"expires": 1743659200,
"q": "michael.smith@example.com",
"name": "Michael",
"gender": "male",
"country": "US",
"total_names": 325,
"probability": 98,
"duration": "4ms"
}
Response Fields
| Field | Type | Description |
|---|---|---|
| status | Boolean | true or false. Check errors if false. |
| used_credits | Integer | Credits used for this request. |
| remaining_credits | Integer | Remaining credits on your package. |
| expires | Integer (timestamp) | Package expiration date (in seconds). |
| q | String | Your input query (name, email, or username). |
| name | String | Found name. |
| gender | Enum[String] | "male", "female", or "null". |
| country | Enum[String] | Most likely country (e.g. "US", "DE", etc.). |
| total_names | Integer | Number of samples behind the prediction. |
| probability | Integer | Likelihood percentage (50-100). |
| duration | String | Processing time (e.g. "4ms"). |
⚠️ Error Codes
When status is false, check the following error codes:
| errno | errmsg | Description |
|---|---|---|
| 50 | access denied | Unauthorized IP Address or Referrer. Check your access privileges. |
| 90 | invalid country code | Check supported country codes. ISO 3166-1 alpha-2 |
| 91 | name not set || email not set | Missing name or email parameter on your request. |
| 92 | too many names || too many emails | Limit is 100 for names, 50 for emails in one request. |
| 93 | limit reached | The API key credit has been finished. |
| 94 | invalid or missing key | The API key cannot be found. |
| 99 | API key has expired | Please renew your API key. |
Example error response:
{
"status": false,
"errno": 94,
"errmsg": "invalid or missing key"
}
⚖️ License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file genderapi-1.0.2.tar.gz.
File metadata
- Download URL: genderapi-1.0.2.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cae0e01e9b10ec14c03f5560f1daaac63b200432ac488229fda5bf3ee9aaab1
|
|
| MD5 |
05a05e6be2527e95cfa084cbb0ff6de1
|
|
| BLAKE2b-256 |
8e1c67c08a1efefc54699aaa1a70d653a544c044631d2c1242c47f2c6a0c6428
|
Provenance
The following attestation bundles were made for genderapi-1.0.2.tar.gz:
Publisher:
publish-to-pypi.yml on GenderAPI/genderapi-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
genderapi-1.0.2.tar.gz -
Subject digest:
3cae0e01e9b10ec14c03f5560f1daaac63b200432ac488229fda5bf3ee9aaab1 - Sigstore transparency entry: 259618510
- Sigstore integration time:
-
Permalink:
GenderAPI/genderapi-python@1fe43d2a1706dc11cc024bcaf612c93465b06f18 -
Branch / Tag:
refs/tags/v1.0.2 - Owner: https://github.com/GenderAPI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@1fe43d2a1706dc11cc024bcaf612c93465b06f18 -
Trigger Event:
push
-
Statement type:
File details
Details for the file genderapi-1.0.2-py3-none-any.whl.
File metadata
- Download URL: genderapi-1.0.2-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c658f862d1c8f27522c003f5dd7ebad8197f0cb1511426482b6ea382bb91595
|
|
| MD5 |
68248c3e27a743e5cba4bc6f5c6b5e2c
|
|
| BLAKE2b-256 |
516a8e94f0a551de75d844a295e82cf9ae3657e6f1682f747cab0e9be5a55a7c
|
Provenance
The following attestation bundles were made for genderapi-1.0.2-py3-none-any.whl:
Publisher:
publish-to-pypi.yml on GenderAPI/genderapi-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
genderapi-1.0.2-py3-none-any.whl -
Subject digest:
8c658f862d1c8f27522c003f5dd7ebad8197f0cb1511426482b6ea382bb91595 - Sigstore transparency entry: 259618517
- Sigstore integration time:
-
Permalink:
GenderAPI/genderapi-python@1fe43d2a1706dc11cc024bcaf612c93465b06f18 -
Branch / Tag:
refs/tags/v1.0.2 - Owner: https://github.com/GenderAPI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@1fe43d2a1706dc11cc024bcaf612c93465b06f18 -
Trigger Event:
push
-
Statement type: