Skip to content

This is a mini framework for building web applications in Python.

License

Notifications You must be signed in to change notification settings

Vladyslav49/mini_framework

Repository files navigation

Disclaimer

This is a project for educational purposes only. It is not intended to be used in production.

Mini Framework

This is a mini framework for building web applications in Python.

Usage

# main.py
from mini_framework import Application
from mini_framework.responses import PlainTextResponse

app = Application()


@app.get("/")
def index():
    return PlainTextResponse("Hello, World!")

Details

It is inspired by aiogram, starlette and fastapi

Running the application

You need to install gunicorn or any other WSGI server to run the application.

Example using gunicorn

$ gunicorn main:app

About

This is a mini framework for building web applications in Python.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages