Week 3 — 11 / 37

Web Servers: Python Built-In

By default, when Apache receives an HTTP request, it looks for files on the local filesystem that match the URL path and returns them to the web browser.

We can get a similar effect (though not intended for production) with Python's built-in http module:

python3 -m http.server