In python earlier than v3 you need to run http server as
python -m SimpleHTTPServer 8012
#(8069=portnumber on which your python server is configured)
And for python3
python3 -m http.server 7034 #(any free port number)
In python earlier than v3 you need to run http server as
python -m SimpleHTTPServer 8012
#(8069=portnumber on which your python server is configured)
And for python3
python3 -m http.server 7034 #(any free port number)