{"id":37072924,"url":"https://github.com/abovecolin/stremio-py","last_synced_at":"2026-01-14T08:33:43.619Z","repository":{"id":329805348,"uuid":"1120709892","full_name":"AboveColin/stremio-py","owner":"AboveColin","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-21T19:59:40.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-23T08:11:15.236Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AboveColin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-12-21T19:30:47.000Z","updated_at":"2025-12-21T19:55:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/AboveColin/stremio-py","commit_stats":null,"previous_names":["abovecolin/stremio-py"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/AboveColin/stremio-py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AboveColin%2Fstremio-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AboveColin%2Fstremio-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AboveColin%2Fstremio-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AboveColin%2Fstremio-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AboveColin","download_url":"https://codeload.github.com/AboveColin/stremio-py/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AboveColin%2Fstremio-py/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28414333,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T08:31:27.429Z","status":"ssl_error","status_checked_at":"2026-01-14T08:31:19.098Z","response_time":107,"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":[],"created_at":"2026-01-14T08:33:42.999Z","updated_at":"2026-01-14T08:33:43.611Z","avatar_url":"https://github.com/AboveColin.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stremio-API\n\nA lightweight, asynchronous Python wrapper for the Stremio API.\n\n## Features\n- ✨ Async functionality using `httpx`\n- 👤 User authentication and profile management\n- 📚 Library and Addon collection access\n- 📺 \"Continue Watching\" synchronization\n- 🎬 Metadata fetching (via Cinemeta)\n\n## Installation\n```bash\npip install stremio-api\n```\n\n## Quick Start\nYou can log in directly using your Stremio credentials:\n\n```python\nimport asyncio\nfrom stremio_api import StremioAPIClient\n\nasync def main():\n    # Initialize without an auth key (or with None)\n    async with StremioAPIClient(auth_key=None) as client:\n        # Login with email and password\n        auth_key = await client.login(\"your.email@example.com\", \"your_password\")\n        print(f\"Logged in! New Auth Key: {auth_key}\")\n\n        # Get user info\n        user = await client.get_user()\n        print(f\"User profile: {user.email}\")\n\n        # Fetch Continue Watching items\n        watching = await client.get_continue_watching(limit=5)\n        for item in watching:\n            print(f\"Watching: {item.name}\")\n\nif __name__ == \"__main__\":\n    asyncio.run(main())\n```\n\n## Usage with Existing Auth Key\nIf you already have an `authKey` (e.g. from local storage), you can skip the login:\n\n```python\nclient = StremioAPIClient(auth_key=\"YOUR_EXISTING_KEY\")\nuser = await client.get_user()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabovecolin%2Fstremio-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabovecolin%2Fstremio-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabovecolin%2Fstremio-py/lists"}