Skip to content

Installation

Tracker Scraper is published on PyPI, so installation is a single pip command.

Terminal window
pip install tracker-scraper

This pulls in the two runtime dependencies for you — requests and bencode.py.

Python3.9 or newer
Dependenciesrequests (>= 2.20), bencode.py (>= 4.0)
PlatformsOS-independent (Linux, macOS, Windows)

Check the library import:

Terminal window
python -c "from tracker_scraper import scrape; print('ok')"

And the command-line entry point:

Terminal window
tracker-scraper --help

You should see the CLI usage summary. The same command is also available as a module:

Terminal window
python -m tracker_scraper --help
  • Usage — call scrape() from Python or run the CLI.
  • Examples — end-to-end recipes you can copy and run.