Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 396 Bytes

File metadata and controls

12 lines (10 loc) · 396 Bytes

Simple Webserver

A simple webserver written in Python, for educational use only. For a more full featured webserver consider the Basic HTTP server included in the Python standard library.

# Launch a webserver running on port 8000
from .server import SimpleServer
SimpleServer(8000).serve_forever()