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
47 views

Play video in html video tag that is stored in the GAE blobstore python

I have a simple video sharing website that can upload videos and store them in the datastore as a blobReferenceProperty(). Now I am querying the datastore for that video and trying to imbed/play it in ...
1
vote
3answers
55 views

Serving Images with Google app engine

I'm trying to make it so that when someone uploads a picture(successfully), its redirected to a permalink with the uploaded image showing. Here is what I've tried so far. import webapp2 import os ...
0
votes
1answer
29 views

GAE: planning for exportability and relational databases

I'm building a web app in GAE that needs to make use of some simple relationships between the datastore entities. Additionally, I want to do what I can from the outset to make import and exportability ...
0
votes
1answer
20 views

Datastore parent child of the same entity

I would like to have a datastore entity with a reference property back to the same entity. For example: class Person(db.Model): name = db.StringProperty(), parent = ...
0
votes
1answer
47 views

Iterate over GQL query fields

I am trying to implement an 'Edit' function for entities in a google app engine datastore. So if a key is specified for an datastore entity I would like to fill a form with values associated with this ...
0
votes
2answers
37 views

Trying to increase the performance of my GAE app

I am trying to use memcache to improve the performance. Here is my model: class ABC(db.Model): some_property = db.StringProperty() # more properties class XYZ(db.Model): another_property = ...
0
votes
0answers
28 views

How to store blobs from multiple tables in Blobstore

As I understand (and I could be wrong) blobs residing in different tables all end up in one Blobstore. If that is the case, I was going to have a crossreference table, so I can purge orphan blobs. ...
0
votes
3answers
116 views

How to define Key Name in Datastore GAE Python?

OS Win7, GAE 1.7.6, Python 2.7.3, still learning GAE.. Working on project, which need to have input form to extend its content(name,email,phone..) with defined Key Name in Datastore, preferably to ...
0
votes
0answers
63 views

Google Datastore NotSavedError() on WTForms form.populate_obj() with Child Collection

Summary wtform.populate_obj(model) raises NotSavedError() on GAE Datastore db.Model's one-to-many child collections because the model isn't saved yet. Background I am a newbie at Python ...
0
votes
2answers
71 views

Generate URL to store image in Datastore Blob

I am a newbie to Python and Google App Engine. I need to store an image in GAE Datastore (not blobstore - there are lot of examples to store in blobstore and I have got it working in blobstore). The ...
2
votes
1answer
55 views

Java equivalent for Python app-engine model/entity representation and operation

Consider the following app-engine models in python. class Account(ndb.Model): email = ndb.StringProperty() nickname = ndb.StringProperty() phone = ndb.IntegerProperty() date = ...
1
vote
1answer
29 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 ...
2
votes
1answer
74 views

EndpointsModel vs ndb.Model

So I stumbled on EndpointsModel as a means of creating models. When I look online, there is basically no tutorial about it. For people who have used it, what's the advantage? Instead of ndb.Model I ...
-2
votes
1answer
51 views

Value Error Invalid literal for int() with base 10 [closed]

I'm getting the following error when I enter 1933 as the copyright_year in my form: File "C:\programming_google_app_engine_repo\datastore\main.py", line 29, in post book.copyright_year = ...
1
vote
1answer
41 views

Pass enum to ndb.Model field in python

I find What's the best way to implement an 'enum' in Python? for how to create enum in python. I have a field in my ndb.Model that I want to accept one of my enum values. Do I simply set ...
3
votes
2answers
167 views

ndb.BlobProperty vs BlobStore: which is more private and more secure

I have been reading all over stackoverflow concerning datastore vs blobstore for storing and retrieving image files. Everything is pointing towards blobstore except one: privacy and security. In the ...
0
votes
2answers
49 views

difference between DateProperty and DateTimeProperty

In layman's term, what's the difference between ndb.DateProperty and ndb.DateTimeProperty? When would I use which? For example, my intent is to use either with the param auto_now_add=True.
1
vote
2answers
124 views

app-engine endpoint method taking user object

I have an endpoint method that requires a user object. Would I do the following? It seems a bit strange since I could get user using endpoints.get_current_user() @endpoints.method(FriendListRequest, ...
1
vote
1answer
57 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: ...
2
votes
2answers
110 views

GAE ndb design, performance and use of repeated properties

Say I have a picture gallery and a picture could potentially have 100k+ fans. Which ndb design is more efficient? class picture(ndb.model): fanIds = ndb.StringProperty(repeated=True) ... ...
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 ...
1
vote
2answers
79 views

When to transition from Datastore to NDB?

From what I have heard, it is better to move to NDB from Datastore. I would be doing that eventually since I hope my website will be performance intensive. The question is when. My project is in its ...
0
votes
1answer
89 views

DATE COMPARISON in GOOGLE APP ENGINE DATASTORE / PYTHON

I am trying to fetch records after a certain date. I used the below in code: qstr = "SELECT * FROM Comment where date > '"+str(max_date)+"' order by date desc limit 10" comments = ...
0
votes
1answer
43 views

How do I iterate through a dictionary and assign the value of each key to the matching property in another object?

I am trying to iterate over a dictionary and an entity. Where the dict key matches the entity property I want to assign the key's value to be the value of the property. My model code is: class ...
0
votes
0answers
46 views

WTforms: how to use them on GAE after migration from Python 2.5 to Python 2.7

I've just updated an app that I have uploaded on GAE, from Python 2.5 to Python 2.7. After several modifications: app.yaml main.py (now main.app) from cgi to wsgi I've just realized that ...
0
votes
1answer
77 views

Most cost-effective GAE app settings?

A GAE python webapp I got splits its cost about evenly into 1) front instances and 2) data reads. What I can think of reducing the costs for data reads is store more items with memcache. But I don't ...
0
votes
1answer
74 views

Getting a pull task queue to work with cron

I'm new to python and GAE and I've been trying to learn how to work with tasks queues, cron, and datastore for my own project through examples but haven't had much luck at all. I trying to modify the ...
0
votes
0answers
91 views

Transactional Task Enqueueing vs. task queue vs. deferred?

I'm a newbie to python and GAE and haven't been able to find a clear explanation or example of all these three options. I found a threading example here ...
2
votes
1answer
135 views

Check If Entity in Datastore exists in GAE Python

I'm trying to create (something like) an invoice number generator. But, since Invoices may be zero or more when starting a business, how do you know if an entity exists? query = "SELECT loanNumber ...
0
votes
1answer
109 views

local dev server and app engine python utf 8

In building a website in GAE. I did most of the work in the dev server where I have a database. In my dev server I inserted the entities in UTF-8 because if I don't the values are not writen. However, ...
0
votes
3answers
167 views

local GAE datastore does not keep data after computer shuts down

On my local machine (i.e. http://localhost:8080/), I have entered data into my GAE datastore for some entity called Article. After turning off my computer and then restarting next day, I find the ...
0
votes
1answer
64 views

In Python and GAE: How to permanently cache data from a Datastore across HTTP GET requests

I am developing an online product using GAE and Python. Certain data in my Model (i.e. Datastore) are constant across Contexts: which means for all incoming HTTP GET requests, those data don't change. ...
-3
votes
1answer
66 views

GQL query to get data out for a particular user when user name entered on the web page…? [closed]

what i want is that when the user enters his name on the form.html page the messages for that user to be displayed on the postmessage.html page and a choice for the user to enter more data or delete ...
0
votes
1answer
249 views

Google App Engine Datastore / NoSQL example with ancestor queries

I'm very used to SQL, and not the NoSQL paradigm of App Engine Datastore, so I had to write a piece of example code to understand how to do ancestor queries correctly. Thought I'd share it with you ...
0
votes
1answer
80 views

ndb.StructuredProperty does not save the key?

If we have the usual blog post webapp where many users can post blog entries, but we also want to retrieve all entries from a single user, I would imagine the following data structure: class ...
1
vote
4answers
270 views

Deleting Blobstore orphans

What is the most efficient way to delete orphan blobs from a Blobstore? App functionality & scope: A (logged-in) user wants to create a post containing some normal datastore fields (e.g. name, ...
0
votes
1answer
47 views

How to query the datastore by kind name as string using metadata

This will not work, but will illustrate my question: query = "my_model".all() print query.count()
2
votes
1answer
290 views

GAE - get_uploads: self.request.POST does not exist but self.request.request.POST does. get_uploads returns empty array

Trying to upload to my local host. Here's the HTML bit: <form enctype="multipart/form-data" method="POST" ...
0
votes
2answers
260 views

Write/Read with High Replication Datastore + NDB

So I have been reading a lot of documentation on HRD and NDB lately, yet I still have some doubts regarding how NDB caches things. Example case: Imagine a case where a users writes data and the app ...
0
votes
2answers
69 views

Appengine error object has no attribute '_key'

I have a GAE database entity that looks like this: class Notification(db.Model): alert = db.StringProperty() type = db.StringProperty() status = db.StringProperty(default="unread", ...
0
votes
1answer
83 views

NDB projection & caching questions

I have a couple of doubts regarding how NDB projection queries work and how the caching behaves behind the scenes So given a model similar to: class Users(ndb.Model): user_name = ...
2
votes
2answers
172 views

NDB projection of instance Key or ID

I'm using NDB on GoogleAppEngine and I want to retrieve a instance Key or ID by passing an e-mail into the query. My Model looks something like this: class Users(ndb.Model): user_name = ...
2
votes
1answer
147 views

Regularly updated data and the Search API

I have an application which requires very flexible searching functionality. As part of this, users will need have the ability to do full-text searching of a number of text fields but also filter by a ...
0
votes
3answers
71 views

Selecting only the latest post for each url

I have an app on GAE that lets user add\edit posts to any arbitrary path (like a wiki). I am storing all the posts in a single table. The table is structured as follows: class WikiPosts(db.Model): ...
0
votes
1answer
109 views

Overide __setattr__ on GAE db.Model python 2.7

GAE db.Model cannot store a list of tuples. Thus I need to save the list as a json.dumps string and json.loads the string when I pull the list back out of the entity. I would like to automate this. ...
0
votes
1answer
146 views

What are the limitations of using Django nonrel with Google App Engine?

I understand that full django can be used out of the box with CloudSQL. But I'm interested in using HRD. I'd like to learn more about what percentage of django can be used with nonrel. Does middleware ...
1
vote
2answers
233 views

Appengine Query Offset - Not For Paging - EDIT With Memcache?

I have an application where there are a list of items that my users will page through. I have handled paging through an index field (I needed it for other things eitherway so I figured why not). My ...
8
votes
2answers
591 views

Reliable way to execute thousands of independent transaction?

I am reaching a bottleneck on my application and having a tough time finding a solution around it. A little background: My app pings an API to gather information on hundreds of thousands of items ...

1 2