HealthGraph-API is a Python Client Library for Health Graph API. The API can be used for accessing RunKeeper.com for retrieving, updating, deleting and uploading Fitness Activity and Health Measurements Information.
{{ profile.get('name') }}
{{ profile.get('athlete_type') }}
from
{{ profile.get('location', 'Somewhere') }}
Date / Time | Sport | Distance (km) | %for stats in activities.get('items', []):
---|---|---|
{{ stats.get('start_time') }} | {{ stats.get('type') }} | {{ '%.1f' % (stats.get('total_distance', 0) / 1000) }} |
Sport | This Week (km) |
Last Week (km) |
This Month (km) |
Last Month (km) |
Overall (km) |
%for sport, stats in records.items():
---|---|---|---|---|---|
{{ sport }} | {{ '%.1f' % stats.get('THIS_WEEK', 0) }} | {{ '%.1f' % stats.get('LAST_WEEK', 0) }} | {{ '%.1f' % stats.get('THIS_MONTH', 0) }} | {{ '%.1f' % stats.get('LAST_MONTH', 0) }} | {{ '%.1f' % (stats.get('OVERALL', 0) / 1000) }} |