Last active
December 4, 2017 01:26
-
-
Save red-leaf1/3a4c082c5390b05070a01bf682c50735 to your computer and use it in GitHub Desktop.
Networking projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer | |
from os import curdir, sep | |
PORT_NUMBER = 8080 | |
#message = "\nThis is a test WebServer.\n" | |
#This class will handle any incoming request from | |
#the browser | |
class MyHandler(BaseHTTPRequestHandler): | |
#Handler for the GET requests | |
def do_GET(self): | |
if self.path=="/": | |
self.path="/index.html" | |
try: | |
#Check the file extension requred and | |
#set the right mime type | |
sendReply = False | |
if self.path.endswith(".html"): | |
mimetype='text/html' | |
sendReply = True | |
if self.path.endswith(".jpg"): | |
mimetype = 'image/jpg' | |
sendReply = True | |
if self.path.endswith(".gif"): | |
mimetype = 'image/gif' | |
sendReply = True | |
if self.path.endswith(".js"): | |
mimetype = 'application/javascript' | |
sendReply = True | |
if self.path.endswith(".css"): | |
mimetype = 'text/css' | |
sendReply = True | |
if sendReply == True: | |
#Open the static file requested and send it | |
f = open(curdir + sep + self.path) | |
self.send_response(200) | |
self.send_header('Content-type', mimetype) | |
self.end_headers() | |
self.wfile.write(f.read()) | |
f.close() | |
return | |
except IOError: | |
self.send_error(404,'File Not Found: %s' % self.path) | |
try: | |
#Create a web server and define the handler to manage the | |
#incoming request | |
server = HTTPServer(('', PORT_NUMBER), MyHandler) | |
print 'Started httpserver on port ', PORT_NUMBER | |
#Wait forever for incoming http requests | |
server.serve_forever() | |
except KeyboardInterrupt: | |
print '^C received, shutting down the web server_class' | |
server.socket.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this is a simple http server in Python 2.7