mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
58e1b3a47f
- Move ScriptContext into script module - Use mock module instead of hand-rolled mock objects in tests
9 lines
259 B
Python
9 lines
259 B
Python
import time
|
|
from libmproxy.script import concurrent
|
|
|
|
@concurrent
|
|
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)
|