Python library to search torrents on popular russian torrent tracker.
Project description
Python library to search torrents on popular russian torrent tracker.
Installation
Via pip:
pip install python-nnmclub
Usage
import pynnmclub
nnmclub = pynnmclub.NNMClub()
results = nnmclub.search("Iron Man")
Return an iterable with dicts of all torrents found.
Torrent dict is:
{
'topic',
'detail_url',
'download_url',
'size', # in bytes
'seeders',
'leechers',
'added', # type: datetime.datetime
'views',
'messages',
'rating_number', # how many people rated this,
'rating', # rating. float from 0 to 5
'thanks', # how many people thanked this torrent
}
NOTE: With unathorized client you will be able to fetch only first 50 results of search.
Create an authorized client:
nnmclub = pynnmclub.NNMClub(username, password)
Or using previously created nnmclub client:
nnmclub.login(username, password)
If username or password are invalid, whis will raise an pynnmclub.InvalidCredentials error (which is child to pynnmclub.NNMClubError)
There is also a logger pynnmclub enabled that logs exceptions and warnings of parsing errors. It also includes a full HTML of errored context as a DEBUG message.
History
1.0.0 (2016-05-13)
Fixed setup.py requires option (changed to install_requires)
Version bump
0.1.0 (2016-04-11)
Initial PyPI release
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
File details
Details for the file python-nnmclub-1.0.zip
.
File metadata
- Download URL: python-nnmclub-1.0.zip
- Upload date:
- Size: 5.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40c30db82d61d23b3535a595216eb8a8af7f031b2638e0f0277c5a5f5e92b324 |
|
MD5 | 34bda7bfb7e0e0d317d272d4a8f91962 |
|
BLAKE2b-256 | a42c9fd1adde752aa6bab289e3445d9447be8ab4472f92aa2a9e023422a8122d |