0

我想知道如何使用 libmproxy 或 mitmproxy 异步加载请求。

我的代码如下所示:

class StickyMaster(controller.Master):
    def __init__(self):
          ......

    def handle_request(self):
         ....

    def handle_response(self):
         ....
4

1 回答 1

1

我建议使用 mitproxy 的内联脚本,它有一个@concurrent装饰器:http ://docs.mitmproxy.org/en/latest/scripting/inlinescripts.html#running-scripts-in-parallel

于 2016-04-26T17:47:12.440 回答