Metadata-Version: 1.1
Name: Axe
Version: 0.0.4
Summary: An Extendable Python Web Framework
Home-page: https://github.com/soasme/axe
Author: Ju Lin
Author-email: soasme@gmail.com
License: MIT License
Description: 
        - What is Axe?
        
        Axe is an extremely extendable web framework for Python based on `Werkzeug`.
        It help developer keep project easy to extend and test when project grows.
        
        Unlike Flask, there is no **Thread-Local** variables like `flask.request`, `flask.g`.
        All variable are injected into view function through function name inspired by `py.test fixture`.
        
        **Warning**: It's still experimental and has many buggy.
        
        - Example
        
            from axe import Axe
            import os
            app = Axe()
        
            @app.ext
            def config():
                return {'system': os.name}
        
            def index(config):
                return config.get('system', 'Unknown')
        
            app.build({'/': index})
        
            if __name__ == '__main__':
                app.run_simple()
        
        
        - Where can I get help?
        
        You can ask any question in [Github Issue](https://github.com/soasme/axe/issues)  :)
        Read documentation here: http://axe.rtfd.org
        
Keywords: Web frameword
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
