mitmproxy/examples/nonblocking.py
2016-07-07 20:14:52 -07:00

11 lines
322 B
Python

import time
import mitmproxy
from mitmproxy.script import concurrent
@concurrent # Remove this and see what happens
def request(flow):
mitmproxy.log("handle request: %s%s" % (flow.request.host, flow.request.path))
time.sleep(5)
mitmproxy.log("start request: %s%s" % (flow.request.host, flow.request.path))