PythonFrost Documentation

A minimal Python web framework built from scratch.

Getting Started

Install Pythonfrost:

pip install Pythonfrost

Quick example:

from pythonfrost import Server, route


route("/")
def home():
    return "Hello, World!"

Server()

Documentation