├── .github └── workflows │ ├── hacs_action.yml │ └── hassfest_validation.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode └── launch.json ├── LICENSE ├── Markdown Gauge Card example.png ├── Markdown Gauge Card example2.png ├── Markdown Map Card example.png ├── README.md ├── custom_components ├── __init__.py └── carbu_com │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── manifest.json │ ├── sensor.py │ ├── services.yaml │ ├── spain_const.py │ ├── spain_gas_stations_api.py │ ├── strings.py │ ├── translations │ ├── en.json │ ├── fr.json │ └── nl.json │ └── utils.py ├── hacs.json ├── icon.png ├── logo.png ├── requirements.test.txt ├── setup.cfg └── tests ├── __init__.py ├── bandit.yaml ├── http_test.py ├── testEnum ├── test_component_session.py ├── test_init.py └── usatest.py /.github/workflows/hacs_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/.github/workflows/hacs_action.yml -------------------------------------------------------------------------------- /.github/workflows/hassfest_validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/.github/workflows/hassfest_validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/LICENSE -------------------------------------------------------------------------------- /Markdown Gauge Card example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/Markdown Gauge Card example.png -------------------------------------------------------------------------------- /Markdown Gauge Card example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/Markdown Gauge Card example2.png -------------------------------------------------------------------------------- /Markdown Map Card example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/Markdown Map Card example.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_components/carbu_com/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/__init__.py -------------------------------------------------------------------------------- /custom_components/carbu_com/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/config_flow.py -------------------------------------------------------------------------------- /custom_components/carbu_com/const.py: -------------------------------------------------------------------------------- 1 | DOMAIN = "carbu_com" 2 | -------------------------------------------------------------------------------- /custom_components/carbu_com/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/manifest.json -------------------------------------------------------------------------------- /custom_components/carbu_com/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/sensor.py -------------------------------------------------------------------------------- /custom_components/carbu_com/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/services.yaml -------------------------------------------------------------------------------- /custom_components/carbu_com/spain_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/spain_const.py -------------------------------------------------------------------------------- /custom_components/carbu_com/spain_gas_stations_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/spain_gas_stations_api.py -------------------------------------------------------------------------------- /custom_components/carbu_com/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/strings.py -------------------------------------------------------------------------------- /custom_components/carbu_com/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/translations/en.json -------------------------------------------------------------------------------- /custom_components/carbu_com/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/translations/fr.json -------------------------------------------------------------------------------- /custom_components/carbu_com/translations/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/translations/nl.json -------------------------------------------------------------------------------- /custom_components/carbu_com/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/custom_components/carbu_com/utils.py -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/hacs.json -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/icon.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/requirements.test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bandit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/tests/bandit.yaml -------------------------------------------------------------------------------- /tests/http_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/tests/http_test.py -------------------------------------------------------------------------------- /tests/testEnum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/tests/testEnum -------------------------------------------------------------------------------- /tests/test_component_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/tests/test_component_session.py -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tests/usatest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myTselection/Carbu_com/HEAD/tests/usatest.py --------------------------------------------------------------------------------