Metadata-Version: 1.0
Name: redfox
Version: 1.2
Summary: WSGI request routing for Python objects
Home-page: http://code.google.com/p/python-redfox/
Author: Owen Jacobson
Author-email: owen.jacobson@grimoire.ca
License: UNKNOWN
Download-URL: http://code.google.com/p/python-redfox/downloads/list
Description: 
        Redfox provides a simple, declarative routing mechanism for creating
        WSGI entry points into applications. It's broadly similar to
        microframeworks like juno_ or CherryPy_.
        
        .. _juno: http://github.com/breily/juno/tree/master
        .. _CherryPy: http://www.cherrypy.org/
        
        Features
        --------
        
        1. It's tiny. The ``redfox`` package contains under 100 lines of code.
        Redfox builds heavily on the Werkzeug tools to implement its features,
        rather than re-reinventing the wheel.
        2. It's clean. The following is a valid Redfox application class::
        
        from werkzeug import Response
        from redfox import WebApplication
        from redfox.routing import get, post
        
        class Example(WebApplication):
        @get('/')
        def index(self, request):
        return Response("Hello, world!")
        
        3. It's minimal. Redfox does not impose a persistance mechanism, or a
        view mechanism. Bring your own, or create your own tools.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Paste
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
