Version 0.2.0 - Now with Watch & Discord

The Full-Stack Framework
Developers Love to Build With

FlaskIt combines the power of Flask with elegant routing, MVL architecture, and built-in monitoring. Build modern web applications without the complexity.

terminal
# Install FlaskIt
pip install flaskit-love

# Create a new project
flaskit new my-awesome-app
cd my-awesome-app

# Run the development server
flaskit serve

✓ Server running at http://localhost:5000

Why Developers Love FlaskIt

Everything you need to build modern web applications, out of the box

No Decorators

Clean routing without @ decorators. Define all routes in one place with elegant syntax inspired by modern frameworks.

🏗️

MVL Architecture

Model-View-Logic pattern for organized code. Separation of concerns that scales with your project.

🔍

FlaskIt Watch

Built-in monitoring dashboard. Real-time metrics, routes, logs, and system health at /_watch.

📢

Discord Notifications

Send beautiful notifications to Discord webhooks. Perfect for alerts, errors, and user events.

🎨

Modern CLI

Generate complete projects instantly with flaskit new. Includes templates, routing, and full structure.

🔧

Developer Friendly

Hot reload, auto .env loading, data loader, and more. Built with developer experience in mind.

Get Started in Seconds

FlaskIt provides everything you need to start building immediately. No complex configuration, no boilerplate code.

Complete project structure
Built-in authentication templates
Ready-to-use components
Database models & services
View Full Documentation
routes/web.py
from flaskit import Route
from app.logic.users import UserLogic

def register_routes(app):
    route = Route()
    
    # Views
    route.view('/', 'home.index').name('home')
    
    # API Routes
    route.get('/api/users', UserLogic.get_all)
    route.post('/api/users', UserLogic.create)
    
    return route
50KB
Lightweight
3
Core Dependencies
0
Configuration Needed
100%
Developer Love

Ready to Build Something Amazing?

Join developers who chose FlaskIt for their next project