Skip to content

vr-hunter/vwapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VW API Package

This is a simple python3 package can log into a VW ID and query several VW APIs.

It uses asyncio and aiohttp for http connections.

Currently, the functionality is limited to

  • Logging in to the VW ID
  • Adding / removing vehicles to / from the VW ID
  • Querying the "relations" and "lounge" APIs. The former returns information on vehicles associated with the VW ID, the latter returns the production status of newly purchased vehicles

Example Usage

import vwapi

async def main(session: vwapi.VWSession):
    session = vwapi.VWSession("[email protected]", "my_vw_id_password")
    await session.log_in()
    cars = await session.get_cars()
    print(cars)

if __name__ == "__main__":
    asyncio.run(main())

About

Python package used to connect to several VW APIs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages