dolphinkiss / tesla_api

Lightweight Python API client for the Tesla API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tesla API

This is a package for connecting to the Tesla API.

Usage

from tesla_api import TeslaApiClient

client = TeslaApiClient('your@email.com', 'yourPassword')

vehicles = client.list_vehicles()

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

About

Lightweight Python API client for the Tesla API.

License:MIT License


Languages

Language:Python 100.0%