This is a project for educational purposes only. It is not intended to be used in production.
This is a mini framework for building web applications in Python.
# main.py
from mini_framework import Application
from mini_framework.responses import PlainTextResponse
app = Application()
@app.get("/")
def index():
return PlainTextResponse("Hello, World!")
It is inspired by aiogram, starlette and fastapi
You need to install gunicorn or any other WSGI server to run the application.
$ gunicorn main:app