├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── setup.cfg ├── setup.py └── torrent.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/torrent-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/torrent-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/torrent-cli/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | beautifulsoup4 3 | lxml 4 | future 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/torrent-cli/HEAD/setup.py -------------------------------------------------------------------------------- /torrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/torrent-cli/HEAD/torrent.py --------------------------------------------------------------------------------