A comprehensive Python API wrapper for seedr.cc.
seedrcc provides a clean Python interface for the Seedr API, with support for both synchronous and asynchronous operations.
Table of Contents
- Complete API Coverage: All major Seedr API endpoints are supported.
- Works for All Users: Fully functional for both free and premium Seedr accounts.
- Sync & Async: Includes
seedrcc.Seedr
for synchronous operations andseedrcc.AsyncSeedr
for asynchronous ones. - Robust Authentication: Handles all authentication flows, including automatic token refreshes.
- Fully Typed: Provides type hints for all methods and models to improve code quality and clarity.
- Custom Exceptions: Provides specific exceptions for API, network, and authentication errors.
- Dataclass Models: API responses are parsed into clean, easy-to-use dataclasses.
Install from PyPI:
pip install seedrcc
Or, install the latest version directly from GitHub:
pip install git+https://github.com/hemantapkh/seedrcc.git
from seedrcc import Seedr
# 1. Get the device and user codes from the API.
codes = Seedr.get_device_code()
# 2. Open the verification URL (https://seedr.cc/devices) and enter the user code.
print(f"Please go to {codes.verification_url} and enter the code: {codes.user_code}")
input("Press Enter after authorizing the device.")
# 3. Create the client using the device_code.
with Seedr.from_device_code(codes.device_code) as client:
settings = client.get_settings()
print(f"Success! Hello, {settings.account.username}")
import asyncio
from seedrcc import AsyncSeedr
async def main():
# Authenticate using your username and password.
async with AsyncSeedr.from_password("your_email@example.com", "your_password") as client:
# Get your account settings.
settings = await client.get_settings()
print(f"Hello, {settings.account.username}!")
if __name__ == "__main__":
asyncio.run(main())
While Seedr.cc offers a premium API, it is not available to free users. This library was built by studying the network requests from the official Kodi and Chrome extensions.
Further analysis of the main Seedr website's network traffic revealed a very similar API pattern, which made it possible to implement the full feature set. Because the library uses the same API as the official tools, it works reliably for all users.
For a complete guide to every available method, data model, and advanced features like saving sessions, please see the Full Documentation.
Contributions are welcome! If you'd like to help, please feel free to fork the repository, create a feature branch, and open a pull request.
This project is distributed under the MIT License. See LICENSE
for more information.
Author/Maintainer: Hemanta Pokharel (GitHub)