Hacker News new | ask | show | jobs
by npolet 3160 days ago
I tend to run:

    python -m http.server 0.0.0.0:8000
That should allow you to access it externally.
1 comments

Just tested it and wont work.

Edit:

Works if you just run:

    python3 -m http.server
Thanks for the help

Edit[1]:

Works great with python's built in web server but wont work with flask's built in development web server.