aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/test/scripts/stream_modify.py
blob: e26d83f197241b2202d95a8ea5167152e5b87f6f (plain)
1
2
3
4
5
6
7
def modify(chunks):
    for chunk in chunks:
        yield chunk.replace("foo", "bar")


def responseheaders(context, flow):
    flow.response.stream = modify