├── .github └── workflows │ └── pythonpublish.yml ├── .gitignore ├── .readthedocs.yaml ├── DIRECT.md ├── LICENSE ├── Makefile ├── README.md ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── modules.rst ├── myjdapi.rst └── requirements.txt ├── myjdapi ├── __init__.py ├── const.py ├── exception.py └── myjdapi.py └── setup.py /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /DIRECT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/DIRECT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- 1 | .. 2 | == 3 | 4 | .. toctree:: 5 | :maxdepth: 4 6 | 7 | myjdapi 8 | -------------------------------------------------------------------------------- /docs/myjdapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/docs/myjdapi.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /myjdapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/myjdapi/__init__.py -------------------------------------------------------------------------------- /myjdapi/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/myjdapi/const.py -------------------------------------------------------------------------------- /myjdapi/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/myjdapi/exception.py -------------------------------------------------------------------------------- /myjdapi/myjdapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/myjdapi/myjdapi.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmarquezs/My.Jdownloader-API-Python-Library/HEAD/setup.py --------------------------------------------------------------------------------