top of page
This is a guide on how to use SimpleHTTPServer
I'm using this method if i want to transfer a file over a linux host in the network.
Using Command Line Method
1. Run SimpleHTTPServer at the folder where you want to transfer the files
$ python -m SimpleHTTPServer
2. Open in web browser in the remote pc
URL: http://ip_address:8000/
You should see a file and download it from there.
Done.
SimpleHTTPServer
bottom of page