Questions tagged [parsepy]

ParsePy is a Python client for the Parse REST API. It provides Python object mapping for Parse objects with methods to save, update, and delete objects, as well as an interface for querying stored objects.

ParsePy is a Python client for the Parse REST API. It provides Python object mapping for Parse objects with methods to save, update, and delete objects, as well as an interface for querying stored objects.

https://github.com/dgrtwo/ParsePy

9 questions
4
votes
1 answer

Save data into two separate Parse apps

I wrote a small Python Django program that parses data from a JSON API call and saves it into Parse, using ParsePy. I have a python file that collects the data and saves it into a Parse app DB. The Python file also passes some data into a different…
Prajoth
  • 900
  • 3
  • 12
  • 26
4
votes
0 answers

Python - how to send a message through Parse.com to a specific device ID using ParsePy?

I have a simple web service application that I'm using to test sending pushes through Parse.com from Python. My app uses Flask module and ParsePy module. The code listed below works for the Push.alert(notification, channels=["pushDebug"]) - I see…
Alex Stone
  • 46,408
  • 55
  • 231
  • 407
1
vote
1 answer

How to use parse.com Session Token with ParsePy?

I am using parsepy as a wrapper for parse.com. I have a parse.com table called Player with objects that are linked by a one-to-one relationship using a pointer to a User object. The Player objects have ACL's allowing Public Read but not Public…
mcastle
  • 2,882
  • 3
  • 25
  • 43
1
vote
1 answer

ParsePy AttributeError: 'Date' object has no attribute '_date'

I am trying to save a date from a Kivy app to a parse.com database using ParsePy and its Date() class. For example, I create a date attribute for a restaurant object with: restaurant.date = Date('%2014-%11-%15%0:%0:%0.%0%0') However, when I try to…
mcastle
  • 2,882
  • 3
  • 25
  • 43
0
votes
0 answers

Returning empty queryset when used __startswith(or similar kind) while querying mogodb through parsepy

I am accessing mongodb through parsepy in my django application. I have a name field in my db collection. I'm trying to get those name fields which match my query string. For example, if I have these values--> food, folk, form, fill, filled,…
Rohit Babu
  • 380
  • 3
  • 14
0
votes
0 answers

ParsePy: how to delete file

I'm using ParsePy (https://github.com/milesrichardson/ParsePy) and now I'm having a problem with File delete. from parse_rest.datatypes import Object, File class GameScore(Object): pass with open('/path/to/screenshot.png', 'rb') as fh: …
Loris
  • 2,128
  • 2
  • 9
  • 8
0
votes
1 answer

Where would I find the attributes of the related object using ParsePy?

I am using the ParsePy from https://github.com/dgrtwo/ParsePy to access our Parse DB (it works really easy, almost out of the box for me, btw). The problem I have is that want to get joined data from two classes. We have a UserVote class that is…
drorsun
  • 881
  • 1
  • 8
  • 22
0
votes
0 answers

retrieve query using Parse (Python)

I am using the third party API for Parse called ParsePy. https://github.com/dgrtwo/ParsePy I am able to login, but I am trouble retrieving query for the current user. For instance, I want to retrieve the username for the current user or a specific…
code_legend
  • 3,547
  • 15
  • 51
  • 95
0
votes
1 answer

Raspberry Pi error with ParsePy and six.py

I am trying to connect my raspberry pi to parse.com wit ParsePy which uses the rest-api from parse.com. I am writing some python code to get it to work and I have an error with the classes supplied by ParsePy. In particular its the datatypes.py…
nardo
  • 149
  • 1
  • 8