├── .github └── workflows │ ├── deutschland_generator.yaml │ ├── openapi_check.yaml │ └── schemathesis.yaml ├── .gitignore ├── CNAME ├── README.md ├── generator_config.yaml ├── index.html ├── openapi.yaml └── python-client ├── .openapi-generator-ignore ├── .openapi-generator ├── FILES └── VERSION ├── README.md ├── deutschland └── autobahn │ ├── __init__.py │ ├── api │ ├── __init__.py │ └── default_api.py │ ├── api_client.py │ ├── apis │ └── __init__.py │ ├── configuration.py │ ├── exceptions.py │ ├── model │ ├── __init__.py │ ├── closure.py │ ├── closures.py │ ├── coordinate.py │ ├── display_type.py │ ├── electric_charging_station.py │ ├── electric_charging_stations.py │ ├── extent.py │ ├── lat_long_value.py │ ├── lorry_parking_feature_icon.py │ ├── multiline_text.py │ ├── parking_lorries.py │ ├── parking_lorry.py │ ├── point.py │ ├── road_event.py │ ├── road_event_all_of.py │ ├── road_id.py │ ├── road_item.py │ ├── roads.py │ ├── roadwork.py │ ├── roadworks.py │ ├── warning.py │ ├── warnings.py │ ├── webcam.py │ ├── webcam_all_of.py │ └── webcams.py │ ├── model_utils.py │ ├── models │ └── __init__.py │ └── rest.py ├── docs ├── Closure.md ├── Closures.md ├── Coordinate.md ├── DefaultApi.md ├── DisplayType.md ├── ElectricChargingStation.md ├── ElectricChargingStations.md ├── Extent.md ├── LatLongValue.md ├── LorryParkingFeatureIcon.md ├── MultilineText.md ├── ParkingLorries.md ├── ParkingLorry.md ├── Point.md ├── RoadEvent.md ├── RoadEventAllOf.md ├── RoadId.md ├── RoadItem.md ├── Roads.md ├── Roadwork.md ├── Roadworks.md ├── Warning.md ├── Warnings.md ├── Webcam.md ├── WebcamAllOf.md └── Webcams.md ├── pyproject.toml ├── requirements.txt ├── sphinx-docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── source │ ├── autobahn.api.rst │ ├── autobahn.apis.rst │ ├── autobahn.model.rst │ ├── autobahn.models.rst │ ├── autobahn.rst │ └── modules.rst ├── test-requirements.txt ├── test ├── __init__.py ├── test_closure.py ├── test_closures.py ├── test_coordinate.py ├── test_default_api.py ├── test_display_type.py ├── test_electric_charging_station.py ├── test_electric_charging_stations.py ├── test_extent.py ├── test_lat_long_value.py ├── test_lorry_parking_feature_icon.py ├── test_multiline_text.py ├── test_parking_lorries.py ├── test_parking_lorry.py ├── test_point.py ├── test_road_event.py ├── test_road_event_all_of.py ├── test_road_id.py ├── test_road_item.py ├── test_roads.py ├── test_roadwork.py ├── test_roadworks.py ├── test_warning.py ├── test_warnings.py ├── test_webcam.py ├── test_webcam_all_of.py └── test_webcams.py └── tox.ini /.github/workflows/deutschland_generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/.github/workflows/deutschland_generator.yaml -------------------------------------------------------------------------------- /.github/workflows/openapi_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/.github/workflows/openapi_check.yaml -------------------------------------------------------------------------------- /.github/workflows/schemathesis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/.github/workflows/schemathesis.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | autobahn.api.bund.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/README.md -------------------------------------------------------------------------------- /generator_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/generator_config.yaml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/index.html -------------------------------------------------------------------------------- /openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/openapi.yaml -------------------------------------------------------------------------------- /python-client/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/.openapi-generator-ignore -------------------------------------------------------------------------------- /python-client/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/.openapi-generator/FILES -------------------------------------------------------------------------------- /python-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.1.0 -------------------------------------------------------------------------------- /python-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/README.md -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/api/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/api/default_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/api/default_api.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/api_client.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/apis/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/configuration.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/exceptions.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/closure.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/closures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/closures.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/coordinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/coordinate.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/display_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/display_type.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/electric_charging_station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/electric_charging_station.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/electric_charging_stations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/electric_charging_stations.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/extent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/extent.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/lat_long_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/lat_long_value.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/lorry_parking_feature_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/lorry_parking_feature_icon.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/multiline_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/multiline_text.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/parking_lorries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/parking_lorries.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/parking_lorry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/parking_lorry.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/point.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/road_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/road_event.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/road_event_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/road_event_all_of.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/road_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/road_id.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/road_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/road_item.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/roads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/roads.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/roadwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/roadwork.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/roadworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/roadworks.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/warning.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/warnings.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/webcam.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/webcam_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/webcam_all_of.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model/webcams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model/webcams.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/model_utils.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/models/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/autobahn/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/deutschland/autobahn/rest.py -------------------------------------------------------------------------------- /python-client/docs/Closure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Closure.md -------------------------------------------------------------------------------- /python-client/docs/Closures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Closures.md -------------------------------------------------------------------------------- /python-client/docs/Coordinate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Coordinate.md -------------------------------------------------------------------------------- /python-client/docs/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/DefaultApi.md -------------------------------------------------------------------------------- /python-client/docs/DisplayType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/DisplayType.md -------------------------------------------------------------------------------- /python-client/docs/ElectricChargingStation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/ElectricChargingStation.md -------------------------------------------------------------------------------- /python-client/docs/ElectricChargingStations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/ElectricChargingStations.md -------------------------------------------------------------------------------- /python-client/docs/Extent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Extent.md -------------------------------------------------------------------------------- /python-client/docs/LatLongValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/LatLongValue.md -------------------------------------------------------------------------------- /python-client/docs/LorryParkingFeatureIcon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/LorryParkingFeatureIcon.md -------------------------------------------------------------------------------- /python-client/docs/MultilineText.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/MultilineText.md -------------------------------------------------------------------------------- /python-client/docs/ParkingLorries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/ParkingLorries.md -------------------------------------------------------------------------------- /python-client/docs/ParkingLorry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/ParkingLorry.md -------------------------------------------------------------------------------- /python-client/docs/Point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Point.md -------------------------------------------------------------------------------- /python-client/docs/RoadEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/RoadEvent.md -------------------------------------------------------------------------------- /python-client/docs/RoadEventAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/RoadEventAllOf.md -------------------------------------------------------------------------------- /python-client/docs/RoadId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/RoadId.md -------------------------------------------------------------------------------- /python-client/docs/RoadItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/RoadItem.md -------------------------------------------------------------------------------- /python-client/docs/Roads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Roads.md -------------------------------------------------------------------------------- /python-client/docs/Roadwork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Roadwork.md -------------------------------------------------------------------------------- /python-client/docs/Roadworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Roadworks.md -------------------------------------------------------------------------------- /python-client/docs/Warning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Warning.md -------------------------------------------------------------------------------- /python-client/docs/Warnings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Warnings.md -------------------------------------------------------------------------------- /python-client/docs/Webcam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Webcam.md -------------------------------------------------------------------------------- /python-client/docs/WebcamAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/WebcamAllOf.md -------------------------------------------------------------------------------- /python-client/docs/Webcams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/docs/Webcams.md -------------------------------------------------------------------------------- /python-client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/pyproject.toml -------------------------------------------------------------------------------- /python-client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/requirements.txt -------------------------------------------------------------------------------- /python-client/sphinx-docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/sphinx-docs/Makefile -------------------------------------------------------------------------------- /python-client/sphinx-docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/sphinx-docs/conf.py -------------------------------------------------------------------------------- /python-client/sphinx-docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/sphinx-docs/index.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/sphinx-docs/make.bat -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/autobahn.api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/sphinx-docs/source/autobahn.api.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/autobahn.apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/sphinx-docs/source/autobahn.apis.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/autobahn.model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/sphinx-docs/source/autobahn.model.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/autobahn.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/sphinx-docs/source/autobahn.models.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/autobahn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/sphinx-docs/source/autobahn.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/sphinx-docs/source/modules.rst -------------------------------------------------------------------------------- /python-client/test-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest-cov>=2.8.1 2 | -------------------------------------------------------------------------------- /python-client/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-client/test/test_closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_closure.py -------------------------------------------------------------------------------- /python-client/test/test_closures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_closures.py -------------------------------------------------------------------------------- /python-client/test/test_coordinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_coordinate.py -------------------------------------------------------------------------------- /python-client/test/test_default_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_default_api.py -------------------------------------------------------------------------------- /python-client/test/test_display_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_display_type.py -------------------------------------------------------------------------------- /python-client/test/test_electric_charging_station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_electric_charging_station.py -------------------------------------------------------------------------------- /python-client/test/test_electric_charging_stations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_electric_charging_stations.py -------------------------------------------------------------------------------- /python-client/test/test_extent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_extent.py -------------------------------------------------------------------------------- /python-client/test/test_lat_long_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_lat_long_value.py -------------------------------------------------------------------------------- /python-client/test/test_lorry_parking_feature_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_lorry_parking_feature_icon.py -------------------------------------------------------------------------------- /python-client/test/test_multiline_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_multiline_text.py -------------------------------------------------------------------------------- /python-client/test/test_parking_lorries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_parking_lorries.py -------------------------------------------------------------------------------- /python-client/test/test_parking_lorry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_parking_lorry.py -------------------------------------------------------------------------------- /python-client/test/test_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_point.py -------------------------------------------------------------------------------- /python-client/test/test_road_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_road_event.py -------------------------------------------------------------------------------- /python-client/test/test_road_event_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_road_event_all_of.py -------------------------------------------------------------------------------- /python-client/test/test_road_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_road_id.py -------------------------------------------------------------------------------- /python-client/test/test_road_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_road_item.py -------------------------------------------------------------------------------- /python-client/test/test_roads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_roads.py -------------------------------------------------------------------------------- /python-client/test/test_roadwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_roadwork.py -------------------------------------------------------------------------------- /python-client/test/test_roadworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_roadworks.py -------------------------------------------------------------------------------- /python-client/test/test_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_warning.py -------------------------------------------------------------------------------- /python-client/test/test_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_warnings.py -------------------------------------------------------------------------------- /python-client/test/test_webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_webcam.py -------------------------------------------------------------------------------- /python-client/test/test_webcam_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_webcam_all_of.py -------------------------------------------------------------------------------- /python-client/test/test_webcams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/test/test_webcams.py -------------------------------------------------------------------------------- /python-client/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/autobahn-api/HEAD/python-client/tox.ini --------------------------------------------------------------------------------