# bundestag-tagesordnung
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 1.0.0
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
## Requirements.
Python >= 3.6
## Installation & Usage
### pip install
```sh
pip install deutschland[bundestag_tagesordnung]
```
### poetry install
```sh
poetry add deutschland -E bundestag_tagesordnung
```
### Setuptools
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)
## Usage
Import the package:
```python
from deutschland import bundestag_tagesordnung
```
## Getting Started
Please follow the [installation procedure](#installation--usage) and then run the following:
```python
import time
from deutschland import bundestag_tagesordnung
from pprint import pprint
from deutschland.bundestag_tagesordnung.api import default_api
# Defining the host is optional and defaults to https://api.hutt.io
# See configuration.py for a list of all supported configuration parameters.
configuration = bundestag_tagesordnung.Configuration(
host = "https://api.hutt.io"
)
# Enter a context with an instance of the API client
with bundestag_tagesordnung.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = default_api.DefaultApi(api_client)
year = 1 # int | Das Jahr, für das Tagesordnungen abgerufen werden sollen (optional) (optional)
week = 1 # int | Die Kalenderwoche, für die Tagesordnungen abgerufen werden sollen (optional; kann mit Jahr kombiniert werden) (optional)
try:
# Tagesordnungen im CSV-Format abrufen
api_response = api_instance.bt_to_csv_get(year=year, week=week)
pprint(api_response)
except bundestag_tagesordnung.ApiException as e:
print("Exception when calling DefaultApi->bt_to_csv_get: %s\n" % e)
```
## Documentation for API Endpoints
All URIs are relative to *https://api.hutt.io*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*DefaultApi* | [**bt_to_csv_get**](docs/DefaultApi.md#bt_to_csv_get) | **GET** /bt-to/csv | Tagesordnungen im CSV-Format abrufen
*DefaultApi* | [**bt_to_ical_get**](docs/DefaultApi.md#bt_to_ical_get) | **GET** /bt-to/ical | Tagesordnungen im iCal-Format abrufen
*DefaultApi* | [**bt_to_json_get**](docs/DefaultApi.md#bt_to_json_get) | **GET** /bt-to/json | Tagesordnungen im JSON-Format abrufen
*DefaultApi* | [**bt_to_xml_get**](docs/DefaultApi.md#bt_to_xml_get) | **GET** /bt-to/xml | Tagesordnungen im XML-Format abrufen
## 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 bundestag_tagesordnung.apis and bundestag_tagesordnung.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.bundestag_tagesordnung.api.default_api import DefaultApi`
- `from deutschland.bundestag_tagesordnung.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 bundestag_tagesordnung
from deutschland.bundestag_tagesordnung.apis import *
from deutschland.bundestag_tagesordnung.models import *
```
Raw data
{
"_id": null,
"home_page": "https://github.com/bundesAPI/bundestag-tagesordnung-api",
"name": "de-bundestag-tagesordnung",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": "OpenAPI, OpenAPI-Generator, bundestag-tagesordnung, App, API",
"author": "BundesAPI",
"author_email": "kontakt@bund.dev",
"download_url": "https://files.pythonhosted.org/packages/3a/e9/c89c152789e23181258d7a529241a1f35d53b3a2503a0eed100f9dca1bf9/de_bundestag_tagesordnung-1.0.0.tar.gz",
"platform": null,
"description": "# bundestag-tagesordnung\nNo description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 1.0.0\n- Package version: 1.0.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\n\n## Requirements.\n\nPython >= 3.6\n\n## Installation & Usage\n### pip install\n\n```sh\npip install deutschland[bundestag_tagesordnung]\n```\n\n### poetry install\n\n```sh\npoetry add deutschland -E bundestag_tagesordnung\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\n## Usage\n\nImport the package:\n```python\nfrom deutschland import bundestag_tagesordnung\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport time\nfrom deutschland import bundestag_tagesordnung\nfrom pprint import pprint\nfrom deutschland.bundestag_tagesordnung.api import default_api\n# Defining the host is optional and defaults to https://api.hutt.io\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = bundestag_tagesordnung.Configuration(\n host = \"https://api.hutt.io\"\n)\n\n\n\n# Enter a context with an instance of the API client\nwith bundestag_tagesordnung.ApiClient(configuration) as api_client:\n # Create an instance of the API class\n api_instance = default_api.DefaultApi(api_client)\n year = 1 # int | Das Jahr, f\u00fcr das Tagesordnungen abgerufen werden sollen (optional) (optional)\n week = 1 # int | Die Kalenderwoche, f\u00fcr die Tagesordnungen abgerufen werden sollen (optional; kann mit Jahr kombiniert werden) (optional)\n\n try:\n # Tagesordnungen im CSV-Format abrufen\n api_response = api_instance.bt_to_csv_get(year=year, week=week)\n pprint(api_response)\n except bundestag_tagesordnung.ApiException as e:\n print(\"Exception when calling DefaultApi->bt_to_csv_get: %s\\n\" % e)\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.hutt.io*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*DefaultApi* | [**bt_to_csv_get**](docs/DefaultApi.md#bt_to_csv_get) | **GET** /bt-to/csv | Tagesordnungen im CSV-Format abrufen\n*DefaultApi* | [**bt_to_ical_get**](docs/DefaultApi.md#bt_to_ical_get) | **GET** /bt-to/ical | Tagesordnungen im iCal-Format abrufen\n*DefaultApi* | [**bt_to_json_get**](docs/DefaultApi.md#bt_to_json_get) | **GET** /bt-to/json | Tagesordnungen im JSON-Format abrufen\n*DefaultApi* | [**bt_to_xml_get**](docs/DefaultApi.md#bt_to_xml_get) | **GET** /bt-to/xml | Tagesordnungen im XML-Format abrufen\n\n\n## Documentation For Models\n\n\n\n## Documentation For Authorization\n\n All endpoints do not require authorization.\n\n## Author\n\nkontakt@bund.dev\n\n\n## Notes for Large OpenAPI documents\nIf the OpenAPI document is large, imports in bundestag_tagesordnung.apis and bundestag_tagesordnung.models may fail with a\nRecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:\n\nSolution 1:\nUse specific imports for apis and models like:\n- `from deutschland.bundestag_tagesordnung.api.default_api import DefaultApi`\n- `from deutschland.bundestag_tagesordnung.model.pet import Pet`\n\nSolution 2:\nBefore importing the package, adjust the maximum recursion limit as shown below:\n```\nimport sys\nsys.setrecursionlimit(1500)\nfrom deutschland import bundestag_tagesordnung\nfrom deutschland.bundestag_tagesordnung.apis import *\nfrom deutschland.bundestag_tagesordnung.models import *\n```\n\n\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Tagesordnungen API",
"version": "1.0.0",
"project_urls": {
"Bug Tracker": "https://github.com/bundesAPI/bundestag-tagesordnung-api/issues",
"Homepage": "https://github.com/bundesAPI/bundestag-tagesordnung-api"
},
"split_keywords": [
"openapi",
" openapi-generator",
" bundestag-tagesordnung",
" app",
" api"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "597d925dd2ac94584fe779c9427bf8d6708c22c3edb05ec3626e18afc6ba26e0",
"md5": "6b24a60c590dce1669bad3b316077a11",
"sha256": "eeb1c6c8d6388c6b5e94a54f48687e31ca45fdc58b59f915c02b7ccee525c0b9"
},
"downloads": -1,
"filename": "de_bundestag_tagesordnung-1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "6b24a60c590dce1669bad3b316077a11",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 41573,
"upload_time": "2024-07-23T03:53:16",
"upload_time_iso_8601": "2024-07-23T03:53:16.737659Z",
"url": "https://files.pythonhosted.org/packages/59/7d/925dd2ac94584fe779c9427bf8d6708c22c3edb05ec3626e18afc6ba26e0/de_bundestag_tagesordnung-1.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ae9c89c152789e23181258d7a529241a1f35d53b3a2503a0eed100f9dca1bf9",
"md5": "3d3187d614947c02f3eae48993d1c2af",
"sha256": "83bfa9a4f38c0d085c27869ddb04854b5f90c5652991302ce32f3c879c114169"
},
"downloads": -1,
"filename": "de_bundestag_tagesordnung-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "3d3187d614947c02f3eae48993d1c2af",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 37758,
"upload_time": "2024-07-23T03:53:18",
"upload_time_iso_8601": "2024-07-23T03:53:18.333346Z",
"url": "https://files.pythonhosted.org/packages/3a/e9/c89c152789e23181258d7a529241a1f35d53b3a2503a0eed100f9dca1bf9/de_bundestag_tagesordnung-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-07-23 03:53:18",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "bundesAPI",
"github_project": "bundestag-tagesordnung-api",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "de-bundestag-tagesordnung"
}