gitextract_uoxhyuya/ ├── .coveragerc ├── .dockerignore ├── .github/ │ ├── release-drafter.yml │ └── workflows/ │ ├── publish-to-pypi.yml │ └── testing.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── Dockerfile.armhf ├── LICENSE.md ├── MANIFEST.in ├── README.rst ├── SECURITY.md ├── docker-hass-cli ├── homeassistant_cli/ │ ├── __init__.py │ ├── autocompletion.py │ ├── cli.py │ ├── config.py │ ├── const.py │ ├── exceptions.py │ ├── hassconst.py │ ├── helper.py │ ├── plugins/ │ │ ├── area.py │ │ ├── completion.py │ │ ├── config.py │ │ ├── device.py │ │ ├── discover.py │ │ ├── entity.py │ │ ├── event.py │ │ ├── ha.py │ │ ├── info.py │ │ ├── integration.py │ │ ├── map.py │ │ ├── raw.py │ │ ├── service.py │ │ ├── state.py │ │ ├── system.py │ │ └── template.py │ ├── remote.py │ └── yaml.py ├── mypy.ini ├── mypyrc ├── pylintrc ├── pyproject.toml └── tests/ ├── __init__.py ├── bandit.yaml ├── conftest.py ├── fixtures/ │ ├── basic_entities.json │ ├── basic_entities_table.txt │ ├── basic_entities_table_columns.txt │ ├── basic_entities_table_format.txt │ ├── basic_entities_table_no_header.txt │ ├── basic_entities_table_sorted.txt │ ├── default_areas.json │ ├── default_devices.json │ ├── default_entities.json │ ├── default_events.json │ └── default_services.json ├── test_area.py ├── test_completion.py ├── test_defaults.py ├── test_device.py ├── test_ha.py ├── test_helper.py ├── test_info.py ├── test_integration.py ├── test_map.py ├── test_plugins.py ├── test_raw.py ├── test_service.py ├── test_state.py └── test_template.py