├── .gitignore ├── .idea ├── Nefit.iml ├── cssxfire.xml ├── dictionaries │ └── patrick.xml ├── encodings.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vagrant.xml └── vcs.xml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── doc ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── nefit ├── __init__.py ├── cli.py ├── core.py ├── exceptions.py └── version.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_aes.py └── test_client.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/Nefit.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/.idea/Nefit.iml -------------------------------------------------------------------------------- /.idea/cssxfire.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/.idea/cssxfire.xml -------------------------------------------------------------------------------- /.idea/dictionaries/patrick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/.idea/dictionaries/patrick.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vagrant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/.idea/vagrant.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/doc/make.bat -------------------------------------------------------------------------------- /nefit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/nefit/__init__.py -------------------------------------------------------------------------------- /nefit/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/nefit/cli.py -------------------------------------------------------------------------------- /nefit/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/nefit/core.py -------------------------------------------------------------------------------- /nefit/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/nefit/exceptions.py -------------------------------------------------------------------------------- /nefit/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/nefit/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyaes==1.6.1 2 | sleekxmpp==1.3.3 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/tests/test_aes.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patvdleer/nefit-client-python/HEAD/tests/test_client.py --------------------------------------------------------------------------------