mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
9 lines
298 B
Python
9 lines
298 B
Python
import time
|
|
from libmproxy.script import concurrent
|
|
|
|
|
|
@concurrent # Remove this and see what happens
|
|
def request(context, flow):
|
|
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))
|