Metadata-Version: 1.1
Name: pylw
Version: 0.1.5
Summary: The Python Lightweight Web Framework
Home-page: http://github.com/michaelgugino/pylw
Author: Michael Gugino
Author-email: mike@funwithlinux.net
License: Apache
Description: pylw
        ======
        Python Lightweight Webframework.
        
        Usage
        ~~~~~~~
        Please see main.py on github.com for usage.
        
        This is a somewhat useful web framework.
        
        It's meant to be fast, and to do very little.
        
        It works with WSGI servers.
        
        Features
        ~~~~~~~~~~
        URL Routing, Cookies, Cookie signing (with itsdangerous), Allows headers to be
        easily added, adds cookies and content length to headers automatically when
        the response is returned.
        
        No template engine is supplied, no ORM, no 'session' handling.  That's up to the
        dev.  This framework handles the most basic of tasks.
        
        Unicode support...none.
        ~~~~~~~~~~~~
        We also don't support python3 at this time.  Unicode may or may not work for
        you, I honestly don't know.  If it doesn't impact performance much, it might be
        added in the future.
        
        Complexity...zero.
        ~~~~~~~~~~~~
        
        Some C code has been included to speed up query parsing and URL routing.
        
        The C code for query parsing is much faster than the corresponding Python code,
        however it does not support URL encoded characters, just strings.  Since I
        anticipate the vast majority of GET requests to not use non-alphanumeric
        characters, it's not high on my priority list.  The characters don't seem to
        crash the software or cause problems, but they will just appear as-is instead
        of decoded.
        
        Cython support
        ~~~~~~~~~~~~
        If you have Cython installed, this package will compile modules into C code.
        This improves performance greatly, especially when using CRouter for URL
        routing.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: C
