A minimal Python web framework built from scratch.
Install Pythonfrost:
pip install pythonfrost
Quick example:
from pythonfrost import Server, route route("/") def home(): return "Hello, World!" Server()