kickerde_api_client =================== .. py:module:: kickerde_api_client .. autoapi-nested-parse:: Unofficial client for the public kicker.de news API To install this library from PyPI, open a shell and run: .. code:: shell pip install kickerde-api-client Demo code to get started: .. code:: python import asyncio from kickerde_api_client import Api from kickerde_api_client.model import LeagueId api = Api() query = {'league': LeagueId.BUNDESLIGA, 'season': '2024/25'} season = asyncio.run(api.league_season(**query)) print(season['longName']) # 'Bundesliga' print(season['country']['longName']) # 'Deutschland' print([ team['shortName'] for team in season['teams'].values() if team['shortName'].startswith('B') ]) # ['Bayern', 'Bremen', 'Bochum'] day = season['gamedays'][34] print(str(day['dateFrom'].date())) # '2025-05-17' Submodules ---------- .. toctree:: :maxdepth: 1 /autoapi/kickerde_api_client/api/index /autoapi/kickerde_api_client/errors/index /autoapi/kickerde_api_client/logging/index /autoapi/kickerde_api_client/mapping/index /autoapi/kickerde_api_client/model/index /autoapi/kickerde_api_client/provider/index