OpenSecurity/install/web.py-0.37/build/lib/web/__init__.py
author om
Mon, 02 Dec 2013 14:02:05 +0100
changeset 3 65432e6c6042
permissions -rwxr-xr-x
initial deployment and project layout commit
     1 #!/usr/bin/env python
     2 """web.py: makes web apps (http://webpy.org)"""
     3 
     4 from __future__ import generators
     5 
     6 __version__ = "0.37"
     7 __author__ = [
     8     "Aaron Swartz <me@aaronsw.com>",
     9     "Anand Chitipothu <anandology@gmail.com>"
    10 ]
    11 __license__ = "public domain"
    12 __contributors__ = "see http://webpy.org/changes"
    13 
    14 import utils, db, net, wsgi, http, webapi, httpserver, debugerror
    15 import template, form
    16 
    17 import session
    18 
    19 from utils import *
    20 from db import *
    21 from net import *
    22 from wsgi import *
    23 from http import *
    24 from webapi import *
    25 from httpserver import *
    26 from debugerror import *
    27 from application import *
    28 from browser import *
    29 try:
    30     import webopenid as openid
    31 except ImportError:
    32     pass # requires openid module
    33