├── .gitignore ├── ChangeLog.txt ├── LICENSE ├── README.md ├── qsAPI ├── __init__.py ├── __main__.py ├── _controller.py └── _interfaces.py ├── screenshots ├── qsAPI.png └── qsAPI_console.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/README.md -------------------------------------------------------------------------------- /qsAPI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/qsAPI/__init__.py -------------------------------------------------------------------------------- /qsAPI/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/qsAPI/__main__.py -------------------------------------------------------------------------------- /qsAPI/_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/qsAPI/_controller.py -------------------------------------------------------------------------------- /qsAPI/_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/qsAPI/_interfaces.py -------------------------------------------------------------------------------- /screenshots/qsAPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/screenshots/qsAPI.png -------------------------------------------------------------------------------- /screenshots/qsAPI_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/screenshots/qsAPI_console.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-sanz/qsAPI/HEAD/setup.py --------------------------------------------------------------------------------