Hi, wanted to give an update on this.
We did get it to work with python.
For benefit of the community, the connection request looked like this:
connection.request('PUT', '/classes/UserScores/<ObjectID>', json.dumps({
"Score": 7
}), {
"X-Parse-Application-Id": "Your App ID",
"X-Parse-REST-API-Key": "Your REST API Key",
"Content-Type": "application/json"
})
Thanks!