Skip to main content

wger-api-client

Typed Python client for the wger REST API, generated from the server's OpenAPI schema with openapi-python-client. Built on httpx, with a sync and an async call for every endpoint.

Note that this is still new, if you encounter any problems, please contact us.

Install

pip install wger-api-client

Versioning

The major and minor version indicate which wger release this client targets, so 2.6.x is meant for a 2.6 server. The patch version will probably be used to indicate changes in this package itself, but that is not decided yet.

Since we try to keep the API as compatible as possible, an older client generally keeps working against a newer server, specially for stable endpoints such as the exercises. However, breaking changes are unavoidable, and it is recommended that you use the version that exactly matches the server you want to connect to.

Usage

Every endpoint has its own module under wger_api_client.api.<tag>, and each of those exposes four functions:

Function Returns
sync the parsed body, or None
sync_detailed a Response with status code, headers and the parsed body
asyncio as sync, awaitable
asyncio_detailed as sync_detailed, awaitable

With an API key from /user/api-key:

from wger_api_client import AuthenticatedClient
from wger_api_client.api.routine import routine_list

with AuthenticatedClient(
    base_url="https://wger.de", token="<api key>", prefix="Token"
) as client:
    page = routine_list.sync(client=client)
    for routine in page.results:
        print(routine.id, routine.name)

With a JWT access token, which is the same call with a different prefix:

client = AuthenticatedClient(
    base_url="https://wger.de", token="<access token>", prefix="Bearer"
)

Unauthenticated endpoints, such as the exercises, work with the plain Client:

from wger_api_client import Client
from wger_api_client.api.exerciseinfo import exerciseinfo_list

with Client(base_url="https://wger.de") as client:
    page = exerciseinfo_list.sync(client=client)

# without context manager
client = Client(base_url="https://wger.de", raise_on_unexpected_status=True)
page = exerciseinfo_list.sync(client=client)

By default a non-2xx response returns None from sync. Pass raise_on_unexpected_status=True to the client to get an errors.UnexpectedStatus exception instead.

Development

The generated package under wger_api_client/ is checked in, so that a schema change shows up as a reviewable diff. Do not edit it by hand.

Updating the client after the server's API changed is two steps, refresh the schema and regenerate from it. The schema is read from a running wger instance, by default the upstream one at https://wger.de:

# 1. refresh schema/wger-openapi.yaml
uv run scripts/sync_schema.py [--base-url https://my.server]

# 2. regenerate the client from the refreshed schema
./scripts/generate.sh

uv run pytest

To pick up API changes that are not released yet, point it at a local instance (./manage.py runserver in the server checkout) with --base-url or $WGER_BASE_URL:

uv run scripts/sync_schema.py --base-url http://localhost:8000

Then commit both diffs together. A schema that moved without a regenerated client is exactly what CI rejects.

Two things to keep in mind when refreshing:

The instance must be backed by PostgreSQL, the way real deployments are. Django derives the bounds of its integer fields from the database backend, so the schema is backend-dependent. The default instance already satisfies this, so it only matters when syncing from a local checkout configured for SQLite.

Also note that the schema endpoint does not report the warnings that ./manage.py spectacular prints on the server side. Those warnings mean the schema might be misdescribing the API somewhere, and the mistake gets baked into the client, so check them in the server checkout whenever its serializers changed.

To verify without changing anything:

# does the committed client still match the committed schema?
./scripts/generate.sh --check

# has the server's schema moved since the snapshot was taken?
uv run scripts/sync_schema.py --check

tests/test_contract.py pins the parts of the contract that are easy to get wrong when the calls are written by hand: which endpoints are read-only, which methods each URL allows, the valid enum values and the writable field sets.

Contact

Feel free to contact us if you found this useful or if there was something that didn't behave as you expected. We can't fix what we don't know about, so please report liberally. If you're not sure if something is a bug or not, feel free to file a bug anyway.

License

Apache-2.0, see LICENSE.txt and NOTICE.

The wger server itself is AGPL-3.0-or-later. This client is licensed permissively so that it can be used as an ordinary dependency. The endpoint and field descriptions carried in the generated docstrings come from the server's source code and are attributed in the NOTICE file.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wger_api_client-2.6.0.tar.gz (168.9 kB view details)

Uploaded Source

Built Distribution

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

wger_api_client-2.6.0-py3-none-any.whl (618.8 kB view details)

Uploaded Python 3

File details

Details for the file wger_api_client-2.6.0.tar.gz.

File metadata

  • Download URL: wger_api_client-2.6.0.tar.gz
  • Upload date:
  • Size: 168.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wger_api_client-2.6.0.tar.gz
Algorithm Hash digest
SHA256 ad358c557bdf421364700d5d0f20e1b42b064bb3709585b77bb2b76e8e0333b3
MD5 5efb405a3fa1d9f52245f1783f9e49f3
BLAKE2b-256 25bd2d16cd5207054bf6cec571ec1a5f1b6156ad0a0c6e1ac5a5af0ab2aa6995

See more details on using hashes here.

Provenance

The following attestation bundles were made for wger_api_client-2.6.0.tar.gz:

Publisher: publish.yml on wger-project/api-client

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

File details

Details for the file wger_api_client-2.6.0-py3-none-any.whl.

File metadata

  • Download URL: wger_api_client-2.6.0-py3-none-any.whl
  • Upload date:
  • Size: 618.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wger_api_client-2.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d2dad9b96a947d4cceda9af89b7b57277315b737035b427b96a195977009cc9b
MD5 acaa72c85a086508e34a3d856fa18a91
BLAKE2b-256 b598cee5ad909888cfd174450d3a7946527bb8b0ce1160ceebd315e8a5c88ae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wger_api_client-2.6.0-py3-none-any.whl:

Publisher: publish.yml on wger-project/api-client

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

Release history Release notifications | RSS feed

2.6.1

2 files

This release

2.6.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page