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

from mitmproxy.script import concurrent


@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))