├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── hacs.yaml │ ├── hassfest.yml │ └── pull_request.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── custom_components ├── __init__.py └── feedparser │ ├── __init__.py │ ├── manifest.json │ └── sensor.py ├── hacs.json ├── package.yaml ├── pyproject.toml ├── resources.json ├── run-hass.sh ├── test_hass └── configuration.yaml └── tests ├── __init__.py ├── conftest.py ├── constants.py ├── data ├── CTK.json ├── CTK.xml ├── alle_meldungen.json ├── alle_meldungen.xml ├── anp_nieuws.json ├── anp_nieuws.xml ├── api_met_no_metalerts.json ├── api_met_no_metalerts.xml ├── bbc_europe.json ├── bbc_europe.xml ├── buienradar_nl.json ├── buienradar_nl.xml ├── ct24.json ├── ct24.xml ├── nu_nl.json ├── nu_nl.xml ├── nu_nl_algemeen.json ├── nu_nl_algemeen.xml ├── skolmaten_se_ede_skola.json ├── skolmaten_se_ede_skola.xml ├── stern_auto.json ├── stern_auto.xml ├── zive.json └── zive.xml ├── download.py ├── feedsource.py ├── generate_ha_config.py └── test_sensors.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/hacs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/.github/workflows/hacs.yaml -------------------------------------------------------------------------------- /.github/workflows/hassfest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/.github/workflows/hassfest.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/__init__.py: -------------------------------------------------------------------------------- 1 | """Init file for custom_components.""" 2 | -------------------------------------------------------------------------------- /custom_components/feedparser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/custom_components/feedparser/__init__.py -------------------------------------------------------------------------------- /custom_components/feedparser/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/custom_components/feedparser/manifest.json -------------------------------------------------------------------------------- /custom_components/feedparser/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/custom_components/feedparser/sensor.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/hacs.json -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/package.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/pyproject.toml -------------------------------------------------------------------------------- /resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/resources.json -------------------------------------------------------------------------------- /run-hass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/run-hass.sh -------------------------------------------------------------------------------- /test_hass/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/test_hass/configuration.yaml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for the feedparser component.""" 2 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/constants.py -------------------------------------------------------------------------------- /tests/data/CTK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/CTK.json -------------------------------------------------------------------------------- /tests/data/CTK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/CTK.xml -------------------------------------------------------------------------------- /tests/data/alle_meldungen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/alle_meldungen.json -------------------------------------------------------------------------------- /tests/data/alle_meldungen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/alle_meldungen.xml -------------------------------------------------------------------------------- /tests/data/anp_nieuws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/anp_nieuws.json -------------------------------------------------------------------------------- /tests/data/anp_nieuws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/anp_nieuws.xml -------------------------------------------------------------------------------- /tests/data/api_met_no_metalerts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/api_met_no_metalerts.json -------------------------------------------------------------------------------- /tests/data/api_met_no_metalerts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/api_met_no_metalerts.xml -------------------------------------------------------------------------------- /tests/data/bbc_europe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/bbc_europe.json -------------------------------------------------------------------------------- /tests/data/bbc_europe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/bbc_europe.xml -------------------------------------------------------------------------------- /tests/data/buienradar_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/buienradar_nl.json -------------------------------------------------------------------------------- /tests/data/buienradar_nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/buienradar_nl.xml -------------------------------------------------------------------------------- /tests/data/ct24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/ct24.json -------------------------------------------------------------------------------- /tests/data/ct24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/ct24.xml -------------------------------------------------------------------------------- /tests/data/nu_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/nu_nl.json -------------------------------------------------------------------------------- /tests/data/nu_nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/nu_nl.xml -------------------------------------------------------------------------------- /tests/data/nu_nl_algemeen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/nu_nl_algemeen.json -------------------------------------------------------------------------------- /tests/data/nu_nl_algemeen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/nu_nl_algemeen.xml -------------------------------------------------------------------------------- /tests/data/skolmaten_se_ede_skola.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/skolmaten_se_ede_skola.json -------------------------------------------------------------------------------- /tests/data/skolmaten_se_ede_skola.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/skolmaten_se_ede_skola.xml -------------------------------------------------------------------------------- /tests/data/stern_auto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/stern_auto.json -------------------------------------------------------------------------------- /tests/data/stern_auto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/stern_auto.xml -------------------------------------------------------------------------------- /tests/data/zive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/zive.json -------------------------------------------------------------------------------- /tests/data/zive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/data/zive.xml -------------------------------------------------------------------------------- /tests/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/download.py -------------------------------------------------------------------------------- /tests/feedsource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/feedsource.py -------------------------------------------------------------------------------- /tests/generate_ha_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/generate_ha_config.py -------------------------------------------------------------------------------- /tests/test_sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/custom-components/feedparser/HEAD/tests/test_sensors.py --------------------------------------------------------------------------------