Metadata-Version: 1.0
Name: spiderman
Version: 0.1.0
Summary: A wrapper around web.py to make it more like sinatra.
Home-page: http://pypi.python.org/pypi/spiderman/
Author: J. Random Hacker
Author-email: jrh@k17.org
License: LICENSE.txt
Description: =========
        Spiderman
        =========
        
        Spiderman is a wrapper around web.py to make it more like sinatra. Use it like this::
        
            #!env/bin/python
        
            from spiderman import *
        
            @get('/')
            def main_page():
                pass # main_page.haml in 'views' gets rendered.
        
            @get('/example')
            def example():
                # local vars get passed to example.haml template
                person = { 'name' : 'John', 'age' : 28 }
                return haml()
        
Platform: UNKNOWN
