Polizei Brandenburg Nachrichten, Hochwasser-, Verkehrs- und Waldbrandwarnungen
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.0.0
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Python >= 3.6
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/bundesAPI/deutschland.git
(you may need to run pip
with root permission: sudo pip install git+https://github.com/bundesAPI/deutschland.git
)
Then import the package:
from deutschland import polizei_brandenburg
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 polizei_brandenburg
Please follow the installation procedure and then run the following:
import time
from deutschland import polizei_brandenburg
from pprint import pprint
from deutschland.polizei_brandenburg.api import default_api
from deutschland.polizei_brandenburg.model.news import News
from deutschland.polizei_brandenburg.model.pegel import Pegel
from deutschland.polizei_brandenburg.model.reviere import Reviere
from deutschland.polizei_brandenburg.model.verkehr import Verkehr
from deutschland.polizei_brandenburg.model.waldbrand import Waldbrand
# Defining the host is optional and defaults to https://polizei.brandenburg.de/ipa_api
# See configuration.py for a list of all supported configuration parameters.
configuration = polizei_brandenburg.Configuration(
host = "https://polizei.brandenburg.de/ipa_api"
)
# Enter a context with an instance of the API client
with polizei_brandenburg.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = default_api.DefaultApi(api_client)
count = 5000 # int | Number of results (optional)
category = 8 # int | category id (optional)
district = 500 # int | district id (optional)
try:
# Nachrichten, Suchmeldungen der Polzei Brandenburg
api_response = api_instance.news_version1_get(count=count, category=category, district=district)
pprint(api_response)
except polizei_brandenburg.ApiException as e:
print("Exception when calling DefaultApi->news_version1_get: %s\n" % e)
All URIs are relative to https://polizei.brandenburg.de/ipa_api
Class | Method | HTTP request | Description |
---|---|---|---|
DefaultApi | news_version1_get | GET /news/version/1 | Nachrichten, Suchmeldungen der Polzei Brandenburg |
DefaultApi | pegel_version1_get | GET /pegel/version/1 | Pegelstände |
DefaultApi | reviere_version1_get | GET /reviere/version/1 | Liste aller Reviere der Polzei Brandenburg |
DefaultApi | vwd_version1_get | GET /vwd/version/1 | Verkehrswarnungen der Polzei Brandenburg |
DefaultApi | waldbrand_version1_get | GET /waldbrand/version/1 | Waldbrandwarnungen Brandenburg |
All endpoints do not require authorization.
If the OpenAPI document is large, imports in polizei_brandenburg.apis and polizei_brandenburg.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.polizei_brandenburg.api.default_api import DefaultApi
from deutschland.polizei_brandenburg.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 polizei_brandenburg
from deutschland.polizei_brandenburg.apis import *
from deutschland.polizei_brandenburg.models import *