pktck / ParsePy

A Python wrapper for the Parse.com API
GNU General Public License v3.0
79 stars 24 forks source link

API calls under user session #14

Open begray opened 10 years ago

begray commented 10 years ago

For example:

parse.login("sample-user", "sample-password")

    # session was initialised, all the following calls will be performed with user session token

me = parse.ParseQuery("_User").get("userObjectId")
me.save()