HTTP Server
import http.server, socketserver
handler = http.server.SimpleHTTPRequestHandler
httpd = socketserver.TCPServer(("", 8080), handler)
httpd.serve_forever()
import http.server, socketserver
handler = http.server.SimpleHTTPRequestHandler
httpd = socketserver.TCPServer(("", 8080), handler)
httpd.serve_forever()