Shows your remaining 5-hour and 7-day Claude API capacity with visual bars and reset times.
Usage: 5h ━━━━━━━━━━ 98% (02:00) │ 7d ━━━━━━━━━╌ 90% (Fri 08:00)
Reads credentials from the macOS Keychain (Claude Code-credentials).
| from decouple import config | |
| import teslapy | |
| with teslapy.Tesla(config('EMAIL')) as tesla: | |
| if not tesla.authorized: | |
| tesla.refresh_token(refresh_token=config('TOKEN')) | |
| tessie = tesla.vehicle_list()[0] | |
| tessie.sync_wake_up() |