Ratio.py is a small command line RatioMaster.Net like in Python3. It fakes upload stats of a torrent. Current emulators available are:
- Transmission 4.0.6
- Python 3.x
- pip install -r requirements.txt
- a torrent file (use one with lots of leechers)
Using git command:
git clone https://github.com/garnajee/Ratio.py.gitOr using cURL:
curl -L https://github.com/garnajee/Ratio.py/archive/master.tar.gz -o Ratio.py.tar.gz
tar xzf Ratio.py.tar.gz
rm Ratio.py.tar.gz
mv Ratio.py-master Ratio.pyNavigate to the folder:
cd Ratio.pyThen configure your config.json file.
{
"torrent": "<Torrent file path>",
"upload": "<Upload speed (kB/s)>"
}python3 ratio.py -c config.json To run (multiple instances) in background :
nohup python3 ratio.py -c config.json &
nohup python3 ratio.py -c config.json &> nohup2.out &View logs :
tail -f nohup.outThis project is an updated fork of this project.