我想在Python中拦截所有aiohttp调用。
我发现a library适用于非异步http,但无法弄清楚如何针对aiohttp。
更新
以下内容对我有所帮助。
def MyClientSession(**kwargs):
test_server = TestServer(app)
test_client = TestClient(test_server)
return test_client.session
aiohttp.ClientSession = MyClientSession