├── .gitignore ├── AUTHORS ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── README.rst ├── dist ├── WebAPI-0.3.1-py2.7.egg ├── WebAPI-0.3.2-py2.7.egg ├── WebAPI-0.4.0-py3.6.egg └── WebAPI-0.4.0-py3.7.egg ├── docs ├── Makefile ├── build │ └── empty └── source │ ├── _static │ └── empty │ ├── _templates │ └── empty │ ├── conf.py │ ├── index.rst │ ├── quickstart.rst │ └── rst_guide.rst ├── init_dev.sh ├── setup.py └── webapi ├── __init__.py ├── common.py ├── core.py ├── data ├── config.ui └── webapi.js ├── gtk3ui.py ├── test.py └── webui.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/README.rst -------------------------------------------------------------------------------- /dist/WebAPI-0.3.1-py2.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/dist/WebAPI-0.3.1-py2.7.egg -------------------------------------------------------------------------------- /dist/WebAPI-0.3.2-py2.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/dist/WebAPI-0.3.2-py2.7.egg -------------------------------------------------------------------------------- /dist/WebAPI-0.4.0-py3.6.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/dist/WebAPI-0.4.0-py3.6.egg -------------------------------------------------------------------------------- /dist/WebAPI-0.4.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/dist/WebAPI-0.4.0-py3.7.egg -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /docs/source/rst_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/docs/source/rst_guide.rst -------------------------------------------------------------------------------- /init_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/init_dev.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/setup.py -------------------------------------------------------------------------------- /webapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/webapi/__init__.py -------------------------------------------------------------------------------- /webapi/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/webapi/common.py -------------------------------------------------------------------------------- /webapi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/webapi/core.py -------------------------------------------------------------------------------- /webapi/data/config.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/webapi/data/config.ui -------------------------------------------------------------------------------- /webapi/data/webapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/webapi/data/webapi.js -------------------------------------------------------------------------------- /webapi/gtk3ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/webapi/gtk3ui.py -------------------------------------------------------------------------------- /webapi/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/webapi/test.py -------------------------------------------------------------------------------- /webapi/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idlesign/deluge-webapi/HEAD/webapi/webui.py --------------------------------------------------------------------------------