Tagged Questions
0
votes
1answer
32 views
Inequality query on two distinct date fields
I'm developing an application with Google App Engine in Python.
In my application I should save the absences of students and their justifications, so I have a class:
class Absence(ndb.Model):
...
0
votes
0answers
13 views
Get the Google user ID in Endpoints-Android project
This is a bug, discussed here Function User.getUserId() in Cloud endpoint api returns null for a user object that is not null but since I cannot comment yet...
One cannot get the user_id but only the ...
0
votes
0answers
28 views
Converting timezone from UTC to IST in App Engine?
Question is related to Jinja2 templating system. But I want to explain the scenario:
According to the doc, App Engine always stores and returns datetime in UTC format. I am using
...
0
votes
1answer
25 views
GAE post does not show directly after put
I have a very simple "guestbook" script on GAE/Python. It often happens however, that entries which I put() into the datastore are not showing right away - I almost always need to refresh.
def ...
0
votes
1answer
41 views
Programmatically create Entity with ReferenceProperty from Message in GAE datastore
I'd like to be able to automatically insert an entity with a reference t another entity directly from a message, using Google Endpoints.
To transmit ReferenceProperty in message, I use the encoded ...
0
votes
1answer
20 views
Google App Engine datastore query returning object's memory location instead of actual item (Python 2.7)
I am trying to query a database in order to verify whether a username already exists.
The Model definition is:
class UserAccounts(db.Model):
username = db.StringProperty(required=True)
...
0
votes
1answer
34 views
Checking uniqueness contraint during form validation in App Engine
I am using Flask and WTforms in App Engine, trying to implement uniqueness contraint on one of the field. The question is big, please be patient and I have been stuck here from many hours, need some ...
0
votes
1answer
23 views
Is there something like DatastoreOutputWriter?
How to write back MapReduce results to the datastore? My first thought was "DatastoreOutputWriter", but apparently there is no such thing.
Clarification: The question is not about modifying/saving ...
1
vote
0answers
33 views
Uploading video from phone to Google App Engine Blobstore
I'm using Python on Google App Engine as the backend for a Desktop/Mobile web app for video sharing. I'm having an issue uploading from an iPhone to the blobstore. Usually the page redirects after the ...
0
votes
3answers
43 views
ndb.Key filter for MapReduce input_reader
Playing with new Google App Engine MapReduce library filters for input_reader I would like to know how can I filter by ndb.Key.
I read this post and I've played with datetime, string, int, float, in ...
0
votes
1answer
28 views
Use Datastore Entity's ID or Key in ProtoRPC.Message
When transmitting references to other Datastore entities using the Message class from ProtoRPC, should I use str(key) or key.id(). The first one is a String the second one is a long.
Does it make any ...
0
votes
0answers
27 views
Appengine - Global namespaces for users and joining between different namespaces
I would like to use different namespaces in my google app engine app:
Users are in the default namespace (for login, then the namespace of user's company is picked)
Objects are in different ...
0
votes
2answers
50 views
Newly added record in datastore is not refelcting in the application
I have been facing this problem in app engine. As I am new to App Engine, I don't know whether I am doing it right way or not.
Whenever a new record is inserted into datastore, this newly inserted ...
0
votes
2answers
40 views
Preventing db.get() from returning outdated records
I am working on an app that has users taking turns put()-ing data into the datastore, which then has the id broadcast to the user via channel. Sometimes, when the users get(), it'll show the previous ...
1
vote
1answer
31 views
What to test after defining Appengine Datastore models
I am starting an App Engine application.
I started defining some simple models I will need.
I want to write tests for my application (that would be the first time I've done that).
I cannot see what I ...
2
votes
0answers
31 views
Values in dropdown menu created using ReferencePropertyField() are not proper
I am using Flask on App Engine. Here is the code:
models.py:
class Client(db.Model):
name = db.StringProperty(required=True)
def __repr__(self):
return unicode(self.name)
class ...
0
votes
1answer
31 views
Field with ListProperty(db.Key) is skipping in form created using wtforms.ext.appengine.db import model_form?
I am using model_form to create form automatically from the App Engine model. It works fine, but the created form doesn't include ListProperty() field.
Code snippet:
In models.py:
class ...
0
votes
1answer
30 views
Adding extra properties to the User class in App Engine datastore?
I am working on an App using Flask and App Engine, which requires extra information to be stored in User Object apart from nickname, email and user_id.
Is it possible to extend User class in ...
1
vote
0answers
42 views
Many different sharded counters in single transaction
I have to increment three different counters in a single transaction. Beside that I have to manipulate three other entities as well. I get
too many entity groups in a single transaction
I've used ...
0
votes
1answer
34 views
Differentiating logged-in users as admin and normal user in Google App Engine?
I am developing an app in GAE. Application provides different view depending upon whether logged-in user is admin or normal user. I want to use 'Google Apps domain' as Authentication Type. So that all ...
0
votes
0answers
28 views
one-to-one and many-to-many relationship in datastore?
I have User and Project Model as shown below.
class User(db.Model):
first_name = db.StringProperty(required=True)
last_name = db.StringProperty(required=True)
email_address = ...
0
votes
0answers
40 views
Less costly /neatest way to use selectfield properties as key relationships for ndb
I'm having trouble modeling key/parents for the last two (sensors/readings). I'd like to keep the ancestor path for each. The problem is I only have access to the last id in the hierarchy. Does this ...
0
votes
1answer
26 views
Why can't I add an attribute to a datastore object (dynamically) and store it in session?
I am not able to retrieve attributes in session that have been added dynamically to a datastore object. Here's a (simplified) example... To save time on suggestions, I do not want to actually hard ...
0
votes
1answer
68 views
NDB/DB NoSQL Injection Google Datastore
Is there any SQL injection equivalents, or other vulnerabilities I should be aware of when using NoSQL?
I'm using Google App Engine DB in Python2.7, and noticed there is not much documentation from ...
0
votes
1answer
59 views
GAE - Storing multiple OAuth access token
For a project I am working on I need to store the user access token (and auth code and refresh token I assume).
I am using GAE for this and I have difficulties to design the model, which is quite ...
0
votes
0answers
16 views
Appengine datastore raising badValueErro on datetime, might be caused by monkeypatch
I'm getting the following error message:
BadValueError: Expected datetime, got datetime.datetime(2013, 4, 19, 19, 48, 2, 566558)
The error is raised in ndb's model.py line 1190, here's a snippet of ...
0
votes
1answer
72 views
What is the fastest way to get scraped data from so many web pages?
I need to scrap about 40 random webpages at the same time.These pages vary on each request.
I have used rpcs in python to fetch the urls and scraped the data using BeautifulSoup. It takes about 25 ...
2
votes
3answers
45 views
GAE - get() entity by property?
How would I go about getting a Datastore entity based on an entity of the property? Do I have to go through a multi-step filter() get() process? Or can I accomplish this through a 1 piece get()?
For ...
1
vote
1answer
35 views
How to store text as UTF-8 in GAE Text.Property field?
I know GAE is storing db.TextProperty by default as ASCII. How do I store utf-encoded text in a textField? I tried db.Text(txt, encoding='utf_8') but couldn't get it working.
Using the interactive ...
0
votes
0answers
62 views
Understanding ndb key class vs KeyProperty
I've looked through the documentation, the docs and SO questions and answers and am still struggling with understanding a small piece of this. Which should you choose and when?
This is what I've read ...
0
votes
2answers
43 views
GAE - Datastore model class with function that put()s itself in the database?
I'm trying to write a Datastore model class which has a function which creates the object and adds it to the Datastore all at once. This is what I currently have (which doesn't work):
class ...
0
votes
1answer
28 views
How do you select a gae entity's key_name?
I want to retrieve all of my Class entities key_names and not the Key.
Is there a way to do this with gae?
Here is my current code:
entities = db.GqlQuery("SELECT __key_name__ FROM ...
4
votes
2answers
79 views
strategy/pattern to prevent lost update / race conditions on GAE / memcache
Example:
Process A - gets the latest version of an entity from memcache
Process B - gets the latest version of an entity from memcache
Process A - makes some update to the entity retrieved in (1) ...
1
vote
2answers
31 views
detect whether a specific property of an entity has been altered when 'putting' the entity?
Looking for an efficient way to check whether a specific property of a db.Model has been changed vs. the version stored in the datastore before putting it. Obviously I would like to avoid getting a ...
2
votes
1answer
44 views
assigning empty list to StringListProperty with default value results in entity having default value?
Fully working example below can be run in the interactive console.
Is this expected? If so, I have two questions:
1) please show where this is explained in the GAE documentation.
2) please show a ...
0
votes
1answer
53 views
App Engine and models with relationships with python [closed]
I've read some of the google docs about modeling (btw I'm a newbie with python and GAE/webapp2). Doing this with relationships would be a lot easier but I'm trying to learn google app engines, with ...
0
votes
1answer
39 views
[gae]redirect only succeed after second time
I am building a simple wiki on GAE, i wanted to add a normal redirect to the handler when the content put to the datastore.but it doesnt work until i submit twice it redirect to the content page not ...
1
vote
1answer
30 views
BadRequestError: Nested transactions are not supported
I'm currently learning about transactions and I'm getting this error message:
BadRequestError: Nested transactions are not supported
I have no idea how to resolve this. Any assistance will be ...
0
votes
1answer
37 views
Ancestor Query not displaying results
I'm having trouble getting my ancestor queries to display the links associated with Tom's photos that are stored in the datastore. Nothing is displayed from the datastore even though there are several ...
0
votes
1answer
67 views
How do I load an entity from the App Engine datastore into my WTForms model_form?
I'm using the App Engine extension of WTForms to generate forms from my datastore models. This works great for adding new entities, but I would also like to be able to use the forms to edit existing ...
0
votes
2answers
186 views
My first Google App Engine/Python app
I am trying to write my first GAE/Python application that does the following three things:
Displays a form where the user can enter details about themself (index.html)
Stores the submitted form data ...
1
vote
1answer
37 views
App Engine Data store understanding no Sql
I have these 2 Data Stores:
class User(db.Model):
name = db.StringProperty(required = True)
password = db.StringProperty(required = True)
email = db.EmailProperty(required = True)
...
0
votes
1answer
55 views
Google App Engine: Storing Data & querying it
I'm wondering what the best way to store data is for my situation. I want to store a list of properties, like phone numbers, for one person. For example:
name: John Doe
numbers: 0998234, 23443145, ...
0
votes
0answers
48 views
Google app engine python Database losing data
Using the python google app engine datastore on localhost, every now and then all the data will be lost. When it happens, every time my google app engine launcher will freeze and I have to force quit ...
1
vote
1answer
60 views
Ancestor query parse error
I am trying to get my ancestor query to work but I keep getting this error:
BadQueryError: Parse Error: Identifier is a reserved keyword at symbol
ANCESTOR
at this line:
...
0
votes
0answers
94 views
Retrieving data via cloud endpoints from python created datastore (Google App Engine)
I've wrote a google app engine python scraper to get data from a website & insert it into a google app engine datastore. I want to send a request from my android device to the app engine (a string ...
1
vote
1answer
165 views
Timetable Web Scraping with multiple tables (Python)
I'm just looking for some info regarding python web scraping. I'm trying to get all the data from this timetable and I want to have the class linked to the time its on at. Looking at the html there's ...
0
votes
1answer
47 views
Design Pattern To Implement Bit Data/Operator In NDB
I realize that NDB / Google Datastore does not support bit data type and supporting operators.
But does anyone have any suggestions a workaround.
My data is a tree of categories and the user can ...
0
votes
2answers
58 views
GAE Datastore: put into a field using a string as the field reference python
I am reading a CSV file from a web source and would like to store it in my GAE datastore. The CSV data comes with a header row, that with a bit of manipulation will match the fields in my datastore ...
0
votes
1answer
51 views
NOT IN sql-like query google app engine not working [duplicate]
how to turn this:
Contact.gql('WHERE email IN :1', emails)
emails is a list of emais like: ["foo@example.com", "foo2@example.com"]
into this:
Contact.gql('WHERE email NOT IN :1', emails)
it ...

