├── .github └── workflows │ ├── deutschland_generator.yaml │ └── openapi_check.yaml ├── CNAME ├── README.md ├── generator_config.yaml ├── index.html ├── openapi.yaml └── python-client ├── .openapi-generator-ignore ├── .openapi-generator ├── FILES └── VERSION ├── README.md ├── deutschland └── ladestationen │ ├── __init__.py │ ├── api │ ├── __init__.py │ └── default_api.py │ ├── api_client.py │ ├── apis │ └── __init__.py │ ├── configuration.py │ ├── exceptions.py │ ├── model │ ├── __init__.py │ ├── geometry.py │ ├── quantization_parameter.py │ ├── station_overview.py │ ├── station_overview_attributes.py │ ├── station_overview_features.py │ ├── station_overview_fields.py │ ├── station_overview_spatial_reference.py │ ├── station_overview_transform.py │ └── station_overview_unique_id_field.py │ ├── model_utils.py │ ├── models │ └── __init__.py │ └── rest.py ├── docs ├── DefaultApi.md ├── Geometry.md ├── QuantizationParameter.md ├── StationOverview.md ├── StationOverviewAttributes.md ├── StationOverviewFeatures.md ├── StationOverviewFields.md ├── StationOverviewSpatialReference.md ├── StationOverviewTransform.md └── StationOverviewUniqueIdField.md ├── pyproject.toml ├── requirements.txt ├── sphinx-docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── source │ ├── ladestationen.api.rst │ ├── ladestationen.apis.rst │ ├── ladestationen.model.rst │ ├── ladestationen.models.rst │ ├── ladestationen.rst │ └── modules.rst ├── test-requirements.txt ├── test ├── __init__.py ├── test_default_api.py ├── test_geometry.py ├── test_quantization_parameter.py ├── test_station_overview.py ├── test_station_overview_attributes.py ├── test_station_overview_features.py ├── test_station_overview_fields.py ├── test_station_overview_spatial_reference.py ├── test_station_overview_transform.py └── test_station_overview_unique_id_field.py └── tox.ini /.github/workflows/deutschland_generator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/.github/workflows/deutschland_generator.yaml -------------------------------------------------------------------------------- /.github/workflows/openapi_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/.github/workflows/openapi_check.yaml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | ladestationen.api.bund.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ladesäulenregister (Bundesnetzagentur) 2 | -------------------------------------------------------------------------------- /generator_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/generator_config.yaml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/index.html -------------------------------------------------------------------------------- /openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/openapi.yaml -------------------------------------------------------------------------------- /python-client/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/.openapi-generator-ignore -------------------------------------------------------------------------------- /python-client/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/.openapi-generator/FILES -------------------------------------------------------------------------------- /python-client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.0-SNAPSHOT -------------------------------------------------------------------------------- /python-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/README.md -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/api/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/api/default_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/api/default_api.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/api_client.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/apis/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/configuration.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/exceptions.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model/geometry.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model/quantization_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model/quantization_parameter.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model/station_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model/station_overview.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model/station_overview_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model/station_overview_attributes.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model/station_overview_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model/station_overview_features.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model/station_overview_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model/station_overview_fields.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model/station_overview_spatial_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model/station_overview_spatial_reference.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model/station_overview_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model/station_overview_transform.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model/station_overview_unique_id_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model/station_overview_unique_id_field.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/model_utils.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/models/__init__.py -------------------------------------------------------------------------------- /python-client/deutschland/ladestationen/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/deutschland/ladestationen/rest.py -------------------------------------------------------------------------------- /python-client/docs/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/docs/DefaultApi.md -------------------------------------------------------------------------------- /python-client/docs/Geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/docs/Geometry.md -------------------------------------------------------------------------------- /python-client/docs/QuantizationParameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/docs/QuantizationParameter.md -------------------------------------------------------------------------------- /python-client/docs/StationOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/docs/StationOverview.md -------------------------------------------------------------------------------- /python-client/docs/StationOverviewAttributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/docs/StationOverviewAttributes.md -------------------------------------------------------------------------------- /python-client/docs/StationOverviewFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/docs/StationOverviewFeatures.md -------------------------------------------------------------------------------- /python-client/docs/StationOverviewFields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/docs/StationOverviewFields.md -------------------------------------------------------------------------------- /python-client/docs/StationOverviewSpatialReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/docs/StationOverviewSpatialReference.md -------------------------------------------------------------------------------- /python-client/docs/StationOverviewTransform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/docs/StationOverviewTransform.md -------------------------------------------------------------------------------- /python-client/docs/StationOverviewUniqueIdField.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/docs/StationOverviewUniqueIdField.md -------------------------------------------------------------------------------- /python-client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/pyproject.toml -------------------------------------------------------------------------------- /python-client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/requirements.txt -------------------------------------------------------------------------------- /python-client/sphinx-docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/sphinx-docs/Makefile -------------------------------------------------------------------------------- /python-client/sphinx-docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/sphinx-docs/conf.py -------------------------------------------------------------------------------- /python-client/sphinx-docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/sphinx-docs/index.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/sphinx-docs/make.bat -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/ladestationen.api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/sphinx-docs/source/ladestationen.api.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/ladestationen.apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/sphinx-docs/source/ladestationen.apis.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/ladestationen.model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/sphinx-docs/source/ladestationen.model.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/ladestationen.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/sphinx-docs/source/ladestationen.models.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/ladestationen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/sphinx-docs/source/ladestationen.rst -------------------------------------------------------------------------------- /python-client/sphinx-docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-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_default_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/test/test_default_api.py -------------------------------------------------------------------------------- /python-client/test/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/test/test_geometry.py -------------------------------------------------------------------------------- /python-client/test/test_quantization_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/test/test_quantization_parameter.py -------------------------------------------------------------------------------- /python-client/test/test_station_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/test/test_station_overview.py -------------------------------------------------------------------------------- /python-client/test/test_station_overview_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/test/test_station_overview_attributes.py -------------------------------------------------------------------------------- /python-client/test/test_station_overview_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/test/test_station_overview_features.py -------------------------------------------------------------------------------- /python-client/test/test_station_overview_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/test/test_station_overview_fields.py -------------------------------------------------------------------------------- /python-client/test/test_station_overview_spatial_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/test/test_station_overview_spatial_reference.py -------------------------------------------------------------------------------- /python-client/test/test_station_overview_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/test/test_station_overview_transform.py -------------------------------------------------------------------------------- /python-client/test/test_station_overview_unique_id_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/test/test_station_overview_unique_id_field.py -------------------------------------------------------------------------------- /python-client/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bundesAPI/ladestationen-api/HEAD/python-client/tox.ini --------------------------------------------------------------------------------