Metadata-Version: 1.1
Name: Shake
Version: 1.1.11
Summary: A web framework mixed from the best ingredients
Home-page: http://github.com/lucuma/Shake
Author: Juan-Pablo Scaletti
Author-email: juanpablo@lucumalabs.com
License: MIT license (http://www.opensource.org/licenses/mit-license.php)
Description: ========
        Shake
        ========
        
        ::
            from shake import Shake, Rule
        
            def hello(request):
                return 'Hello World!'
        
            urls = [Rule('/', hello),]
        
            app = Shake(urls)
        
            if __name__ == "__main__":
                app.run()
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
