├── .gitignore ├── README.md ├── custom_components └── yandex_covid │ ├── __init__.py │ ├── manifest.json │ └── sensor.py └── hacs.json /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | custom_components/yandex_covid/__pycache__/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/YandexCOVID/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/yandex_covid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/yandex_covid/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/YandexCOVID/HEAD/custom_components/yandex_covid/manifest.json -------------------------------------------------------------------------------- /custom_components/yandex_covid/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/YandexCOVID/HEAD/custom_components/yandex_covid/sensor.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/YandexCOVID/HEAD/hacs.json --------------------------------------------------------------------------------