$ mkdir ~/pyhttp && cd ~/pyhttp && echo "Hello, friend" > index.html && python3 -m http.server 8000
$ curl -X GET "http://localhost:8000/"
Hello, friend
$ mkdir ~/pyhttp && cd ~/pyhttp && echo "Hello, friend" > index.html && python3 -m http.server 8000
$ curl -X GET "http://localhost:8000/"
Hello, friend