mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2025-02-01 15:55:28 +00:00
8 lines
159 B
Python
8 lines
159 B
Python
def modify(chunks):
|
|
for chunk in chunks:
|
|
yield chunk.replace("foo", "bar")
|
|
|
|
|
|
def responseheaders(context, flow):
|
|
flow.response.stream = modify
|