Skip to content

Instantly share code, notes, and snippets.

@millsy
millsy / server.py
Last active April 16, 2019 06:25
Simple HTTP Server
from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer
class S(BaseHTTPRequestHandler):
def _set_headers(self):
self.send_response(200)
self.send_header('Content-type', 'text/json')
self.end_headers()
def do_GET(self):
self._set_headers()