Package web :: Package web
[hide private]
[frames] | no frames]

Source Code for Package web.web

 1  #!/usr/bin/env python 
 2  """web.py: makes web apps (http://webpy.org)""" 
 3   
 4  from __future__ import generators 
 5   
 6  __version__ = "0.34" 
 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  import test 
30  try: 
31      import webopenid as openid 
32  except ImportError: 
33      pass # requires openid module 
34