Skip to main content

A comprehensive Python API wrapper for seedr.cc

Project description

seedrcc logo

seedrcc

A comprehensive Python API wrapper for seedr.cc.

Stars Issues


seedrcc provides a clean Python interface for the Seedr API, with support for both synchronous and asynchronous operations.

Table of Contents

✨ Features

  • 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 and seedrcc.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.

📦 Installation

Install from PyPI:

pip install seedrcc

Or, install the latest version directly from GitHub:

pip install git+https://github.com/hemantapkh/seedrcc.git

🚀 Usage

Synchronous Example (with Device Authentication)

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}")

Asynchronous Example (with Password Authentication)

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())

🗺️ How I Found the Endpoints

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.

📚 Documentation

For a complete guide to every available method, data model, and advanced features like saving sessions, please see the Full Documentation.

🙌 Contributing

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.

📄 License

This project is distributed under the MIT License. See LICENSE for more information.


Author/Maintainer: Hemanta Pokharel (GitHub)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

seedrcc-2.0.2.tar.gz (110.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

seedrcc-2.0.2-py3-none-any.whl (23.1 kB view details)

Uploaded Python 3

File details

Details for the file seedrcc-2.0.2.tar.gz.

File metadata

  • Download URL: seedrcc-2.0.2.tar.gz
  • Upload date:
  • Size: 110.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for seedrcc-2.0.2.tar.gz
Algorithm Hash digest
SHA256 88fcfc271d64d998283243838b13afe3240b10df34389eed2bc1349af74d6ded
MD5 4e53f770502f9e54b18da390f3ab9ca7
BLAKE2b-256 bfd393467d7eecf44cabd1b6be5236a09c011d4c0a92ce94a05596d62d068bf4

See more details on using hashes here.

File details

Details for the file seedrcc-2.0.2-py3-none-any.whl.

File metadata

  • Download URL: seedrcc-2.0.2-py3-none-any.whl
  • Upload date:
  • Size: 23.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for seedrcc-2.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 07ed24b5cbb76c9b1938b85845584deb59ebbc216781d5c280afb61d0169f969
MD5 d14a6a6e7dba634080bbaf2da7447238
BLAKE2b-256 effd45000e6dd71b0a43fb172974b7766e828a8667951e5fce04f46bb0b6e42a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page