[Web-SIG] A Python Web Application Package and Format

Ian Bicking ianb at colorstudy.com
Thu Apr 28 00:46:28 CEST 2011


On Wed, Apr 27, 2011 at 5:21 PM, Daniel Holth <dholth at gmail.com> wrote:

> I stumbled across https://apphosted.com as more web application package
> and format 'prior art'. It appears to be an App Engine competitor. According
> to their API documentation, their deployment format is an archive containing
> a single directory with your WSGI program and a metro.config. They put the
> database configuration in a settings.py written into the application's root
> with defined DB_URI, etc.
>

There's something that bothers me about using settings.py, though I guess
it's not that different from a YAML file or whatever, though with a
cleverness danger.  Conveniently you could do sys.modules['settings'] =
new.module('settings') and avoid ever making a real file.

Using the name "settings" *specifically* is likely to cause name clashes
with existing Django applications.

  Ian
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/web-sig/attachments/20110427/e1275859/attachment.html>


More information about the Web-SIG mailing list