healthgraph-api
healthgraph-api copied to clipboard
Python Client Library for Health Graph API (http://developer.runkeeper.com/healthgraph). The API is used for accessing RunKeeper.com (http://runkeeper.com) for retrieving, updating, deleting and uploa...
I realized that #3 and #4 are still not in at https://pypi.python.org/pypi/healthgraph-api latest. Can you please roll out a new version?
Nutrition and background api call of healthgraph-api are exposed/added https://runkeeper.com/developer/healthgraph/nutrition-sets https://runkeeper.com/developer/healthgraph/background-activity-sets
From the docs: ``` The noEarlierThan, noLaterThan, modifiedNoEarlierThan, and modifiedNoLaterThan query parameters restrict the scope of the returned feed. Each takes a date in YYYY-MM-DD format. ``` http://runkeeper.com/developer/healthgraph/example-api-calls#get
The fitness activity lacks a `utc_offset` field necessary to determine activity timezone. http://runkeeper.com/developer/healthgraph/fitness-activities#past
It took me a bit of poking around in the code to come up with a simple example of functionality. Hopefully this will help anyone else stumbling upon this package....
I found that the `total_distance` field in an `activity` record seems to be already in kilometers, so no need to divide it by 1000 (perhaps this is due to a...
modified FitnessActivityFeedItem, FitnessActivitySummary and FitnessActivity class to match API documentation
I just removed the parens so that resp.json is returned and made sure it is never a callable.
http://developer.runkeeper.com/healthgraph/background-activities They are currently not exposed. I would expect healthgraph.resources.User class to provide a get_background_activities() method similar to the others already available. In my case I need background activities to...