Modern Python
Web Framework

Build elegant, modular web applications with FastAPI ergonomics and enterprise-grade architecture

Python 3.12+
Lightning Fast
Fully Modular
Tailwind + Vite

Why Choose myfy?

A modern framework designed for developers who value clean architecture and rapid development

Modularity

Plug-and-play architecture with dependency injection. Add only what you need - web, frontend, database, or custom modules

DI Container

Frontend Module

Integrated Tailwind 4 + DaisyUI 5 + Vite setup with hot reload. Beautiful, responsive UIs out of the box

Tailwind 4
DaisyUI 5
Vite 7

Modern

FastAPI-style decorators with enterprise patterns. Type-safe, async-first, and production-ready from day one

Python 3.12+
Type Safe
Async

Join developers building the next generation of Python web applications

Subscribe to Newsletter

Get Started in Seconds

Install myfy and create your first application with just a few lines of code

Installation

pip install myfy

Minimal Application

app.py
from myfy.core import Application
from myfy.web import WebModule, route
from myfy.frontend import FrontendModule

# Create application
app = Application()
app.add_module(WebModule())
app.add_module(FrontendModule(auto_init=True))

# Define routes
@route.get("/")
async def home():
    return {"message": "Welcome to myfy!"}

if __name__ == "__main__":
    import asyncio
    asyncio.run(app.run())

Run Your App

uv run myfy run
# or
python app.py

Ready to build something amazing?