The Unofficial Pirate Bay Lightweight Python API
Project description
Unofficial Lightweight Python API for ThePirateBay
Installation
$ pip install tpblite
Dependencies:
- lxml
Usage
from tpblite import TPB
# Create a TPB object with a domain name
t = TPB('https://tpb.party')
# Or create a TPB object with default domain
t = TPB()
N.B Before using you should check which ThePirateBay domain works for you, as this varies from country to country.
Search
# Quick search for torrents, returns a Torrents object
torrents = t.search('public domain')
# See how many torrents were found
print('There were {0} torrents found.'.format(len(torrents)))
# Iterate through list of torrents and print info for Torrent object
for torrent in torrents:
print(torrent)
# Customize your search
from tpblite import CATEGORIES, ORDERS
torrents = t.search('public domain', page=2, order=ORDERS.NAME.DES, category=CATEGORIES.VIDEO.MOVIES)
# Get the most seeded torrent based on a filter
torrent = torrents.getBestTorrent(min_seeds=30, min_filesize='500 MiB', max_filesize='4 GiB')
# Or select a particular torrent by indexing
torrent = torrents[3]
# Get the magnet link for a torrent
print(torrent.magnetlink)
Browse
# You can browse all of the torrents from a single category
torrents = t.browse(category=CATEGORIES.VIDEO)
# Customize the page number and sort order
torrents = t.browse(category=CATEGORIES.VIDEO.MOVIES, page=1, order=ORDERS.UPLOADED.DES)
Top
from tpblite import TPB, CATEGORIES
t = TPB()
# Get the top recent torrents
torrents = t.top(CATEGORIES.GAMES.ALL)
# Customize with category and restriction to torrents from the last 48h
torrents = t.top(category=CATEGORIES.GAMES.ALL, last_48=True)
Categories and Sort Order
# To print all available categories, use the classmethod printOptions
CATEGORIES.printOptions()
# Or just a subset of categories, like VIDEO
CATEGORIES.VIDEO.printOptions()
# Similarly for the sort order
ORDERS.printOptions()
Torrents object
The search function returns a Torrents
object, which is a list-like collection of the torrents found.
You can also iterate over the Torrents
object just by calling it in a for loop (see example above).
You can see how many Torrent
objects your query has returned, by using the len()
function
Torrent object
Torrent
objects represent each torrent found in the Torrents
class, they have the following attributes
Attributes
Torrent.title
- The name of the torrent (str)Torrent.seeds
- The number of seeders (int)Torrent.leeches
- The number of leechers (int)Torrent.upload_date
- Date the torrent was uploaded (str)Torrent.uploader
- Name of user who uploaded torrent (str)Torrent.filesize
- The filesize in *iB format, eg. 5 GiB (str)Torrent.byte_size
- The filesize in bytes of the torrent (int)Torrent.magnetlink
- magnetlink of the torrent (str)Torrent.url
- URL of the torrent page (str)Torrent.is_trusted
- Whether the torrent is from a trusted source.Torrent.is_vip
- Whether the torrent is from a VIP source.Torrent.infohash
- The info hash of the torrent (str)Torrent.category
- The torrent category (str)
Example Workflow
With a commandline torrent client such as aria2, you can automate search and downloading of torrents like so:
import subprocess
from tpblite import TPB
t = TPB()
torrents = t.search('GIMP 2.10.8')
torrent = torrents.getBestTorrent()
subprocess.call(['aria2c', torrent.magnetlink])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file tpblite-0.8.0.tar.gz
.
File metadata
- Download URL: tpblite-0.8.0.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1dc7e8718050352488088e4d7d205c94cfe55499bcc4f24e931ee9114766b34 |
|
MD5 | 4b97657cb177dbff642f9c27ede821de |
|
BLAKE2b-256 | 0086b6f6f100c9bb092e4ab27ce0ee13ca52bc60d1c9ab450f1ab6d0c9bf103c |
File details
Details for the file tpblite-0.8.0-py3-none-any.whl
.
File metadata
- Download URL: tpblite-0.8.0-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ace83580dacd1770263edc0691d1765e12089bbbe825fd4163aee5a19498ec8c |
|
MD5 | 2b0d313a820c3ac8f7c270b92d9c578c |
|
BLAKE2b-256 | eeaa8d8f7fc154d46ca3f121d2fe00c95397fbfb72225b5407982dfbb087d6d4 |