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