Skip to content

Instantly share code, notes, and snippets.

View bastula's full-sized avatar
🤠
See you space cowboy...

Aditya Panchal bastula

🤠
See you space cowboy...
View GitHub Profile
import threading
import SocketServer
from SimpleHTTPServer import SimpleHTTPRequestHandler
import httplib2
class QuietSimpleHTTPRequestHandler(SimpleHTTPRequestHandler):
"""Quiet http request handler
Subclasses SimpleHTTPRequestHandler in order to overwrite the log_message
method, letting us reduce output generated by the handler. Only standard
messages are overwritten, so errors will still be displayed.