mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
11 lines
330 B
Python
11 lines
330 B
Python
import time
|
|
import mitmproxy
|
|
from mitmproxy.script import concurrent
|
|
|
|
|
|
@concurrent # Remove this and see what happens
|
|
def request(flow):
|
|
mitmproxy.ctx.log("handle request: %s%s" % (flow.request.host, flow.request.path))
|
|
time.sleep(5)
|
|
mitmproxy.ctx.log("start request: %s%s" % (flow.request.host, flow.request.path))
|