HealthGraph-API Demo

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 Picture

{{ profile.get('name') }}
{{ profile.get('athlete_type') }} from {{ profile.get('location', 'Somewhere') }}

Recent Activities

%for stats in activities: %end
Date / Time Sport Distance (km)
{{ stats.get('start_time') }} {{ stats.get('type') }} {{ '%.1f' % stats.get('total_distance', 0) }}

Total Distance

%for sport, stats in records.items(): %end
Sport This Week
(km)
Last Week
(km)
This Month
(km)
Last Month
(km)
Overall
(km)
{{ 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) }}

Logout