Skip to main content

Bundesnetzagentur: Ladesäulenregister

Project description

ladestationen

API des Ladesäulenregisters der Bundesnetzagentur

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: 1.0.0
  • Package version: 1.0.5
  • Build package: org.openapitools.codegen.languages.PythonClientCodegen

Requirements.

Python >=3.6

Installation & Usage

pip install

If the python package is hosted on a repository, you can install directly using:

pip install git+https://github.com/bundesAPI/ladestationen-api.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/bundesAPI/ladestationen-api.git)

Then import the package:

from deutschland import ladestationen

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

from deutschland import ladestationen

Getting Started

Please follow the installation procedure and then run the following:

import time
from deutschland import ladestationen
from pprint import pprint
from deutschland.ladestationen.api import default_api
from deutschland.ladestationen.model.station_overview import StationOverview
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = ladestationen.Configuration(
    host = "http://localhost"
)



# Enter a context with an instance of the API client
with ladestationen.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = default_api.DefaultApi(api_client)
    geometry = "geometry_example" # str | Geometry filter. URL-enkodiertes JSON Objekt vom Typ `Geometry`
out_fields = "*" # str | Auswahl der Felder, die ausgegeben werden sollen, durch Komma getrennt (default to "*")
geometry_type = "esriGeometryEnvelope" # str | Art der Geometry (optional) (default to "esriGeometryEnvelope")
f = "json" # str | Ausgabeformat der Daten. Default ist 'html'. (optional)
object_ids = "42,123,666" # str | Komma-separierte Liste von IDs (integer), filtert nach den einzelnen Objekten (optional)
order_by_fields = "orderByFields_example" # str |  (optional)
return_geometry = True # bool |  (optional)
spatial_rel = "esriSpatialRelIntersects" # str | Spatial Relationships (optional)
in_sr = 1 # int | Input Spatial Reference (optional)
out_sr = 1 # int | Output Spatial Reference (optional)
max_record_count_factor = 1 # int |  (optional)
result_type = "none" # str |  (optional)
quantization_parameters = "quantizationParameters_example" # str | URL-enkodiertes JSON Objekt vom Typ `QuantizationParameter` (optional)
where = "where_example" # str | SQL \"where\" Filter (optional)
having = "having_example" # str |  (optional)
time = 1 # int |  (optional)
distance = "0.0" # str |  (optional)
units = "esriSRUnit_Meter" # str |  (optional)
geometry_precision = "geometryPrecision_example" # str |  (optional)
feature_encoding = "esriDefault" # str |  (optional)
group_by_fields_for_statistics = "groupByFieldsForStatistics_example" # str |  (optional)
cache_hint = True # bool |  (optional)
return_extent_only = True # bool |  (optional)
return_z = True # bool |  (optional)
return_ids_only = True # bool |  (optional)
return_centroid = True # bool |  (optional)
return_exceeded_limit_features = True # bool |  (optional)
datum_transformation = "datumTransformation_example" # str |  (optional)
result_offset = "resultOffset_example" # str |  (optional)
apply_vcs_projection = True # bool |  (optional)
out_statistics = "outStatistics_example" # str |  (optional)
return_distinct_values = True # bool |  (optional)
multipatch_option = "none" # str |  (optional)
return_m = True # bool |  (optional)
max_allowable_offset = 1 # int |  (optional)
return_count_only = True # bool |  (optional)
return_unique_ids_only = True # bool |  (optional)
return_query_geometry = True # bool |  (optional)
result_record_count = 1 # int |  (optional)
sql_format = "none" # str |  (optional)
token = "token_example" # str |  (optional)
return_geodetic = True # bool |  (optional)

    try:
        # Query für alle Ladesäulen
        api_response = api_instance.query_get(geometry, out_fields, geometry_type=geometry_type, f=f, object_ids=object_ids, order_by_fields=order_by_fields, return_geometry=return_geometry, spatial_rel=spatial_rel, in_sr=in_sr, out_sr=out_sr, max_record_count_factor=max_record_count_factor, result_type=result_type, quantization_parameters=quantization_parameters, where=where, having=having, time=time, distance=distance, units=units, geometry_precision=geometry_precision, feature_encoding=feature_encoding, group_by_fields_for_statistics=group_by_fields_for_statistics, cache_hint=cache_hint, return_extent_only=return_extent_only, return_z=return_z, return_ids_only=return_ids_only, return_centroid=return_centroid, return_exceeded_limit_features=return_exceeded_limit_features, datum_transformation=datum_transformation, result_offset=result_offset, apply_vcs_projection=apply_vcs_projection, out_statistics=out_statistics, return_distinct_values=return_distinct_values, multipatch_option=multipatch_option, return_m=return_m, max_allowable_offset=max_allowable_offset, return_count_only=return_count_only, return_unique_ids_only=return_unique_ids_only, return_query_geometry=return_query_geometry, result_record_count=result_record_count, sql_format=sql_format, token=token, return_geodetic=return_geodetic)
        pprint(api_response)
    except ladestationen.ApiException as e:
        print("Exception when calling DefaultApi->query_get: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
DefaultApi query_get GET /query Query für alle Ladesäulen

Documentation For Models

Documentation For Authorization

All endpoints do not require authorization.

Author

kontakt@bund.dev

Notes for Large OpenAPI documents

If the OpenAPI document is large, imports in ladestationen.apis and ladestationen.models may fail with a RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:

Solution 1: Use specific imports for apis and models like:

  • from deutschland.ladestationen.api.default_api import DefaultApi
  • from deutschland.ladestationen.model.pet import Pet

Solution 2: Before importing the package, adjust the maximum recursion limit as shown below:

import sys
sys.setrecursionlimit(1500)
from deutschland import ladestationen
from deutschland.ladestationen.apis import *
from deutschland.ladestationen.models import *

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

de-ladestationen-1.0.5.tar.gz (46.8 kB view details)

Uploaded Source

Built Distribution

de_ladestationen-1.0.5-py3-none-any.whl (68.1 kB view details)

Uploaded Python 3

File details

Details for the file de-ladestationen-1.0.5.tar.gz.

File metadata

  • Download URL: de-ladestationen-1.0.5.tar.gz
  • Upload date:
  • Size: 46.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.8

File hashes

Hashes for de-ladestationen-1.0.5.tar.gz
Algorithm Hash digest
SHA256 24ba8446e61ef8c9fb9a62b36d98bf24df41f0703381e165aa3a14f0a9483d11
MD5 75a9915583b2bf78fd12017396b78dfa
BLAKE2b-256 32d360c6c82722a9618adf285602e95f5a4b0c0e0f703ac50e00d3c99bcad039

See more details on using hashes here.

File details

Details for the file de_ladestationen-1.0.5-py3-none-any.whl.

File metadata

  • Download URL: de_ladestationen-1.0.5-py3-none-any.whl
  • Upload date:
  • Size: 68.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.8

File hashes

Hashes for de_ladestationen-1.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8594aeb792bf48b3a339f8c9e59d221468cc837eb4cbdf2e73de6167b9e29a23
MD5 98f5ed8d3b1b45d7e087c5fa06688daa
BLAKE2b-256 a503ff2d50cf4fd3c1599718a19fc8e9872222eaf574f0e22fbecd32e8436857

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page