├── .gitignore ├── CHANGES.txt ├── ISY ├── IsyClass.py ├── IsyDebug.py ├── IsyDiscover.py ├── IsyEvent.py ├── IsyEventData.py ├── IsyExceptionClass.py ├── IsyNodeClass.py ├── IsyProgramClass.py ├── IsyUtilClass.py ├── IsyVarClass.py ├── __init__.py ├── _isy_printevent.py ├── _isyclimate.py ├── _isynet_resources.py ├── _isynode.py ├── _isyprog.py ├── _isyvar.py └── _isyzb.py ├── LICENSE.txt ├── MANIFEST ├── MANIFEST.in ├── Makefile ├── README.md ├── README.txt ├── bin ├── isy_audit_pgm_var.py ├── isy_audit_x10_use.py ├── isy_backup.py ├── isy_fauxmo.py ├── isy_find.py ├── isy_log.py ├── isy_manage_node.py ├── isy_nestset.py ├── isy_net_res.py ├── isy_net_wol.py ├── isy_nodes.py ├── isy_progs.py ├── isy_showevents.py ├── isy_var.py └── isy_web.py ├── docs ├── Using_IsyNode_Class.txt ├── Using_IsyProg_Class ├── Using_IsyVar_Class.txt └── Using_Isy_Class.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /ISY/IsyClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/IsyClass.py -------------------------------------------------------------------------------- /ISY/IsyDebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/IsyDebug.py -------------------------------------------------------------------------------- /ISY/IsyDiscover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/IsyDiscover.py -------------------------------------------------------------------------------- /ISY/IsyEvent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/IsyEvent.py -------------------------------------------------------------------------------- /ISY/IsyEventData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/IsyEventData.py -------------------------------------------------------------------------------- /ISY/IsyExceptionClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/IsyExceptionClass.py -------------------------------------------------------------------------------- /ISY/IsyNodeClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/IsyNodeClass.py -------------------------------------------------------------------------------- /ISY/IsyProgramClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/IsyProgramClass.py -------------------------------------------------------------------------------- /ISY/IsyUtilClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/IsyUtilClass.py -------------------------------------------------------------------------------- /ISY/IsyVarClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/IsyVarClass.py -------------------------------------------------------------------------------- /ISY/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/__init__.py -------------------------------------------------------------------------------- /ISY/_isy_printevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/_isy_printevent.py -------------------------------------------------------------------------------- /ISY/_isyclimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/_isyclimate.py -------------------------------------------------------------------------------- /ISY/_isynet_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/_isynet_resources.py -------------------------------------------------------------------------------- /ISY/_isynode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/_isynode.py -------------------------------------------------------------------------------- /ISY/_isyprog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/_isyprog.py -------------------------------------------------------------------------------- /ISY/_isyvar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/_isyvar.py -------------------------------------------------------------------------------- /ISY/_isyzb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/ISY/_isyzb.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/README.txt -------------------------------------------------------------------------------- /bin/isy_audit_pgm_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_audit_pgm_var.py -------------------------------------------------------------------------------- /bin/isy_audit_x10_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_audit_x10_use.py -------------------------------------------------------------------------------- /bin/isy_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_backup.py -------------------------------------------------------------------------------- /bin/isy_fauxmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_fauxmo.py -------------------------------------------------------------------------------- /bin/isy_find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_find.py -------------------------------------------------------------------------------- /bin/isy_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_log.py -------------------------------------------------------------------------------- /bin/isy_manage_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_manage_node.py -------------------------------------------------------------------------------- /bin/isy_nestset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_nestset.py -------------------------------------------------------------------------------- /bin/isy_net_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_net_res.py -------------------------------------------------------------------------------- /bin/isy_net_wol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_net_wol.py -------------------------------------------------------------------------------- /bin/isy_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_nodes.py -------------------------------------------------------------------------------- /bin/isy_progs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_progs.py -------------------------------------------------------------------------------- /bin/isy_showevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_showevents.py -------------------------------------------------------------------------------- /bin/isy_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_var.py -------------------------------------------------------------------------------- /bin/isy_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/bin/isy_web.py -------------------------------------------------------------------------------- /docs/Using_IsyNode_Class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/docs/Using_IsyNode_Class.txt -------------------------------------------------------------------------------- /docs/Using_IsyProg_Class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/docs/Using_IsyProg_Class -------------------------------------------------------------------------------- /docs/Using_IsyVar_Class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/docs/Using_IsyVar_Class.txt -------------------------------------------------------------------------------- /docs/Using_Isy_Class.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/docs/Using_Isy_Class.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilpete/ISYlib-python/HEAD/setup.py --------------------------------------------------------------------------------