├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── changelog.rst ├── conf.py ├── index.rst ├── install.rst ├── library.rst └── make.bat ├── dottorrent ├── __init__.py ├── exceptions.py └── version.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/library.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/docs/library.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/docs/make.bat -------------------------------------------------------------------------------- /dottorrent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/dottorrent/__init__.py -------------------------------------------------------------------------------- /dottorrent/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/dottorrent/exceptions.py -------------------------------------------------------------------------------- /dottorrent/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.10.1' 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bencoder.pyx>=2.0.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kz26/dottorrent/HEAD/setup.py --------------------------------------------------------------------------------