Plinx is an experimental, minimalistic, and extensible web framework and ORM written in Python.
Install from git source:
$ pip install git+https://github.com/dhavalsavalia/plinx.git
from plinx import Plinx
app = Plinx()
@app.route("/")
def index(request, response):
response.text = "Hello, world!"
- Web Framework
- Routing
- Explicit Routing Methods
- Parameterized Routes
- ORM