├── .devcontainer ├── Dockerfile ├── devcontainer.json ├── frigate_config │ └── config.yml ├── frigate_media │ └── .gitignore ├── homeassistant_config │ ├── configuration.yaml │ ├── specific_configuration.yaml │ └── www │ │ └── .gitignore ├── homeassistant_preconfig │ └── .storage │ │ ├── auth │ │ ├── auth_provider.homeassistant │ │ ├── core.config_entries │ │ ├── frontend.user_data_1141ee80e0a647c1a4687d0b7631a019 │ │ ├── lovelace │ │ ├── lovelace.frigate │ │ ├── lovelace_dashboards │ │ ├── lovelace_resources │ │ └── onboarding ├── mosquitto_config │ └── mosquitto.conf └── scripts │ ├── devcontainer_initialize.sh │ ├── devcontainer_post_create.sh │ ├── homeassistant_follow_logs.sh │ └── homeassistant_preconfig.sh ├── .env.example ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── issue.md ├── dependabot.yml ├── labels.yml ├── release-drafter.yml └── workflows │ ├── build.yaml │ ├── labeler.yml │ ├── release-drafter.yml │ └── stale.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── custom_components ├── __init__.py └── frigate │ ├── __init__.py │ ├── api.py │ ├── binary_sensor.py │ ├── camera.py │ ├── config_flow.py │ ├── const.py │ ├── diagnostics.py │ ├── icons.py │ ├── image.py │ ├── manifest.json │ ├── media_source.py │ ├── number.py │ ├── sensor.py │ ├── services.yaml │ ├── switch.py │ ├── translations │ ├── ca.json │ ├── de.json │ ├── en.json │ ├── fr.json │ ├── pt-BR.json │ ├── pt.json │ ├── ru.json │ └── zh-Hans.json │ ├── update.py │ ├── views.py │ ├── ws_api.py │ └── ws_event_proxy.py ├── docker-compose.yml ├── hacs.json ├── images ├── frigate.png └── lovelace-card.png ├── info.md ├── project.inlang.json ├── pyproject.toml ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg └── tests ├── __init__.py ├── conftest.py ├── fixtures └── events_front_door.json ├── test_api.py ├── test_binary_sensor.py ├── test_camera.py ├── test_config_flow.py ├── test_diagnostics.py ├── test_icons.py ├── test_image.py ├── test_init.py ├── test_integration_services.py ├── test_media_source.py ├── test_number.py ├── test_sensor.py ├── test_switch.py ├── test_update.py ├── test_views.py └── test_ws_api.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/frigate_config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/frigate_config/config.yml -------------------------------------------------------------------------------- /.devcontainer/frigate_media/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !/.gitignore 4 | -------------------------------------------------------------------------------- /.devcontainer/homeassistant_config/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_config/configuration.yaml -------------------------------------------------------------------------------- /.devcontainer/homeassistant_config/specific_configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_config/specific_configuration.yaml -------------------------------------------------------------------------------- /.devcontainer/homeassistant_config/www/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !/.gitignore 4 | -------------------------------------------------------------------------------- /.devcontainer/homeassistant_preconfig/.storage/auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_preconfig/.storage/auth -------------------------------------------------------------------------------- /.devcontainer/homeassistant_preconfig/.storage/auth_provider.homeassistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_preconfig/.storage/auth_provider.homeassistant -------------------------------------------------------------------------------- /.devcontainer/homeassistant_preconfig/.storage/core.config_entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_preconfig/.storage/core.config_entries -------------------------------------------------------------------------------- /.devcontainer/homeassistant_preconfig/.storage/frontend.user_data_1141ee80e0a647c1a4687d0b7631a019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_preconfig/.storage/frontend.user_data_1141ee80e0a647c1a4687d0b7631a019 -------------------------------------------------------------------------------- /.devcontainer/homeassistant_preconfig/.storage/lovelace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_preconfig/.storage/lovelace -------------------------------------------------------------------------------- /.devcontainer/homeassistant_preconfig/.storage/lovelace.frigate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_preconfig/.storage/lovelace.frigate -------------------------------------------------------------------------------- /.devcontainer/homeassistant_preconfig/.storage/lovelace_dashboards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_preconfig/.storage/lovelace_dashboards -------------------------------------------------------------------------------- /.devcontainer/homeassistant_preconfig/.storage/lovelace_resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_preconfig/.storage/lovelace_resources -------------------------------------------------------------------------------- /.devcontainer/homeassistant_preconfig/.storage/onboarding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/homeassistant_preconfig/.storage/onboarding -------------------------------------------------------------------------------- /.devcontainer/mosquitto_config/mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/mosquitto_config/mosquitto.conf -------------------------------------------------------------------------------- /.devcontainer/scripts/devcontainer_initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/scripts/devcontainer_initialize.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/devcontainer_post_create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/scripts/devcontainer_post_create.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/homeassistant_follow_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/scripts/homeassistant_follow_logs.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/homeassistant_preconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.devcontainer/scripts/homeassistant_preconfig.sh -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.github/ISSUE_TEMPLATE/issue.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/__init__.py: -------------------------------------------------------------------------------- 1 | """Custom components.""" 2 | -------------------------------------------------------------------------------- /custom_components/frigate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/__init__.py -------------------------------------------------------------------------------- /custom_components/frigate/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/api.py -------------------------------------------------------------------------------- /custom_components/frigate/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/frigate/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/camera.py -------------------------------------------------------------------------------- /custom_components/frigate/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/config_flow.py -------------------------------------------------------------------------------- /custom_components/frigate/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/const.py -------------------------------------------------------------------------------- /custom_components/frigate/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/diagnostics.py -------------------------------------------------------------------------------- /custom_components/frigate/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/icons.py -------------------------------------------------------------------------------- /custom_components/frigate/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/image.py -------------------------------------------------------------------------------- /custom_components/frigate/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/manifest.json -------------------------------------------------------------------------------- /custom_components/frigate/media_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/media_source.py -------------------------------------------------------------------------------- /custom_components/frigate/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/number.py -------------------------------------------------------------------------------- /custom_components/frigate/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/sensor.py -------------------------------------------------------------------------------- /custom_components/frigate/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/services.yaml -------------------------------------------------------------------------------- /custom_components/frigate/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/switch.py -------------------------------------------------------------------------------- /custom_components/frigate/translations/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/translations/ca.json -------------------------------------------------------------------------------- /custom_components/frigate/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/translations/de.json -------------------------------------------------------------------------------- /custom_components/frigate/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/translations/en.json -------------------------------------------------------------------------------- /custom_components/frigate/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/translations/fr.json -------------------------------------------------------------------------------- /custom_components/frigate/translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/translations/pt-BR.json -------------------------------------------------------------------------------- /custom_components/frigate/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/translations/pt.json -------------------------------------------------------------------------------- /custom_components/frigate/translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/translations/ru.json -------------------------------------------------------------------------------- /custom_components/frigate/translations/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/translations/zh-Hans.json -------------------------------------------------------------------------------- /custom_components/frigate/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/update.py -------------------------------------------------------------------------------- /custom_components/frigate/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/views.py -------------------------------------------------------------------------------- /custom_components/frigate/ws_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/ws_api.py -------------------------------------------------------------------------------- /custom_components/frigate/ws_event_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/custom_components/frigate/ws_event_proxy.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/hacs.json -------------------------------------------------------------------------------- /images/frigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/images/frigate.png -------------------------------------------------------------------------------- /images/lovelace-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/images/lovelace-card.png -------------------------------------------------------------------------------- /info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/info.md -------------------------------------------------------------------------------- /project.inlang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/project.inlang.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/fixtures/events_front_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/fixtures/events_front_door.json -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_binary_sensor.py -------------------------------------------------------------------------------- /tests/test_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_camera.py -------------------------------------------------------------------------------- /tests/test_config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_config_flow.py -------------------------------------------------------------------------------- /tests/test_diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_diagnostics.py -------------------------------------------------------------------------------- /tests/test_icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_icons.py -------------------------------------------------------------------------------- /tests/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_image.py -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tests/test_integration_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_integration_services.py -------------------------------------------------------------------------------- /tests/test_media_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_media_source.py -------------------------------------------------------------------------------- /tests/test_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_number.py -------------------------------------------------------------------------------- /tests/test_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_sensor.py -------------------------------------------------------------------------------- /tests/test_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_switch.py -------------------------------------------------------------------------------- /tests/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_update.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/test_ws_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blakeblackshear/frigate-hass-integration/HEAD/tests/test_ws_api.py --------------------------------------------------------------------------------