bundled/webpy/web/__init__.py @ 5c274209a7ec webui
Merge the README changes and the review init.
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Wed, 21 Oct 2009 19:31:46 -0400 |
| parents | 7c9d165e0cd1 |
| children | (none) |
#!/usr/bin/env python """web.py: makes web apps (http://webpy.org)""" from __future__ import generators __version__ = "0.32" __author__ = [ "Aaron Swartz <me@aaronsw.com>", "Anand Chitipothu <anandology@gmail.com>" ] __license__ = "public domain" __contributors__ = "see http://webpy.org/changes" import utils, db, net, wsgi, http, webapi, httpserver, debugerror import template, form import session from utils import * from db import * from net import * from wsgi import * from http import * from webapi import * from httpserver import * from debugerror import * from application import * from browser import * import test try: import webopenid as openid except ImportError: pass # requires openid module