{"id":34024756,"url":"https://github.com/developer-acc/agify","last_synced_at":"2026-03-09T08:31:00.741Z","repository":{"id":65148562,"uuid":"566142100","full_name":"developer-acc/agify","owner":"developer-acc","description":"Async wrapper for agify.io's APIs","archived":false,"fork":false,"pushed_at":"2023-01-02T06:43:13.000Z","size":19,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-23T10:13:18.147Z","etag":null,"topics":["agify","agify-api","agifyio","genderize-api","nationalize-api"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/agify/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/developer-acc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-11-15T03:33:08.000Z","updated_at":"2023-01-01T09:53:04.000Z","dependencies_parsed_at":"2023-02-01T02:00:32.239Z","dependency_job_id":null,"html_url":"https://github.com/developer-acc/agify","commit_stats":null,"previous_names":["vazno/agify"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/developer-acc/agify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developer-acc%2Fagify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developer-acc%2Fagify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developer-acc%2Fagify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developer-acc%2Fagify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/developer-acc","download_url":"https://codeload.github.com/developer-acc/agify/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/developer-acc%2Fagify/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30287797,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agify","agify-api","agifyio","genderize-api","nationalize-api"],"created_at":"2025-12-13T16:38:27.981Z","updated_at":"2026-03-09T08:31:00.734Z","avatar_url":"https://github.com/developer-acc.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Asynchronous Python wrapper for (![Genderize](https://genderize.io/), ![Nationalize](https://nationalize.io/), ![Agify](https://agify.io/))\nA simple API for predicting the age, gender, and country of a person by their name.\n\nThe API is free for up to 1000 names/day. No sign up or API key needed. So go ahead and try it out.\n\n# Instalation\n`pip install agify`\n\n## Usage example:\n### async version:\n```python\nfrom agify import AsyncNameAPI\ng = AsyncNameAPI([\"Igor\", \"Alex\"], mode=\"*\")\nprint(asyncio.run(g.get_names_info()))\n# -\u003e\n{'Alex': {'age': 45,\n          'count': 1114390,\n          'country': [{'country_id': 'CZ', 'probability': 0.082},\n                      {'country_id': 'UA', 'probability': 0.045},\n                      {'country_id': 'RO', 'probability': 0.033},\n                      {'country_id': 'RU', 'probability': 0.031},\n                      {'country_id': 'IL', 'probability': 0.028}],\n          'gender': 'male',\n          'probability': 0.96},\n 'Igor': {'age': 49,\n          'count': 168019,\n          'country': [{'country_id': 'UA', 'probability': 0.169},\n                      {'country_id': 'RS', 'probability': 0.113},\n                      {'country_id': 'RU', 'probability': 0.093},\n                      {'country_id': 'HR', 'probability': 0.084},\n                      {'country_id': 'SK', 'probability': 0.062}],\n          'gender': 'male',\n          'probability': 1.0}}\n\na = AsyncNameAPI([\"Ivan\"], \"gender\")\nprint(asyncio.run(a.get_names_info()))\n# -\u003e\n{'Ivan': {'count': 425630, 'gender': 'male', 'probability': 1.0}}\n\na = AsyncNameAPI()\nprint(asyncio.run(a.get_limit_remaining()))\n# -\u003e\n987\n```\n\n### usual version:\n```python\nfrom agify import NameAPI\ng = NameAPI([\"Igor\", \"Alex\"], mode=\"*\")\nprint(g.get_names_info())\n# -\u003e\n{'Alex': {'age': 45,\n          'count': 1114390,\n          'country': [{'country_id': 'CZ', 'probability': 0.082},\n                      {'country_id': 'UA', 'probability': 0.045},\n                      {'country_id': 'RO', 'probability': 0.033},\n                      {'country_id': 'RU', 'probability': 0.031},\n                      {'country_id': 'IL', 'probability': 0.028}],\n          'gender': 'male',\n          'probability': 0.96},\n 'Igor': {'age': 49,\n          'count': 168019,\n          'country': [{'country_id': 'UA', 'probability': 0.169},\n                      {'country_id': 'RS', 'probability': 0.113},\n                      {'country_id': 'RU', 'probability': 0.093},\n                      {'country_id': 'HR', 'probability': 0.084},\n                      {'country_id': 'SK', 'probability': 0.062}],\n          'gender': 'male',\n          'probability': 1.0}}\n\na = NameAPI([\"Ivan\"], \"gender\")\nprint(a.get_names_info())\n# -\u003e\n{'Ivan': {'count': 425630, 'gender': 'male', 'probability': 1.0}}\n\na = NameAPI()\nprint(a.get_limit_remaining())\n# -\u003e\n987\n```\n\n---\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeveloper-acc%2Fagify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeveloper-acc%2Fagify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeveloper-acc%2Fagify/lists"}