OpenSecurity/install/web.py-0.37/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
om@3
     1
#!/usr/bin/env python
om@3
     2
"""web.py: makes web apps (http://webpy.org)"""
om@3
     3
om@3
     4
from __future__ import generators
om@3
     5
om@3
     6
__version__ = "0.37"
om@3
     7
__author__ = [
om@3
     8
    "Aaron Swartz <me@aaronsw.com>",
om@3
     9
    "Anand Chitipothu <anandology@gmail.com>"
om@3
    10
]
om@3
    11
__license__ = "public domain"
om@3
    12
__contributors__ = "see http://webpy.org/changes"
om@3
    13
om@3
    14
import utils, db, net, wsgi, http, webapi, httpserver, debugerror
om@3
    15
import template, form
om@3
    16
om@3
    17
import session
om@3
    18
om@3
    19
from utils import *
om@3
    20
from db import *
om@3
    21
from net import *
om@3
    22
from wsgi import *
om@3
    23
from http import *
om@3
    24
from webapi import *
om@3
    25
from httpserver import *
om@3
    26
from debugerror import *
om@3
    27
from application import *
om@3
    28
from browser import *
om@3
    29
try:
om@3
    30
    import webopenid as openid
om@3
    31
except ImportError:
om@3
    32
    pass # requires openid module
om@3
    33