{"id":39728132,"url":"https://github.com/fulviofreitas/eero-api","last_synced_at":"2026-04-21T04:03:42.397Z","repository":{"id":333243081,"uuid":"1136657540","full_name":"fulviofreitas/eero-api","owner":"fulviofreitas","description":"Python API client for Eero mesh routers","archived":false,"fork":false,"pushed_at":"2026-04-19T03:22:12.000Z","size":590,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-19T05:22:41.175Z","etag":null,"topics":["api-client","async","asyncio","eero","home-automation","iot","mesh-network","networking","pydantic","python","python3","smart-home","wifi"],"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/fulviofreitas.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-18T05:00:22.000Z","updated_at":"2026-04-19T03:22:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/fulviofreitas/eero-api","commit_stats":null,"previous_names":["fulviofreitas/eero-api"],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/fulviofreitas/eero-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fulviofreitas%2Feero-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fulviofreitas%2Feero-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fulviofreitas%2Feero-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fulviofreitas%2Feero-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fulviofreitas","download_url":"https://codeload.github.com/fulviofreitas/eero-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fulviofreitas%2Feero-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32076295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T02:38:07.213Z","status":"ssl_error","status_checked_at":"2026-04-21T02:38:06.559Z","response_time":128,"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":["api-client","async","asyncio","eero","home-automation","iot","mesh-network","networking","pydantic","python","python3","smart-home","wifi"],"created_at":"2026-01-18T10:57:25.902Z","updated_at":"2026-04-21T04:03:42.393Z","avatar_url":"https://github.com/fulviofreitas.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# 🐍 Eero API\n\n**Your async Python toolkit for Eero mesh networks**\n\n[![Python 3.12+](https://img.shields.io/badge/python-3.12+-3776ab?style=for-the-badge\u0026logo=python\u0026logoColor=white)](https://python.org)\n[![PyPI](https://img.shields.io/pypi/v/eero-api?style=for-the-badge\u0026logo=pypi\u0026logoColor=white)](https://pypi.org/project/eero-api/)\n[![License](https://img.shields.io/badge/license-MIT-22c55e?style=for-the-badge)](LICENSE)\n\n---\n\n_A modern, async-first Python SDK for the Eero mesh WiFi API._  \n_Raw JSON responses, system keyring integration, and smart caching._\n\n[Get Started](#-quick-start) · [Documentation](#-docs) · [Ecosystem](#-ecosystem) · [License](#-license)\n\n\u003c/div\u003e\n\n---\n\n## ⚡ Why Eero API?\n\n- 🚀 **Async-first** — Non-blocking, blazing fast\n- 🔐 **Secure** — System keyring for credentials\n- 📦 **Raw JSON** — Direct API responses, no transformations\n- ⚡ **Smart caching** — Snappy responses\n\n## 📦 Install\n\n```bash\npip install eero-api\n# or with uv\nuv add eero-api\n```\n\n## 🚀 Quick Start\n\n```python\nimport asyncio\nfrom eero import EeroClient\n\nasync def main():\n    async with EeroClient() as client:\n        if not client.is_authenticated:\n            await client.login(\"you@example.com\")\n            await client.verify(input(\"Code: \"))\n        \n        # All methods return raw JSON responses\n        response = await client.get_networks()\n        networks = response.get(\"data\", {}).get(\"networks\", [])\n        \n        for network in networks:\n            print(f\"📶 {network['name']}: {network.get('status')}\")\n\nasyncio.run(main())\n```\n\n\u003e 💡 Credentials are auto-saved to your system keyring\n\n## 📄 Raw Response Format\n\nAll API methods return the exact JSON from Eero's API:\n\n```python\n{\n    \"meta\": {\"code\": 200, \"server_time\": \"...\"},\n    \"data\": {\n        # Endpoint-specific payload\n    }\n}\n```\n\nSee [MIGRATION.md](MIGRATION.md) for details on the raw response architecture.\n\n## 📚 Docs\n\n| Guide | What's inside |\n|-------|---------------|\n| **[📖 Python API](../../wiki/Python-API)** | Full API reference |\n| **[⚙️ Configuration](../../wiki/Configuration)** | Auth \u0026 settings |\n| **[🔧 Troubleshooting](../../wiki/Troubleshooting)** | Common fixes |\n| **[🔄 Migration Guide](MIGRATION.md)** | v1.x → v2.0 migration |\n| **[🏠 Wiki Home](../../wiki)** | All documentation |\n\n## 🔗 Ecosystem\n\n| Project | Description |\n|---------|-------------|\n| **[🖥️ eero-cli](https://github.com/fulviofreitas/eero-cli)** | Terminal interface for Eero networks |\n| **[🛜 eero-ui](https://github.com/fulviofreitas/eero-ui)** | Svelte dashboard for network management |\n| **[📊 eero-prometheus-exporter](https://github.com/fulviofreitas/eero-prometheus-exporter)** | Prometheus metrics for monitoring |\n\n## ⚠️ Important Notes\n\n\u003e **Unofficial Project**: This library uses reverse-engineered APIs and is not affiliated with or endorsed by Eero.\n\n\u003e **Amazon Login Limitation**: If your Eero account uses Amazon for login, this library may not work directly due to API limitations. **Workaround**: Have someone in your household create a standard Eero account (with email/password) and invite them as an admin to your network. Then use those credentials to authenticate.\n\n## 📄 License\n\n[MIT](LICENSE) — Use it, fork it, build cool stuff 🎉\n\n---\n\n\u003cdiv align=\"center\"\u003e\n\n## 📊 Repository Metrics\n\n![Repository Metrics](./metrics.repository.svg)\n\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffulviofreitas%2Feero-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffulviofreitas%2Feero-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffulviofreitas%2Feero-api/lists"}