Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 251 Bytes

python_server.md

File metadata and controls

6 lines (6 loc) · 251 Bytes

Python package to emulate an http server locally in a folder (you can the donwload every file in folder with wget)

$> cd folder
$> nohup python3 -m http.server 8080 &> /dev/null &
$> nohup python -m SimpleHTTPServer 8080 &> /dev/null &