Skip to content

Instantly share code, notes, and snippets.

View zobkiw's full-sized avatar

Joe Zobkiw zobkiw

View GitHub Profile
#!/usr/bin/env python
# Reflects the requests from HTTP methods GET, POST, PUT, and DELETE
# Written by Nathan Hamiel (2010)
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler
from optparse import OptionParser
class RequestHandler(BaseHTTPRequestHandler):
def do_GET(self):