Tagged Questions
0
votes
1answer
9 views
dynamic dropdown list in python GAE
I am using GAE with Python for building an app. I have 2 dropdowns 'applications' and 'versions' in my firstpage( Index.html). I am able to populate the first dropdown dynamically from the database. ...
0
votes
1answer
17 views
Debugging GAE in Python Tools for Visual Studio
I'm able to run my Google App Engine webapp2 app using Python Tools for Visual Studio 2012 without issues after following this tutorial, and even step through the server initialization code, but I ...
1
vote
1answer
30 views
Moving from django to webapp2 - seeking guidance
Our team is making use of webapp2 / jinja templates for our web applications on appengine. We have one legacy application based upon the django framework.
Moving forward we want to start porting ...
0
votes
1answer
35 views
Hello World Google App Engine not working
I'm following this simple tutorial to create a hello world app, but on testing ("Starting the development server") it fails to run. When I click on "logs" in the launcher, I have
in ...
0
votes
2answers
31 views
Approach for efficient search within a result set
Short Version
I would like to efficiently perform a full text search within an arbitrary set of objects in my database. All objects will be indexed in a search engine.
My idea
I'm planning on ...
1
vote
2answers
28 views
What happens if a HTTP connection is closed while AppEngine is still running
The real question is if Google App Engine guarantees it would complete a HTTP request even if the connection is no longer existed (such as terminated, lost Internet connection).
Says we have a python ...
0
votes
1answer
32 views
Pylons Google App Engine installation raise an error
I used latest version of GAE.
I try install Pylons v1.0 with this help article:
http://countergram.com/pylons-google-app-engine
paster serve --reload development.ini
work fine
Apache2+wsgi work fine
...
1
vote
1answer
41 views
Sorting results by 'order' in google app engine causing an error
I have a property in GAE model, which is of DATETIME type. When I try to sort the results of a query by this property, the following error is raised:
TypeError: issubclass() arg 1 must be a class
...
1
vote
1answer
58 views
Highly variable performance on datastore and memcache operations (GAE)
I am trying to optimize performance on GAE but once I deploy I get very unstable results. It's really hard to see if each optimization actually works because datastore and memcache operations take a ...
0
votes
0answers
21 views
Google App Engine Launcher slow app response
When I try to access a local app from localhost:8080 using the GAE launcher, it takes about 42 seconds for a response every time very consistently. Even for the simplest apps like the hello world ...
0
votes
1answer
16 views
Dynamically loading BlobProperty images on Appengine
First, I'm extremely new to coding and self-taught, so models / views / DOM fall on deaf ears (but willing to learn!)
So I saved images into a database as blobs (BlobProperty), now trying to serve ...
0
votes
2answers
41 views
get_by_id doesn't seem to get by id
There is an entity in the Questions table with ID 6544293208522752.
When I try to get this back using Questions.get_by_id(6544293208522752) it returns None.
------ Update
To get the parent, ...
0
votes
0answers
14 views
Local AppEngine data setup/teardown for acceptance/integration testing (Py runtime)
We have a restful web service running on GAE which we would like to acceptance and integration test (we already have thorough unit tests). The biggest obstacle, by far, is being able to setup/teardown ...
0
votes
2answers
30 views
App Engine to GCS | Uploading Issue
I have some files that I'm receiving from the Evernote API (via getResource) and writing to Google Cloud Storage with the following code:
gcs_file = gcs.open(filename, 'w', content_type=res.mime,
...
0
votes
1answer
26 views
“getaddrinfo() argument 1 must be string or None” error starting dev_appserver.py on Linux
I'm getting re-started with App Engine after not having used it in a while. I'm using the 64-bit Linux Go runtime, version 1.8.1.
I believe I'm following the steps from the documentation correctly, ...