├── .bandit.yml ├── .travis.yml ├── LICENSE ├── README.md └── python_wrapper ├── README.md ├── requirements.txt ├── sample.py ├── setup.py ├── susi_python ├── __init__.py ├── main.py ├── models.py └── response_parser.py └── tests └── test_simple.py /.bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/.bandit.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/README.md -------------------------------------------------------------------------------- /python_wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/python_wrapper/README.md -------------------------------------------------------------------------------- /python_wrapper/requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.13.0 2 | youtube-dl 3 | geocoder 4 | -------------------------------------------------------------------------------- /python_wrapper/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/python_wrapper/sample.py -------------------------------------------------------------------------------- /python_wrapper/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/python_wrapper/setup.py -------------------------------------------------------------------------------- /python_wrapper/susi_python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/python_wrapper/susi_python/__init__.py -------------------------------------------------------------------------------- /python_wrapper/susi_python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/python_wrapper/susi_python/main.py -------------------------------------------------------------------------------- /python_wrapper/susi_python/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/python_wrapper/susi_python/models.py -------------------------------------------------------------------------------- /python_wrapper/susi_python/response_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/python_wrapper/susi_python/response_parser.py -------------------------------------------------------------------------------- /python_wrapper/tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_api_wrapper/HEAD/python_wrapper/tests/test_simple.py --------------------------------------------------------------------------------