Questions tagged [google-app-engine-python]

Python language version of Google App Engine

Python Runtime Environment for Google App Engine

Useful links:

703 questions
0
votes
1 answer

Send email flask google app engine - Invalid sender format

I'm trying to make a simple flask contact form on google app engine. I'm new to both. There are two links which I have used to help…
Jimmy
  • 12,087
  • 28
  • 102
  • 192
0
votes
1 answer

How do I make sure imported files are uploaded to Google App Engine?

I have an application whose entry point is defined in Emily.py. Emily.py imports EmilyBlogModel.py and EmilyBlogModel.py imports EmilyTreeNode.py. When using appcfg.py to upload this app to Google App Engine, how do I make sure that the all my files…
0
votes
0 answers

Access Token validation for OAuth2 flow with Service Accounts in Google App Engine

I am using the SignedJwtAssertionCredentials Python client API class to generate my app access token. I get a token only once in my app when the first request arrives. Then I use that token in every build or execute a service. I suppose that token…
0
votes
1 answer
0
votes
1 answer

Boto+GoogleAppEnginer: "Unable to fetch URL: http://cloudfront.amazonaws.com/2010-11-01/distribution/". Connection refused

I am running these code inside a google app engine project. from boto import cloudfront con = cloudfront.CloudFrontConnection( AWS_ACCESS_KEY, AWS_SECRET_KEY ) distro_info = con.get_distribution_info(DOWNLOAD_DIST_ID) When it executes to…
Anthony Kong
  • 37,791
  • 46
  • 172
  • 304
0
votes
0 answers

Search on google app engine

I am using google app engine search api for searching.I want to merge the results of multiple queries into one.How do I do that in python.
0
votes
1 answer

How to setup a Google Managed VMs Custom Runtime with App Engine service APIs

The default google-managed-vms python runtime is google/appengine-python27 a docker image based on google/debian:wheezy How to setup a custom python runtime that would extend debian:testing and would support: Datastore Memcache Task Queues…
0
votes
1 answer

Install Google Cloud Storage Client Library with pip -- Python GAE

I am trying to use pip to install the Google Cloud Storage Client Library for Google App Engine. I appreciate any hints you may have. My documentation says to enter this in the command prompt: pip install GoogleAppEngineCloudStorageClient -t…
0
votes
1 answer

Tuple index out of range while returning a Collection Class

I'm working on a Google App Engine project using Python and MySqlDB, and the App Engine requires me to return a Message object to the endpoint. This is how the returning class looks: class ReturningClass(messages.Message): """Return Column…
BoreBoar
  • 2,619
  • 4
  • 24
  • 39
0
votes
1 answer

GoogleAppEngine error directory not found

Ive been working on get a proxy working for when im school, to access sites that i use alot for work but my school dont like.. This is the error it comes up with when i try to upload the files to googles app engine.. C:\Program Files…
0
votes
1 answer

Invalid syntax error in google python api

I am new to google python api client.I am learning from https://developers.google.com/api-client-library/python/start/get_started.I want to make an api which converts python object into JSON data and sends to a servlet. The python code of file…
0
votes
1 answer

Google App Engine Python Search Api's Location-based queries (Geosearch) Issues

I have implemented GAE's Python Search Api and am trying to query based on distance from given geopoint. My query string is: "distance(location, geopoint(XXX, YYY)) < ZZZ". However, for some reason on the production server, this query string is…
0
votes
1 answer

GAE filter by missing repeated property

I'm trying to query for all objects that have no value for a given repeated property. For example imagine you have the following model: class Foo(ndb.Model): bar = ndb.IntegerProperty(repeated=True) and you wanted all the instances of Foo where…
0
votes
2 answers

App engine tasks are not executed in defined target

I am attempting to refactor some of my sites code use modules and no matter what I try, I cannot seem to get the push tasks to execute where I want them. The basic structure of this piece of the app is like this... User uploads a fairly large and…
Ryan Parrish
  • 387
  • 2
  • 9
-1
votes
2 answers

Flask-login users are being logged out at random when app is live (not when run local)

I have a Flask app, with user Authentication. Its working fine when run in a venv but as soon as i deploy it as a google cloud app it starts logging users out at random, sometimes it can be minutes and other times it at one of the first…
1 2 3
46
47