Fastest, easiest and simple web framework for Python.
Project description
Retic.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:
# Get the latest stable release of Retic
$ pip install -U retic
Simple rest api example in 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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
retic-0.0.2.tar.gz
(7.3 kB
view hashes)