#!/usr/bin/env python """web.py: makes web apps (http://webpy.org)""" from __future__ import generators __version__ = "0.31" __author__ = [ "Aaron Swartz ", "Anand Chitipothu " ] __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