Skip to main content

A Python wrapper for accessing and processing Kinexon Handball data.

Project description

Kinexon Handball API

Python License: MIT Code style: ruff

A Python wrapper for the Kinexon Handball API.

This library simplifies interaction with the Kinexon API by handling complex two-step authentication automatically and providing a fully typed interface for all API endpoints.

Features

  • Automated Authentication: Handles the multi-step login process (Session + Main) and API key injection automatically.
  • Fully Typed: Built on top of a generated OpenAPI client, ensuring type safety for requests and response models.
  • High-Level Helpers: Convenient methods for common workflows (e.g., fetching metrics, team rosters, and position data).
  • Hybrid Architecture:
    • Use high-level helpers in kinexon_handball_api for ease of use.
    • Access the underlying kinexon_client for raw access to every single API endpoint generated from the official spec.

Installation

This project requires Python 3.13+.

Using uv (Recommended)

If you use uv for fast package management:

git clone https://github.com/mad4ms/KinexonHandballAPI.git
cd KinexonHandballAPI
uv sync

If you prefer an editable install instead of syncing a lockfile:

uv pip install -e "."

Configuration

The library uses python-dotenv to manage configuration. You can provide credentials via a .env file in your project root or via environment variables.

Create a .env file:

# API Authorization
API_KEY_KINEXON=your_api_key

# Step 1: Session Authentication
USERNAME_KINEXON_SESSION=your_session_username
PASSWORD_KINEXON_SESSION=your_session_password
ENDPOINT_KINEXON_SESSION=https://hbl-cloud.kinexon.com/

# Step 2: Main Authentication
USERNAME_KINEXON_MAIN=your_main_username
PASSWORD_KINEXON_MAIN=your_main_password
ENDPOINT_KINEXON_MAIN=https://hbl-cloud.kinexon.com/checklogin

# API Base Configuration (no trailing /public/v1)
ENDPOINT_KINEXON_API=https://hbl-cloud.kinexon.com

Note: The two-step authentication requires separate credentials for each step.

Usage

Basic Example

The main entry point is the HandballAPI class.

import os
from dotenv import load_dotenv
from kinexon_handball_api.handball import HandballAPI
from kinexon_handball_api.fetchers import fetch_team_ids

# 1. Load configuration
load_dotenv()

# 2. Initialize the API
api = HandballAPI(
  base_url=os.getenv("ENDPOINT_KINEXON_API", ""),
  api_key=os.getenv("API_KEY_KINEXON", ""),
  username_basic=os.getenv("USERNAME_KINEXON_SESSION", ""),
  password_basic=os.getenv("PASSWORD_KINEXON_SESSION", ""),
  username_main=os.getenv("USERNAME_KINEXON_MAIN", ""),
  password_main=os.getenv("PASSWORD_KINEXON_MAIN", ""),
  endpoint_session=os.getenv("ENDPOINT_KINEXON_SESSION", ""),
  endpoint_main=os.getenv("ENDPOINT_KINEXON_MAIN", ""),
)

# 3. Use high-level helpers
# Fetch available metrics
metrics = api.get_available_metrics_and_events()
print(f"Found {len(metrics)} available metrics.")

# Get players for a specific team
teams = fetch_team_ids()
if teams:
    first_team = teams[0]
    players = api.get_team_players(team_id=first_team["id"])
    print(f"Team {first_team['name']} has {len(players)} players.")

Advanced: Accessing Raw Client

For endpoints not covered by high-level helpers, accessing the generated client directly is supported and encouraged. The generated client resides in kinexon_client.

from kinexon_client.api.players import get_public_v1_teams_by_team_id_players
from kinexon_client.models import PlayerModel

# You can access the authenticated low-level client via `api.client`
response = get_public_v1_teams_by_team_id_players.sync_detailed(
    client=api.client,
    team_id=12345
)

if response.status_code == 200:
    # Full type support for the response model
    data: list[PlayerModel] = response.parsed
    print(data[0].firstname)

Advanced: Adding new teams

You can add new teams by modifying config/teams.yaml. Somehow there is no API endpoint to fetch all teams, so this is a manual step for now.

Statistics Center (REST + Websocket)

The package also provides a dedicated wrapper for the Statistics Center API. REST responses use typed models from the generated statistics_center_client:

from kinexon_handball_api import StatisticsCenterAPI
from statistics_center_client.models import Games

sc = StatisticsCenterAPI(
  username="<USERNAME>",
  password="<PASSWORD>",
  interfaces_api_url="https://hbl.kinexon.com/statistics-center/interfaces-api",
  outputs_push_url="https://hbl.kinexon.com/statistics-center/outputs-push",
)

# JWT login
jwt = sc.login()

# Typed REST responses
games: list[Games] = sc.get_games(season="2025_2026")
stats = sc.get_stats("<MATCH_ID>")        # list[dict]
events = sc.get_events("<MATCH_ID>")      # list[dict]

# Push endpoints
all_endpoints = sc.list_endpoints()

# WebSocket
def on_message(data):
  print("message", data)

def on_error(error):
  print("error", error)

socket_client = sc.connect_websocket(
  on_message=on_message,
  on_error=on_error,
)

sc.subscribe(socket_client, subscription_type="matches", identifier="2019_2020")
sc.subscribe(socket_client, subscription_type="stats", identifier="<MATCH_ID>")
sc.subscribe(
  socket_client,
  subscription_type="events",
  identifier="<MATCH_ID>",
  filter={"event": "shot"},
)
sc.subscribe(socket_client, subscription_type="live_events", identifier="<MATCH_ID>")

Supported websocket subscription types are matches, stats, events, and live_events.

Architecture

This project uses a Wrapper Pattern around a generated OpenAPI client.

  • src/kinexon_handball_api/: The public-facing code. Contains the HandballAPI and StatisticsCenterAPI classes, authentication logic, and user-friendly helpers.
  • src/_vendor/kinexon_client/: Generated client for the main Kinexon Cloud REST API (from openapi/sports_app.json).
  • src/_vendor/statistics_center_client/: Generated client for the Statistics Center API (from openapi/statistics_center.json). Provides typed models (Games, LoginSuccess) used by StatisticsCenterAPI.
    • Note: Vendoring the generated clients avoids external dependencies and versioning conflicts.
    • Do not edit files in _vendor manually. They are overwritten during code generation.

Repository Layout

  • src/kinexon_handball_api/: Hand-written wrapper and helper APIs.
  • src/_vendor/kinexon_client/: Generated OpenAPI client for main REST API (do not edit).
  • src/_vendor/statistics_center_client/: Generated OpenAPI client for Statistics Center (do not edit).
  • openapi/: OpenAPI specs (sports_app.json, statistics_center.json) and generator configs.
  • scripts/: Code generation helpers (codegen.sh, rename_operation_ids.py).
  • test/: Test suite executed with pytest.

AI Assistance

If you are using an AI coding agent (Claude Code, GitHub Copilot, Cursor, etc.) in this repo, see the project-specific guidance in AGENTS.md.

Development

Setup

# Install dependencies including dev tools
uv pip install -e ".[dev]"

Running Tests

pytest

Note: The integration tests use live API calls and will be skipped if required
environment variables are not set.

Code Generation

If the Kinexon OpenAPI specification changes, you can regenerate the client:

Windows (PowerShell):

./scripts/codegen.ps1

Linux / Mac:

./scripts/codegen.sh

License

Distributed under the MIT License. See LICENSE for more information.

Contributing

Contributions are welcome! Please open issues or pull requests on GitHub.

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

kinexon_handball_api-0.2.0.tar.gz (92.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kinexon_handball_api-0.2.0-py3-none-any.whl (435.3 kB view details)

Uploaded Python 3

File details

Details for the file kinexon_handball_api-0.2.0.tar.gz.

File metadata

  • Download URL: kinexon_handball_api-0.2.0.tar.gz
  • Upload date:
  • Size: 92.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for kinexon_handball_api-0.2.0.tar.gz
Algorithm Hash digest
SHA256 4ad4f72a80eb6cde7ea6f58bcebfdef4b57861759a19f7b77e07641622c93fc1
MD5 a28cc2411380565058524bfbb84797a3
BLAKE2b-256 dd7f75b55291509813c615bf2c13152d4e82e09ab4880f2abd330ef4376439de

See more details on using hashes here.

Provenance

The following attestation bundles were made for kinexon_handball_api-0.2.0.tar.gz:

Publisher: release.yml on mad4ms/KinexonHandballAPI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file kinexon_handball_api-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for kinexon_handball_api-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 87af90b7aa7c30ae095890b28a2bc75015eaba641f1fb5f1f6834361e5031ae0
MD5 3515b99097a9572300a8122b72cc77ca
BLAKE2b-256 e4a225f332dac0657e409bbff96fdad5b648af03bc010b31701c5f7e3aba1c2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for kinexon_handball_api-0.2.0-py3-none-any.whl:

Publisher: release.yml on mad4ms/KinexonHandballAPI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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