aboutsummaryrefslogtreecommitdiffstats
path: root/examples/complex/nonblocking.py
blob: 214f75e9c26544138b7a694e809461f32d6549c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import time

from mitmproxy.script import concurrent
from mitmproxy import ctx


@concurrent  # Remove this and see what happens
def request(flow):
    # This is ugly in mitmproxy's UI, but you don't want to use mitmproxy.ctx.log from a different thread.
    print("handle request: %s%s" % (flow.request.host, flow.request.path))
    time.sleep(5)
    print("start  request: %s%s" % (flow.request.host, flow.request.path))