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()