Installation
Tracker Scraper is published on PyPI, so installation is a single pip command.
Install from PyPI
Section titled “Install from PyPI”pip install tracker-scraperThis pulls in the two runtime dependencies for you — requests and bencode.py.
Requirements
Section titled “Requirements”| Python | 3.9 or newer |
| Dependencies | requests (>= 2.20), bencode.py (>= 4.0) |
| Platforms | OS-independent (Linux, macOS, Windows) |
Verify the install
Section titled “Verify the install”Check the library import:
python -c "from tracker_scraper import scrape; print('ok')"And the command-line entry point:
tracker-scraper --helpYou should see the CLI usage summary. The same command is also available as a module:
python -m tracker_scraper --help