Metadata-Version: 2.1
Name: tesla-api
Version: 1.0.1
Summary: API client for Tesla
Home-page: https://github.com/mlowijs/tesla_api
Author: M. Lowijs
Author-email: mlowijs@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Tesla API

This is a package for connecting to the Tesla API.

## Usage

```python
from tesla_api import TeslaApiClient

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

vehicles = client.vehicles.list()

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

