*ParsePy* is a Python client for the [Parse REST API](https://www.parse.com/docs/rest). It provides Python object mapping for Parse objects with methods to save, update, and delete objects, as well as an interface for quering stored objects.
Basic Usage
-----------
Let's get everything set up first. You'll need to give *ParsePy* your Application Id and Master Key (available from your Parse dashboard) in order to get access to your data.
That's it! You're ready to start saving data to Parse.
If we want to store data in a ParseObject, we should wrap it in a ParseBinaryDataWrapper. The ParseBinaryDataWrapper behaves just like a string, and inherits all of str's methods.
We can also run more complex queries to retrieve a range of objects. For example, if we want to get a list of _GameScore_ objects with scores between 1000 and 2000, ordered by _playerName_, we would call: