├── .gitignore ├── .travis.yml ├── AlertEncoder.py ├── FAQ.md ├── Makefile ├── NOTES.md ├── README.md ├── TorrentPlugin.py ├── __init__.py ├── appveyor.yml ├── libtorrent └── __init__.py ├── plugin_info.json ├── screenshots ├── form.png ├── install.png └── play.png └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /AlertEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/AlertEncoder.py -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/FAQ.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/Makefile -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/README.md -------------------------------------------------------------------------------- /TorrentPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/TorrentPlugin.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/__init__.py -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /libtorrent/__init__.py: -------------------------------------------------------------------------------- 1 | from . import libtorrent -------------------------------------------------------------------------------- /plugin_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/plugin_info.json -------------------------------------------------------------------------------- /screenshots/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/screenshots/form.png -------------------------------------------------------------------------------- /screenshots/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/screenshots/install.png -------------------------------------------------------------------------------- /screenshots/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/screenshots/play.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rllola/zeronet-torrent-plugin/HEAD/test.py --------------------------------------------------------------------------------