A Python client for the Smashrun API.
You can install the current development release using pip
:
pip install --pre smashrun-client
client = Smashrun(client_id='my_client_id', client_secret='my_secret')
client.refresh_token(refresh_token='my_refresh_token')
# use urn:ietf:wg:oauth:2.0:oob for applications that aren't a web app
client = Smashrun(client_id='my_client_id',client_secret='my_secret',
redirect_uri='urn:ietf:wg:oauth:2.0:auto')
auth_url = client.get_auth_url()
code = raw_input("Go to '%s' and authorize this application. Paste the provided code here:" % auth_url[0])
response = client.fetch_token(code=code)
print(response['refresh_token'])
NOTE: The example above assumes that you are running Python 2.x. If You are using Python 3.x you can replace
raw_input
with input
.
Use Smashrun.get_activities
to get a list of activities (summaries):
activities = client.get_activities() # returns an iterator that handles paginating through the API
for activity in activities:
print activity['startDateTimeLocal']
Use Smashrun.get_activity
to get a specific activity:
activity = client.get_activity(1234)
print activity['recordingKeys']
For more details on what you can do, see the code and the Smashrun API
Contributions are greatly appreciated! Feel free to submit a pull request, or file an issue in our issue tracker.