Metadata-Version: 2.1
Name: Tavin
Version: 1.0.1
Summary: A concise application framework.
Home-page: https://github.com/lemonorangeapple/Tavin
Author: lemonorangeapple
Author-email: jcj1947725596@hotmail.com
License: MIT
Description: # Tavin
        
        一个简洁而不简单的应用框架。
        > A concise yet not simple application framework.
        
        使用方式：
        > Usage:
        
        ```python
        from Tavin import *
        
        app = Tavin(title = "Tavin")
        
        def index():
            return '123'
        
        app.add_url_rule('/', index)
        
        app.run()
        ```
Keywords: web framework
Platform: UNKNOWN
Requires-Python: >=3
Description-Content-Type: text/markdown
