├── .gitignore ├── README.md ├── requirements.txt └── seedsmash.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.torrent 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makuga01/SeedSmash/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makuga01/SeedSmash/HEAD/requirements.txt -------------------------------------------------------------------------------- /seedsmash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makuga01/SeedSmash/HEAD/seedsmash.py --------------------------------------------------------------------------------