Metadata-Version: 2.1
Name: BunnyPy
Version: 0.0.9
Summary: Lightweight Python Web Framework
Home-page: https://github.com/ivanlulyf/bunnypy
Author: IvanLuLyf
Author-email: me@ivanlu.cn
License: MIT
Description: # BunnyPy
        a Lightweight Python Web Framework
        
        ![PyPI](https://img.shields.io/pypi/v/bunnypy.svg?style=flat-square)
        ![Downloads](https://img.shields.io/pypi/dm/bunnypy.svg?color=brightgreen&style=flat-square)
        ![License](https://img.shields.io/pypi/l/bunnypy.svg?color=blue&style=flat-square)
        
        ## Installation
        
        ```shell
        pip install bunnypy
        ```
        
        ## Simple Usage
        
        > hello.py
        
        ```python
        from bunnypy import Bunny
        
        app = Bunny()
        
        @app.controller
        class IndexController:
            def ac_index(self):
                return 'Hello World'
        
        if __name__ == '__main__':
            app.run()
        ```
        
        
Platform: any
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
