├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── CHANGES.rst ├── HACKING ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── bin ├── tellcore_controllers ├── tellcore_events └── tellcore_tool ├── docs ├── Makefile ├── conf.py ├── constants.rst ├── event_example.rst ├── index.rst ├── library.rst ├── make.bat ├── news.rst ├── telldus.rst └── tool_example.rst ├── run_tests ├── setup.py ├── tellcore ├── __init__.py ├── constants.py ├── library.py └── telldus.py └── tests ├── mocklib.py ├── test_library.py └── test_telldus.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | MANIFEST 4 | dist/ 5 | docs/_build/ 6 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/README.rst -------------------------------------------------------------------------------- /bin/tellcore_controllers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/bin/tellcore_controllers -------------------------------------------------------------------------------- /bin/tellcore_events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/bin/tellcore_events -------------------------------------------------------------------------------- /bin/tellcore_tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/bin/tellcore_tool -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/constants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/docs/constants.rst -------------------------------------------------------------------------------- /docs/event_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/docs/event_example.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/library.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/docs/library.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/news.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/telldus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/docs/telldus.rst -------------------------------------------------------------------------------- /docs/tool_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/docs/tool_example.rst -------------------------------------------------------------------------------- /run_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/run_tests -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/setup.py -------------------------------------------------------------------------------- /tellcore/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.3" 2 | -------------------------------------------------------------------------------- /tellcore/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/tellcore/constants.py -------------------------------------------------------------------------------- /tellcore/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/tellcore/library.py -------------------------------------------------------------------------------- /tellcore/telldus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/tellcore/telldus.py -------------------------------------------------------------------------------- /tests/mocklib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/tests/mocklib.py -------------------------------------------------------------------------------- /tests/test_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/tests/test_library.py -------------------------------------------------------------------------------- /tests/test_telldus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erijo/tellcore-py/HEAD/tests/test_telldus.py --------------------------------------------------------------------------------