File: __init__.py

package info (click to toggle)
webpy 1%3A0.62-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 640 kB
  • sloc: python: 6,880; makefile: 153; sh: 1
file content (33 lines) | stat: -rw-r--r-- 806 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python3
"""web.py: makes web apps (http://webpy.org)"""

from . import (  # noqa: F401
    db,
    debugerror,
    form,
    http,
    httpserver,
    net,
    session,
    template,
    utils,
    webapi,
    wsgi,
)
from .application import *  # noqa: F401,F403
from .db import *  # noqa: F401,F403
from .debugerror import *  # noqa: F401,F403
from .http import *  # noqa: F401,F403
from .httpserver import *  # noqa: F401,F403
from .net import *  # noqa: F401,F403
from .utils import *  # noqa: F401,F403
from .webapi import *  # noqa: F401,F403
from .wsgi import *  # noqa: F401,F403

__version__ = "0.62"
__author__ = [
    "Aaron Swartz <me@aaronsw.com>",
    "Anand Chitipothu <anandology@gmail.com>",
]
__license__ = "public domain"
__contributors__ = "see http://webpy.org/changes"