Did you know that the most easiest way to start a simple HTTP server using python is just a command?
#python #SimpleHTTPServer #server
$ python -m SimpleHTTPServer
Serving HTTP on 0.0.0.0 port 8000 ...
SimpleHTTPServer
is a python module that serve all the data that is present inside of the current directory. Install this package and enjoying playing around :)#python #SimpleHTTPServer #server