You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,3 +102,31 @@ async def main():
102
102
103
103
asyncio.run(main())
104
104
```
105
+
106
+
## Tessie
107
+
This extends TeslaFleetApi to send requests through Tessie, which manages all aspects of Tesla OAuth. This class only requires an access_token from [Tessie](https://dash.tessie.com/settings/api).
108
+
109
+
```
110
+
import asyncio
111
+
import aiohttp
112
+
113
+
from tesla_fleet_api import Tessie
114
+
from tesla_fleet_api.exceptions import TeslaFleetError
0 commit comments