Metadata-Version: 1.1
Name: PyTin
Version: 1.1
Summary: A CGI environment framework.
Home-page: http://pac-sci.homeip.net/index.cgi/swproj/pytin
Author: LeafStorm/Pacific Science
Author-email: pacsciadmin@gmail.com
License: UNKNOWN
Description: 
        PyTin is a CGI framework that provides shortcuts for application writers to
        focus less on common tasks and more on their application's functionality.
        
        Requests
        ========
        Requests take all the data that exists in different areas like environment
        variables and standard input, and puts it all into one, cleanly organized
        object.
        
        Responses
        =========
        Responses are file-like objects, but with convenience methods named ``w`` (with
        a newline) and ``wn`` (without one). They also have custom attributes for
        setting common HTTP headers like ``Content-Type`` and ``Location``.
        
        RQMods/RSMods
        =============
        These are applied to requests and responses. You pass a list of them as the
        ``rqmods`` and ``rsmods`` keyword arguments. They're not required, and PyTin
        doesn't even ship with any (yet), but they could be very helpful if you're in
        a situation where you'd need one.
        
        Bake
        ====
        Bake is the major function you need to know. It will publish your object,
        collect the environment variables, enable tracebacks if needed, and pass extra
        settings to your application. After your request has been returned, it will be
        compiled and returned.
        
        Prebake
        =======
        The prebake function is designed to allow extra security and lighter script
        files. It's a command-line-based wizard that produces a simple file that imports
        a function stored in a module and automatically bakes it.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.5
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
Requires: iotk
Provides: pytin
