no module named http.server
In python earlier than v3 you need to run http server as
python -m SimpleHTTPServer 8069
#(8069=portnumber on which your python server is configured)
http.server
only exists in Python 3. In Python 2, you should use the BaseHTTPServer
module:
from BaseHTTPServer import BaseHTTPRequestHandler
should work just fine.