I\'ve got this basic python3 server but can\'t figure out how to serve a directory.
class SimpleHTTPRequestHandler(BaseHTTPRequestHandler): def do_GE
if you are using 3.7, you can simply serve up a directory where your html files, eg. index.html is still
python -m http.server 8080 --bind 127.0.0.1 --directory \your_directory\
for the docs