├── .gitignore ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── changelog.rst ├── cli.rst ├── conf.py ├── dottorrent-gui.rst ├── index.rst ├── install.rst ├── library.rst └── make.bat ├── dtcli ├── __init__.py ├── cli.py └── version.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/docs/cli.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/dottorrent-gui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/docs/dottorrent-gui.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/library.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/docs/library.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/docs/make.bat -------------------------------------------------------------------------------- /dtcli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dtcli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/dtcli/cli.py -------------------------------------------------------------------------------- /dtcli/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.10.3' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | dottorrent>=1.9.2 2 | humanfriendly>=2.1,<3.0 3 | tqdm>=4.8.4,<5.0.0 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent-cli/HEAD/setup.py --------------------------------------------------------------------------------