Async Python client for the BMW CarData customer API (REST + MQTT streaming).
Project description
bmw-cardata - BMW CarData Python Library
Async Python client for the BMW CarData customer API (REST) and the customer MQTT streaming feed.
[!IMPORTANT] The CarData REST API is rate-limited to 50 requests per day per user (BMW-side limit, not enforced by this library). Once exceeded, calls return HTTP 403
CU-429 API rate limit reacheduntil the next day. For frequent updates use the MQTT streaming feed instead.
Prerequisites (one-time setup in the BMW customer portal)
Before this library can talk to the API you must complete a few steps in the BMW CarData customer portal:
- Generate a CarData client ID — Portal → CarData → Create CarData
Client. Note the client ID; you will pass it to
DeviceCodeFlowClient. - Subscribe to services — subscribe the client to both CarData API and
CarData Stream. Without this the OAuth scopes (
cardata:api:read,cardata:streaming:read) will not be granted and the API/stream calls will be rejected. - For REST telematic data: create a container selecting the telematic
keys you want. See
spec/telematic_catalogue.jsonfor validtechnical_descriptorvalues. You can also create containers from code viaCarDataClient.create_container(...). - For MQTT streaming: open Configure data stream and pick the streamable
keys (those with
"streamable": trueinspec/telematic_catalogue.json). Without this step the MQTT broker will reject the subscribe withcode:128.
Notes:
- The REST API has a daily rate limit of 50 requests per user. Prefer streaming for frequent updates.
- Only one streaming connection per gcid is allowed at a time.
- Refresh tokens are valid for 14 days; access/id tokens for 1 hour.
Authentication (OAuth 2.0 Device Code Flow with PKCE)
import asyncio
from bmw_cardata import DeviceCodeFlowClient
async def main() -> None:
async with DeviceCodeFlowClient(client_id="<your-client-id>") as auth:
device = await auth.request_device_code()
print(f"Open {device.verification_uri} and enter code {device.user_code}")
token = await auth.poll_for_token(device.device_code, interval=device.interval)
print("access_token:", token.access_token)
print("id_token:", token.id_token)
print("gcid:", token.gcid)
print("refresh_token:", token.refresh_token)
asyncio.run(main())
Persist the refresh_token and use it to resume the session without prompting
the user again:
auth = DeviceCodeFlowClient(client_id="...", refresh_token="<stored-refresh-token>")
token = await auth.refresh() # new access/id/refresh tokens
REST client
import asyncio
from bmw_cardata import CarDataClient
from bmw_cardata.models import CreateContainerRequest
async def main() -> None:
async with CarDataClient(access_token="<bearer-access-token>") as client:
containers = await client.list_containers()
for c in containers.containers:
print(c.container_id, c.name, c.state)
new = await client.create_container(
CreateContainerRequest(
name="my-container",
purpose="example",
technical_descriptors=["vehicle.powertrain.electric.battery.stateOfCharge"],
)
)
data = await client.get_telematic_data("WBA...", container_id=new.container_id or "")
for key, entry in data.telematic_data.items():
print(key, entry.value, entry.unit, entry.timestamp)
asyncio.run(main())
You can also pass an async callable that returns a fresh token (handy for refresh flows):
async def token_provider() -> str:
return await refresh_if_needed()
client = CarDataClient(access_token=token_provider)
Streaming (MQTT)
The customer MQTT broker authenticates with the user's gcid as username and
the OAuth id_token (issued with the openid scope) as password.
import asyncio
from bmw_cardata import StreamingClient
async def main() -> None:
async with StreamingClient(gcid="<gcid>", id_token="<id-token>") as stream:
async for message in stream.stream(): # all VINs of this gcid
print(message.vin, message.data)
asyncio.run(main())
To subscribe to a single VIN:
async for message in stream.stream(vin="WBA..."):
...
Endpoints covered
REST (CarDataClient):
list_containers,create_container,get_container,delete_containerget_mappingsget_basic_data(vin)get_telematic_data(vin, container_id)get_vehicle_image(vin)→ raw bytesget_smart_maintenance_tyre_diagnosis(vin)get_charging_history(vin, from_, to, next_token=...)get_location_based_charging_settings(vin, next_token=...)
Streaming (StreamingClient):
stream(vin=None)— async iterator ofStreamingMessage
Development
pip install -e .[dev]
ruff format src
ruff check src
ty check src
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bmw_cardata-0.1.0a2.tar.gz.
File metadata
- Download URL: bmw_cardata-0.1.0a2.tar.gz
- Upload date:
- Size: 42.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c17e15b054bde5509cc94674c975c0c49444a5b6c41fe1040d0aedd7e0ec9f62
|
|
| MD5 |
f92d36a77cc6c596732ffee6ab42dd5f
|
|
| BLAKE2b-256 |
5b8c9bad8343eb6c30f88932561c59a588c9cc7fc1947e33efb67ab2ade73d22
|
Provenance
The following attestation bundles were made for bmw_cardata-0.1.0a2.tar.gz:
Publisher:
pypi.yaml on zweckj/bmw-cardata
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bmw_cardata-0.1.0a2.tar.gz -
Subject digest:
c17e15b054bde5509cc94674c975c0c49444a5b6c41fe1040d0aedd7e0ec9f62 - Sigstore transparency entry: 1692457436
- Sigstore integration time:
-
Permalink:
zweckj/bmw-cardata@5784d161b19444dd1f4cdfb609f41cdd8aae40f0 -
Branch / Tag:
refs/tags/v0.1.0a2 - Owner: https://github.com/zweckj
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yaml@5784d161b19444dd1f4cdfb609f41cdd8aae40f0 -
Trigger Event:
release
-
Statement type:
File details
Details for the file bmw_cardata-0.1.0a2-py3-none-any.whl.
File metadata
- Download URL: bmw_cardata-0.1.0a2-py3-none-any.whl
- Upload date:
- Size: 22.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca01a47eaf48a76a0413b4119747aa6131a9be31aad573c634a84b5f281c4cbf
|
|
| MD5 |
2132ced2296ab88c63a22e7ca98487ce
|
|
| BLAKE2b-256 |
7ce332ca59fda30d555c5045458778be0bd535559598e85e4bf15039e10cee03
|
Provenance
The following attestation bundles were made for bmw_cardata-0.1.0a2-py3-none-any.whl:
Publisher:
pypi.yaml on zweckj/bmw-cardata
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
bmw_cardata-0.1.0a2-py3-none-any.whl -
Subject digest:
ca01a47eaf48a76a0413b4119747aa6131a9be31aad573c634a84b5f281c4cbf - Sigstore transparency entry: 1692457518
- Sigstore integration time:
-
Permalink:
zweckj/bmw-cardata@5784d161b19444dd1f4cdfb609f41cdd8aae40f0 -
Branch / Tag:
refs/tags/v0.1.0a2 - Owner: https://github.com/zweckj
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yaml@5784d161b19444dd1f4cdfb609f41cdd8aae40f0 -
Trigger Event:
release
-
Statement type: