I enjoyed this article a lot (I just came here to post it and found your post). I liked the layout and that he outlined how he went about things: "I had this question, I used this tool, I found...
I enjoyed this article a lot (I just came here to post it and found your post). I liked the layout and that he outlined how he went about things: "I had this question, I used this tool, I found these things, I learned this" is a great way to do a writeup.
I like python -m http.server a lot for a simple http server and I use it with some frequency. It's great if you have some static HTML that you want to have a look at.
I enjoyed this article a lot (I just came here to post it and found your post). I liked the layout and that he outlined how he went about things: "I had this question, I used this tool, I found these things, I learned this" is a great way to do a writeup.
I like
python -m http.server
a lot for a simple http server and I use it with some frequency. It's great if you have some static HTML that you want to have a look at.You should also check for
__main__.py
files. Ifmypackage/__main__.py
exists, runningpython -m mypackage
will execute it.