Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

appengine_config.py in Google App Engine

It seems impossible to find any useful info about it, What does that file do? what are some common usage of that file?

like image 363
Johnny Avatar asked Jan 24 '11 15:01

Johnny


People also ask

What is the current preferred version of Python for Google App Engine?

Python 3.10 is now generally available.


2 Answers

There are docs now: http://code.google.com/appengine/docs/python/tools/appengineconfig.html

One of real usages is here in "configuring EngineAuth" section: https://github.com/scotch/engineauth

like image 186
Markus von Broady Avatar answered Oct 21 '22 08:10

Markus von Broady


It is a config file used by parts of Appengine, notably Appstats. You can read more about in by reading some code in the SDK, this thread has some links to the relevant code.

Star issue 4384 if you would like docs about it.

like image 22
Robert Kluin Avatar answered Oct 21 '22 09:10

Robert Kluin