Provides access to the Audi Connect API
Project description
Audi Connect API
This library provides access to the Audi Connect API. It allows easy access to all vehicle relevant data.
The API does automatic session caching and tries to keep the original service names as found in the audi connect app.
Some services require special permissions or certain origin countries of the car to be accessible.
Note: Not all services are fully implemented due to missing permissions as mentioned above.
Installing
pip install audiapi
Examples
Login credentials
credentials.json
{
"user": "yourUser@mail.com",
"pass": "yourPassword"
}
List all vehicles under your account
The auth tokens will be cached in the working directory
api = API()
logon_service = LogonService(api)
if not logon_service.restore_token():
with open('credentials.json') as data_file:
data = json.load(data_file)
logon_service.login(data['user'], data['pass'])
car_service = CarService(api)
car_service.get_vehicles()
Response
{
"csid": "-----",
"vin": "-----",
"registered": "2017-02-15T18:06:39.000+01:00"
}
Get details about the embedded SIM
mgmt_service = VehicleManagementService(api, vehicle)
mgmt_service.get_information()
Response
{
"vehicleData": {
"requestId": "--",
"vin": "--",
"country": "DE",
"isConnect": "true",
"brand": "Audi",
"vehicleDevices": {
"vehicleDevice": [
{
"ecuGeneration": "MIB2high",
"deviceType": "INFOTAINMENT"
},
{
"deviceId": "----",
"embeddedSim": {
"identification": {
"content": "----",
"type": "ICCID"
},
"imei": "----",
"mno": "vodafone"
},
"ecuGeneration": "cGW",
"deviceType": "TELEMATICS"
}
]
},
"isConnectSorglosReady": "true",
"systemId": "XID_APP_AUDI"
}
}
Dependencies
- Python 3
- Requests library
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
File details
Details for the file audiapi-1.0.1.tar.gz
.
File metadata
- Download URL: audiapi-1.0.1.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e5aee01adc256dd75d5478fb01052eb3701ff1d2c1fbdb2eb7bff9528349686 |
|
MD5 | 4338f6cb4f451dc40c615b1c4acf051c |
|
BLAKE2b-256 | e6a87618c83fad60294e997e9194ffb2f327fd8c724d2e969ace5d0216c4e870 |
File details
Details for the file audiapi-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: audiapi-1.0.1-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.27.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dce3d1bda2e243321273c32dadfbe6a1de21c67a72c2f11211db22b1b9932e1d |
|
MD5 | 9e1ed23e1b3ebd01285600c8df62f528 |
|
BLAKE2b-256 | 88eec52c945c03489d72031f9fafc98fb6924d44a0ced31dd7d2f7eaa2aaeebc |