The Runkeeper-API is used to interact with Runkeeper (http://runkeeper.com) Runkeeper does provide an official API so BeautifulSoup is used to scrae pages. Currently this package can only be used for reading.
$ sudo python setup.py install
A simple example for getting the total distance a user has covered
from runkeeper import User
user = User("bnmrrs")
activities = user.get_all_activities()
total_distance = 0
for activity in activities:
total_distance += activity.get_distance()
print "%dkm" % total_distance
This package is licensed under the MIT License.