├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── next_holiday │ ├── __init__.py │ ├── manifest.json │ └── sensor.py ├── hacs.json └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partofthething/next-holiday-sensor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partofthething/next-holiday-sensor/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/next_holiday/__init__.py: -------------------------------------------------------------------------------- 1 | """Next holiday sensor.""" 2 | -------------------------------------------------------------------------------- /custom_components/next_holiday/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partofthething/next-holiday-sensor/HEAD/custom_components/next_holiday/manifest.json -------------------------------------------------------------------------------- /custom_components/next_holiday/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partofthething/next-holiday-sensor/HEAD/custom_components/next_holiday/sensor.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partofthething/next-holiday-sensor/HEAD/hacs.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partofthething/next-holiday-sensor/HEAD/screenshot.png --------------------------------------------------------------------------------