Skip to content

Instantly share code, notes, and snippets.

View pathmissing's full-sized avatar

Marcus Döllerer pathmissing

  • TechDivision GmbH
View GitHub Profile
#!/usr/bin/python
from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer
PORT_NUMBER = 31337
class myHandler(BaseHTTPRequestHandler):
#Handler for the GET requests
def do_GET(self):
self.send_response(200)