Build elegant, modular web applications with FastAPI ergonomics and enterprise-grade architecture
A modern framework designed for developers who value clean architecture and rapid development
Plug-and-play architecture with dependency injection. Add only what you need - web, frontend, database, or custom modules
Integrated Tailwind 4 + DaisyUI 5 + Vite setup with hot reload. Beautiful, responsive UIs out of the box
FastAPI-style decorators with enterprise patterns. Type-safe, async-first, and production-ready from day one
Join developers building the next generation of Python web applications
Subscribe to NewsletterInstall myfy and create your first application with just a few lines of code
pip install myfy
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())
uv run myfy run
# or
python app.py
Ready to build something amazing?