Skip to main content

Python wrapper for the official Bundestag-API

Project description

Bundestag-API

A wrapper for the official Bundestag (German Federal Parliament) API in Python.

The official information on the API can be found here: Bundestag.de

Installation

Pip install (recommended)

$ pip3 install bundestag_api

Install from source

$ git clone https://github.com/jschibberges/Bundestag-API.git
$ cd Bundestag-API
$ pip install -r requirements.txt

Setup

The API requires a key to authenticate requests. Personal key can be requested from the Bundestag administration. However a general API key has been published that is valid until May 31st 2023. This key is automatically used until that date when no other key is supplied by the user.

Usage

To save your API key create a connection-object, that you can then pass to the search functions. It will save you time, should you have to change API keys at a later date. If you don't supply an API key, the official API key will be used until 31st of May 2023.

import bundestag_api
bta = bundestag_api.btaConnection() #if you want to use your own API key, supply it via "apikey="XXX")
data = bta.query(resource="vorgang")
for d in data:
    print(d["drucksachetyp"]+": "+d["titel"])

The query-function serves as a general search function that can be used to query all resources of the API. However, you will also have to specify all relevant parameters for your search. Data is returned as a dictionary (which can easily be saved as json). Minimally the resource type needs to specified.

For each resource type the api offers a search function and a get function are implemented. Get functions retrieve data for specific entity ids while search function offer all parameters that are relevant to the resource type. Example for documents (Drucksachen):

bta.search_document(datestart="2022-11-01",dateend="2022-11-01",institution="BT")
bta.get_document(btid=264030)

The Bundestag API serves 8 different resources though 2 are doubled with the only difference being whether the document text is returned via the API.

Activities ("Aktivität")

Get one or more activities by their ID

bta.get_activity(btid)

Search for documents by specifying parameters for start and end date or institution. Important: The standard number of documents returned are 100. If more are desired, the "num" parameter must be set.

bta.search_activity()

Documents / Full-Text ("Drucksache")

Get one or more documents by their ID

bta.get_document(btid)

Search for documents by specifying parameters for start and end date or institution. Important: The standard number of documents returned are 100. If more are desired, the "num" parameter must be set.

bta.search_document()

The API differentiates between documents and documents incuding full-text of the document. The functions always query the full-text resource.

Persons ("Person")

Get one or more persons by their ID

bta.get_person(btid)

Search for persons by specifying parameters for start and end date or institution. Important: The standard number of documents returned are 100. If more are desired, the "num" parameter must be set.

bta.search_person()

Plenary Protocols / Full-Text ("Plenarprotokoll")

Get one or more plenary protocols by their ID

bta.get_plenaryprotocol(btid)

Search for plenary protocols by specifying parameters for start and end date or institution. Important: The standard number of documents returned are 100. If more are desired, the "num" parameter must be set.

bta.search_plenaryprotocol()

The API differentiates between plenary protocols and plenary protocols incuding full-text of the protocol. The functions always query the full-text resource.

Procedures ("Vorgang")

Get one or more procedures by their ID

bta.get_procedure(btid)

Search for procedures by specifying parameters for start and end date or institution. Important: The standard number of documents returned are 100. If more are desired, the "num" parameter must be set.

bta.search_procedure()

Procedure Positions ("Vorgangsposition")

Get one or more procedure positions by their ID

bta.get_procedure(btid)

Search for procedure positions by specifying parameters for start and end date or institution. Important: The standard number of documents returned are 100. If more are desired, the "num" parameter must be set.

bta.search_procedure()

ToDo's

  • Parallelize requests for larger queries
  • Extend Class methods

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

bundestag_api-1.0.0.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

bundestag_api-1.0.0-py3-none-any.whl (16.1 kB view details)

Uploaded Python 3

File details

Details for the file bundestag_api-1.0.0.tar.gz.

File metadata

  • Download URL: bundestag_api-1.0.0.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.11.3 pkginfo/1.8.3 requests/2.28.1 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.9.13

File hashes

Hashes for bundestag_api-1.0.0.tar.gz
Algorithm Hash digest
SHA256 9b840b22d991d4f25d7c927e5c57a59206253a4ebcf83c2e9138374e5c50456e
MD5 041a33080892858ec7986324d8aacdcf
BLAKE2b-256 bd33db0954544a763eefc610df44dcf0bcf3ec8386dde3598695c3baa3702cea

See more details on using hashes here.

File details

Details for the file bundestag_api-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: bundestag_api-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 16.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.11.3 pkginfo/1.8.3 requests/2.28.1 requests-toolbelt/0.9.1 tqdm/4.64.1 CPython/3.9.13

File hashes

Hashes for bundestag_api-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b9c132642dfffb94b5110a201cda385d4eb9008db44528af2429e96bdc2d6310
MD5 1260e16c3470e90013be8937664614cc
BLAKE2b-256 31d76c3304eb97236939098fa68ff356e7bd167a651d424aaa43a6ee077e7125

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