milesrichardson / ParsePy

A relatively up-to-date fork of ParsePy, the Python wrapper for the Parse.com API. Originally maintained by @dgrtwo
MIT License
515 stars 184 forks source link

Saving JSON object #72

Closed AhmedBytesBits closed 9 years ago

AhmedBytesBits commented 10 years ago

I could not figure out how to save a dictionary in parse.com as JSON object. I was only able to convert the dictionary to a string and save it to parse.com string data-type which will make JSON elements inaccessible in queries

thibauddavid commented 9 years ago

Same problem here, setting property = {"key": "value"} on a property, then saving the object, it arrives as property=["key"] on Parse's dashboard. Seems like array of keys is sent instead of a dict How can we associate a dict to a property ?

Edit : I just submitted a pull request fixing this: https://github.com/dgrtwo/ParsePy/pull/73

dankrause commented 9 years ago

Closing, since #73 is merged.