Mini-Django: Single file django project for instant gratification.(readevalprint.github.com)
readevalprint.github.com
Mini-Django: Single file django project for instant gratification.
http://readevalprint.github.com/mini-django/
3 comments
I never would have thought a whole django app to be that small. But then, the second you start to add routes, views, helpers, etc. it quickly become exactly like the "standard" django.
If this interests you take a look at django-wsgi which enables you to do the same things.
or, look into Flask or Tornado which do this with less LOC by default. :)
http://flask.pocoo.org/ http://www.tornadoweb.org/
http://flask.pocoo.org/ http://www.tornadoweb.org/
From what I can see, you can't make a usable app from this. I would prefer to use flask or pylons for developing an app.