{"id":16391998,"url":"https://github.com/mikeshultz/python-eips","last_synced_at":"2026-05-19T03:02:11.097Z","repository":{"id":197908000,"uuid":"699618646","full_name":"mikeshultz/python-eips","owner":"mikeshultz","description":"Python library for EIP parsing and interaction","archived":false,"fork":false,"pushed_at":"2024-12-01T22:18:30.000Z","size":71,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-22T22:27:48.991Z","etag":null,"topics":["ethereum","python"],"latest_commit_sha":null,"homepage":"","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/mikeshultz.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-03T01:50:55.000Z","updated_at":"2024-12-01T22:18:01.000Z","dependencies_parsed_at":"2024-11-20T05:32:35.197Z","dependency_job_id":"74865d5a-12cb-468d-bb7b-856b2225549e","html_url":"https://github.com/mikeshultz/python-eips","commit_stats":null,"previous_names":["mikeshultz/python-eips"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mikeshultz/python-eips","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeshultz%2Fpython-eips","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeshultz%2Fpython-eips/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeshultz%2Fpython-eips/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeshultz%2Fpython-eips/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mikeshultz","download_url":"https://codeload.github.com/mikeshultz/python-eips/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeshultz%2Fpython-eips/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268312245,"owners_count":24230547,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["ethereum","python"],"created_at":"2024-10-11T04:48:08.599Z","updated_at":"2026-05-19T03:02:10.782Z","avatar_url":"https://github.com/mikeshultz.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ethereum Improvement Proposal (EIP) Processor\n\nCLI tools and Python library for interacting with EIPs from the [source EIPs GitHub repository](https://github.com/ethereum/EIPs).\n\n## Features/TODO\n\nFrontend\n\n- [X] CLI tools\n- [X] Library API\n- [ ] Documentation\n\nData processing:\n\n- [X] EIP Metadata processing\n- [ ] EIP relationships and references\n- [ ] Automated tagging\n- [ ] File history, changelog\n- [X] Aggregate data, statistics, and error detection\n- [ ] Indicate document deletion in some fashion (file flag, and empty props?)\n\n\n## Usage\n\n### Show EIP\n\n```bash\neips show 712\n```\n\n### Show EIP Headers\n\n```bash\neips show -i 4626\n```\n\n### Show ERC\n\n```bash\neips show 20\n```\n\n## API Usage\n\n### Get an EIP\n\n```python\n\u003e\u003e\u003e from eips import EIPs\n\u003e\u003e\u003e eips = EIPs()\n\u003e\u003e\u003e eip_20 = eips.get(20)[0]\n\u003e\u003e\u003e eip_20.title\n'Token Standard'\n```\n\n### Get all EIPs\n\n```python\n\u003e\u003e\u003e from eips import EIPs\n\u003e\u003e\u003e eips = EIPs()\n\u003e\u003e\u003e for e in eips.get():\n...   print(e.eip_id)\n... \n2018\n5216\n999\n606\n[...]\n```\n\n### Get count of EIPs\n\n```python\n\u003e\u003e\u003e from eips import EIPs\n\u003e\u003e\u003e eips = EIPs()\n\u003e\u003e\u003e eips.len()\n687\n```\n\n### Get EIPs aggregate stats\n\n```python\n\u003e\u003e\u003e from eips import EIPs\n\u003e\u003e\u003e eips = EIPs()\n\u003e\u003e\u003e eips.stats().total\n687\n\u003e\u003e\u003e eips.stats().errors\n0\n\u003e\u003e\u003e [c.value for c in eips.stats().categories]\n['ERC', 'Core', 'Interface', 'Networking']\n\u003e\u003e\u003e [s.value for s in eips.stats().statuses]\n['Stagnant', 'Last Call', 'Withdrawn', 'Final', 'Review', 'Draft', 'Living']\n\u003e\u003e\u003e [t.value for t in eips.stats().types]\n['Standards Track', 'Meta', 'Informational']\n```\n\n## Development\n\n### Run Tests\n\n```bash\nhatch run test\n```\n\n### Linting\n\n```bash\nhatch run lint\n```\n\n### Release\n\nTo release, create and publish a GitHub package release \n\n```bash\n# Bump the version major/minor/patch\nhatch version patch\n# Tag the git commit with the version\ngit tag -a \"v$(hatch version)\" -m \"v$(hatch version)\"\n# Push it up to GH, don't forget the tag\ngit push --follow-tags\n```\n\nNow [create a GitHub release](https://github.com/mikeshultz/python-eips/releases/new) and CI will do the rest.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikeshultz%2Fpython-eips","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmikeshultz%2Fpython-eips","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikeshultz%2Fpython-eips/lists"}