Commit 19b1163b by Raphael Lullis

Updating documentation

parent 413d7ce1
......@@ -61,12 +61,13 @@ Basic Usage
Let's get everything set up first. You'll need to give `parse_rest`
your Application Id and REST API Key (available from your Parse
dashboard) in order to get access to your data.
dashboard) in order to get access to your data. All calls to Parse are
done through ParseBase classes, so we need to register the credentials
with it.
~~~~~ {python}
import parse_rest
parse_rest.APPLICATION_ID = "your application id"
parse_rest.REST_API_KEY = "your REST API key here"
parse_rest.ParseBase.register(<application_id>, <rest_api_key>)
~~~~~
To create a new object of the Parse class `GameScore`, you first
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment