mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
9 lines
295 B
Python
9 lines
295 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) |