├── .gitignore ├── LICENSE.txt ├── README.md ├── pyecobee ├── __init__.py ├── const.py ├── errors.py └── util.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | .DS_Store 4 | lib 5 | bin 6 | pyvenv.cfg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkgilley/python-ecobee-api/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkgilley/python-ecobee-api/HEAD/README.md -------------------------------------------------------------------------------- /pyecobee/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkgilley/python-ecobee-api/HEAD/pyecobee/__init__.py -------------------------------------------------------------------------------- /pyecobee/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkgilley/python-ecobee-api/HEAD/pyecobee/const.py -------------------------------------------------------------------------------- /pyecobee/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkgilley/python-ecobee-api/HEAD/pyecobee/errors.py -------------------------------------------------------------------------------- /pyecobee/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkgilley/python-ecobee-api/HEAD/pyecobee/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2,<3 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nkgilley/python-ecobee-api/HEAD/setup.py --------------------------------------------------------------------------------