Skip to content

Instantly share code, notes, and snippets.

View Bastian-Kuhn's full-sized avatar

Bastian Kuhn Bastian-Kuhn

View GitHub Profile
@Bastian-Kuhn
Bastian-Kuhn / gist:2e668fd4af3c5986847a4e90b8adebb1
Created April 28, 2026 18:12
Show last 7 Days of Workout from Hevy
#!/usr/bin/env python3
"""Read Hevy workouts from the last 7 days with full details."""
import sys
from datetime import datetime, timedelta, timezone
import requests
API_KEY = "xxxx"
BASE_URL = "https://api.hevyapp.com/v1"