Python File Server

You can run one of the following command to share the current directory through HTTP:

$ python3 -m http.server
$ python -m python -m SimpleHTTPServer

If port number is important:

$ python3 -m http.server [port_number]
$ python -m python -m SimpleHTTPServer [port_number]

for more information:

$ python3 -m http.server --help