├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── auto_stale.yaml │ ├── release.yaml │ └── validate.yaml ├── .gitignore ├── LICENSE ├── README.md ├── custom_components └── gtfs2 │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── coordinator.py │ ├── gtfs_helper.py │ ├── gtfs_rt_helper.py │ ├── icons.json │ ├── manifest.json │ ├── requests_testadapter.py │ ├── sensor.py │ ├── services.yaml │ ├── strings.json │ ├── translations │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ └── pt.json │ └── zip_file.py ├── example.md └── hacs.json /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/auto_stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/.github/workflows/auto_stale.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/gtfs2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/__init__.py -------------------------------------------------------------------------------- /custom_components/gtfs2/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/config_flow.py -------------------------------------------------------------------------------- /custom_components/gtfs2/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/const.py -------------------------------------------------------------------------------- /custom_components/gtfs2/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/coordinator.py -------------------------------------------------------------------------------- /custom_components/gtfs2/gtfs_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/gtfs_helper.py -------------------------------------------------------------------------------- /custom_components/gtfs2/gtfs_rt_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/gtfs_rt_helper.py -------------------------------------------------------------------------------- /custom_components/gtfs2/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/icons.json -------------------------------------------------------------------------------- /custom_components/gtfs2/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/manifest.json -------------------------------------------------------------------------------- /custom_components/gtfs2/requests_testadapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/requests_testadapter.py -------------------------------------------------------------------------------- /custom_components/gtfs2/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/sensor.py -------------------------------------------------------------------------------- /custom_components/gtfs2/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/services.yaml -------------------------------------------------------------------------------- /custom_components/gtfs2/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/strings.json -------------------------------------------------------------------------------- /custom_components/gtfs2/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/translations/de.json -------------------------------------------------------------------------------- /custom_components/gtfs2/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/translations/en.json -------------------------------------------------------------------------------- /custom_components/gtfs2/translations/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/translations/es.json -------------------------------------------------------------------------------- /custom_components/gtfs2/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/translations/fr.json -------------------------------------------------------------------------------- /custom_components/gtfs2/translations/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/translations/pt.json -------------------------------------------------------------------------------- /custom_components/gtfs2/zip_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/custom_components/gtfs2/zip_file.py -------------------------------------------------------------------------------- /example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/example.md -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vingerha/gtfs2/HEAD/hacs.json --------------------------------------------------------------------------------