Serving up a Directory with Python
Learn how Python can be used to serve directories over the network.
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 ...