Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 287 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 287 Bytes

Tesla API

This is a package for connecting to the Tesla API.

Usage

from tesla_api import TeslaApiClient

client = TeslaApiClient('[email protected]', 'yourPassword')

vehicles = client.list_vehicles()

for v in vehicles:
    print(v.vin)
    v.controls.flash_lights()