├── .github └── workflows │ └── code-quality.yml ├── .gitignore ├── .pylintrc ├── LICENSE.md ├── README.md ├── custom_components └── dresden_transport │ ├── __init__.py │ ├── const.py │ ├── departure.py │ ├── manifest.json │ ├── mypy.ini │ └── sensor.py ├── docs └── screenshots │ ├── stop-id-api.jpg │ ├── stop-id-api.png │ ├── timetable-card.jpg │ └── timetable-card.png ├── mypy.ini └── www └── dresden-transport-card.js /.github/workflows/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/.github/workflows/code-quality.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/dresden_transport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/custom_components/dresden_transport/__init__.py -------------------------------------------------------------------------------- /custom_components/dresden_transport/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/custom_components/dresden_transport/const.py -------------------------------------------------------------------------------- /custom_components/dresden_transport/departure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/custom_components/dresden_transport/departure.py -------------------------------------------------------------------------------- /custom_components/dresden_transport/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/custom_components/dresden_transport/manifest.json -------------------------------------------------------------------------------- /custom_components/dresden_transport/mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | ignore_missing_imports = True -------------------------------------------------------------------------------- /custom_components/dresden_transport/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/custom_components/dresden_transport/sensor.py -------------------------------------------------------------------------------- /docs/screenshots/stop-id-api.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/docs/screenshots/stop-id-api.jpg -------------------------------------------------------------------------------- /docs/screenshots/stop-id-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/docs/screenshots/stop-id-api.png -------------------------------------------------------------------------------- /docs/screenshots/timetable-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/docs/screenshots/timetable-card.jpg -------------------------------------------------------------------------------- /docs/screenshots/timetable-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/docs/screenshots/timetable-card.png -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | ignore_missing_imports = True -------------------------------------------------------------------------------- /www/dresden-transport-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDenisyuk/home-assistant-transport/HEAD/www/dresden-transport-card.js --------------------------------------------------------------------------------