API client for PSA group connected car service.
This is a rework of the wonderful PSA Car Controller by @flobz.
The goal is to extract the core functionality and provide it as a library to be used by systems like Home Assistant directly, without the need to run a separate server.
It builds upon some great libraries:
httpxfor the asynchronous REST API requestsauthlibto handle the Oauth2 authenticationmsgspecfor the decoding of the API response into python classespyaxmlparser, a lighter alternative toandroguard, to get the needed information from the PSA android app
pip install psa-connected-car-clientA basic usage of the library can be found at tests/demo_cli.py.
You can create the PSAClient using the create_psa_client function.
from psa_ccc import create_psa_client
async def main():
client = await create_psa_client(brand, country_code, email, password)The arguments are self-explanatory, but just in case:
brandis the car brand; possible values are:PeugeotCitroenDSOpelVauxhall
country_codeis your 2 letter uppercase country codeemailis the address you used to register to the "MyBrand" apppasswordis - you guessed it - the password for the app
Behind the scenes, this function will download the APK of the mobile app, extract the data needed to establish a connection to the PSA servers and save it in a config file. Subsequent runs of the function will read from that config file, if it exists.
You're now ready to use the client to talk to the PSA connected car service!
user = await client.get_user()
print("User:", user)
vehicles = await client.get_vehicles()
print("Vehicles:", vehicles)
vehicle_id = vehicles[0].id
vehicle = await client.get_vehicle(vehicle_id)
print("First vehicle:", vehicle)
alerts = await client.get_vehicle_alerts(vehicle_id)
print("Vehicle alerts:", alerts)
status = await client.get_vehicle_status(vehicle_id)
print("Vehicle status:", status)
maintenance = await client.get_vehicle_maintenance(vehicle_id)
print("Vehicle maintenance:", maintenance)
print(
"Vehicle position:",
status.last_position.geometry.coordinates,
"last updated at",
status.last_position.properties.updated_at,
)the create_psa_client function accepts two optional parameters for choosing where to store the configuration and the auth tokens:
cache_storageaccepts any implementation of theCacheStorageprotocol. The library comes with theSimpleCacheStorageclass that stores the files inside the given directory. This is the storage used in the simple version above, and uses the current working directory as storage.token_storageaccepts any implementation of theTokenStorageprotocol. Again, the library has aMemoryTokenStorageclass that keeps the token in memory (it is never written to disk). This is the default token storage for the simple version above.
from pathlib import Path
from psa_ccc import SimpleCacheStorage
from psa_ccc import MemoryTokenStorage
from psa_ccc import create_psa_client
async def main():
storage = SimpleCacheStorage(Path(__file__).parent)
token_storage = MemoryTokenStorage()
client = await create_psa_client(
brand, country_code, email, password, storage, token_storage
)
# do whatever you want with client...