Metadata-Version: 2.1
Name: iapp
Version: 2019.9.2.14.3.59
Summary: description
Home-page: https://github.com/Jie-Yuan/tql-App
Author: JieYuan
Author-email: 313303303@qq.com
Maintainer: JieYuan
Maintainer-email: 313303303@qq.com
License: MIT
Description: <h1 align = "center">:rocket: RestfulApi :facepunch:</h1>
        
        ---
        
        ## Install
        ```bash
        pip install iapp -U
        ```
        ## Usage
        ```python
        import jieba
        from iapp import App
        
        pred1 = lambda **kwargs: kwargs['x'] + kwargs['y']
        pred2 = lambda x=1, y=1: x - y
        pred3 = lambda text='小米是家不错的公司': jieba.lcut(text)
        
        app = App(debug=True)
        app.add_route("/f1", pred1, version="1")
        app.add_route("/f2", pred2, version="2")
        app.add_route("/f3", pred3, version="3")
        
        app.run()
        ```
Keywords: tool wheel,yuanjie,utils
Platform: all
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation
Requires-Python: >=3.6
Description-Content-Type: text/markdown
