├── .gitignore ├── .travis.yml ├── LICENCE ├── MANIFEST.in ├── README.rst ├── induction ├── __init__.py ├── app.py ├── encoding.py ├── protocol.py ├── request.py ├── response.py └── utils.py ├── setup.py ├── tesla.jpg ├── tests ├── __init__.py ├── templates │ └── index.html ├── test_json.py └── test_templating.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | .tox 2 | induction.egg-info 3 | dist 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/LICENCE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/README.rst -------------------------------------------------------------------------------- /induction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/induction/__init__.py -------------------------------------------------------------------------------- /induction/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/induction/app.py -------------------------------------------------------------------------------- /induction/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/induction/encoding.py -------------------------------------------------------------------------------- /induction/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/induction/protocol.py -------------------------------------------------------------------------------- /induction/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/induction/request.py -------------------------------------------------------------------------------- /induction/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/induction/response.py -------------------------------------------------------------------------------- /induction/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/induction/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/setup.py -------------------------------------------------------------------------------- /tesla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/tesla.jpg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/tests/templates/index.html -------------------------------------------------------------------------------- /tests/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/tests/test_json.py -------------------------------------------------------------------------------- /tests/test_templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/tests/test_templating.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brutasse/induction/HEAD/tox.ini --------------------------------------------------------------------------------