vc .

English

Vase AI
Flask, but smarter and simpler.

Vase is a minimal web framework inspired by Flask — but trimmed down to only what you need. Perfect for building microservices, APIs, or AI agents that require clean backend logic, fast.

Why Vase over Flask?

Flask-Compatible Syntax

Vase uses Pythonic syntax similar to Flask, with fewer lines and no boilerplate.

Minimal Code Output

Get fully working apps without bloated files. Vase focuses on clean logic first.

Modular & Scalable

Despite being simple, Vase apps follow modular folder patterns and separation of concerns.

Auto API Docs

All endpoints come with generated docs so you can use or share them instantly.

See the Difference

Flask

from flask import Flask

app = Flask(__name__)

@app.route("/")
def home():
    return "Hello, world!"

if __name__ == "__main__":
    app.run(debug=True)

Vase

import vase
app = Vase()
def home():
    return "Hello, world!"
app.add("/, home)
vase.run()

Start shipping Flask-style backends faster.

Whether you're building microservices or AI-powered tools, Vase helps you skip setup and get straight to the code.