├── .gitignore ├── LICENSE ├── README.md ├── cam_config.py ├── requirements.txt └── tests ├── test_capabilities.py ├── test_crypto.py ├── test_enum.py ├── test_event_triggers.py ├── test_timezone.py ├── test_users.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | params.py* 3 | venv 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/README.md -------------------------------------------------------------------------------- /cam_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/cam_config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/test_capabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/tests/test_capabilities.py -------------------------------------------------------------------------------- /tests/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/tests/test_crypto.py -------------------------------------------------------------------------------- /tests/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/tests/test_enum.py -------------------------------------------------------------------------------- /tests/test_event_triggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/tests/test_event_triggers.py -------------------------------------------------------------------------------- /tests/test_timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/tests/test_timezone.py -------------------------------------------------------------------------------- /tests/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/tests/test_users.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qb60/hikvision-configure/HEAD/tests/test_utils.py --------------------------------------------------------------------------------