Metadata-Version: 2.1
Name: retic
Version: 0.0.2
Summary: Fastest, easiest and simple web framework for Python.
Home-page: https://github.com/reticpy/retic
Author: Braian Staimer
Author-email: braianflorian@gmail.com
License: MIT
Download-URL: https://github.com/reticpy/retic/archive/0.0.2.tar.gz
Description: # Retic.<span></span>py
        
        Fastest, easiest and simplest web framework for Python.
        
        * Building secure and **fast** REST API Services with Python
        * A **easy** python web framework for beginners.
        * **Simple** integration with frontend frameworks to deploying a machine learning model in a modern web application.
        
        ## Installation
        
        Install and update using [Pip](https://pypi.org/):
        
        ```sh
        # Get the latest stable release of Retic
        $ pip install -U retic
        ```
        
        ### Simple rest api example in python
        ```python
        from retic import Router, App as app
        
        router = Router()
        router.get("/", lambda req, res, next: res.ok({"msg": "Welcome to Retic ^^"}))
        
        app.use(router)
        
        app.listen(
            use_reloader=True,
            use_debugger=True,
            port=1801,
            hostname="localhost"
        )
        ```
        
        ## Documentation
        In progress...
        
        ## License
        
        [MIT](LICENSE)
Keywords: PYTHON,WEB FRAMEWORK,MACHINE LEARNING WEB FRAMEWORK
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
