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.
Vase uses Pythonic syntax similar to Flask, with fewer lines and no boilerplate.
Get fully working apps without bloated files. Vase focuses on clean logic first.
Despite being simple, Vase apps follow modular folder patterns and separation of concerns.
All endpoints come with generated docs so you can use or share them instantly.
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()Whether you're building microservices or AI-powered tools, Vase helps you skip setup and get straight to the code.