Skip to content

Instantly share code, notes, and snippets.

View jamesiter's full-sized avatar

jimit jamesiter

View GitHub Profile
@jamesiter
jamesiter / DemoProxy.py
Created April 8, 2019 11:08 — forked from epinna/DemoProxy.py
Tiny HTTP Proxy
#!/usr/bin/python
__doc__ = """Tiny HTTP Proxy.
This module implements GET, HEAD, POST, PUT and DELETE methods
on BaseHTTPServer, and behaves as an HTTP proxy. The CONNECT
method is also implemented experimentally, but has not been
tested yet.
Any help will be greatly appreciated. SUZUKI Hisao