Welcome to SeedrClient’s documentation!#

Content#

Installation#

pip install SeedrClient

Example Usage#

from seedr_client import SeedrHandler


seedr = SeedrHandler(email="youremail@example.com", password="your_password")
print(seedr.get_drive())
# Should return a similar result
# {'space': {'total': '5.0 GB', 'used': '1.1 GB'}, 'parent_folder_id': 123456789,
# 'torrents': [], 'folders': [{'folder_id': 123456799, 'folder_name':
# 'Ubuntu Minimal ISO 22.04 Custom', 'size': '1.1 GB'}], 'files': []}

Indices and tables#


Note

This is an automatically generated documentation and therefore certain details may not be explained with great precision. If you have issues with the documentation or understanding any of the methods, you can raise an Github issues and I will try to help you regarding those.