Search⌘ K
AI Features

Serving up a Directory with Python

Explore how to use Python’s built-in HTTP server module to easily serve a directory full of files over the network. Understand the setup process for sharing files or testing web apps locally without needing to install a separate web server.

We'll cover the following...

Serving directories

If we have a directory full of files and we want to serve them over the network, we don’t have to install and configure a web server if we already have Python installed. Python has a built-in web server ...