aboutsummaryrefslogtreecommitdiffstats
path: root/examples/stream_modify.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-15 23:00:11 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-15 23:00:11 +0100
commit87d9afcf2e257eee7c5aa08c3f0dc64da79b0647 (patch)
tree71b10729d160f0269d02548d1ef9e183be1397d9 /examples/stream_modify.py
parent36f34f701991b5d474c005ec45e3b66e20f326a8 (diff)
parent3d9a5157e77b5a3237dc62994f4e3d4c75c2066e (diff)
downloadmitmproxy-87d9afcf2e257eee7c5aa08c3f0dc64da79b0647.tar.gz
mitmproxy-87d9afcf2e257eee7c5aa08c3f0dc64da79b0647.tar.bz2
mitmproxy-87d9afcf2e257eee7c5aa08c3f0dc64da79b0647.zip
Merge pull request #937 from mhils/single-repo
Combine mitmproxy, pathod and netlib in a single repo.
Diffstat (limited to 'examples/stream_modify.py')
-rw-r--r--examples/stream_modify.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/stream_modify.py b/examples/stream_modify.py
deleted file mode 100644
index aa395c03..00000000
--- a/examples/stream_modify.py
+++ /dev/null
@@ -1,20 +0,0 @@
-"""
-This inline script modifies a streamed response.
-If you do not need streaming, see the modify_response_body example.
-Be aware that content replacement isn't trivial:
- - If the transfer encoding isn't chunked, you cannot simply change the content length.
- - If you want to replace all occurences of "foobar", make sure to catch the cases
- where one chunk ends with [...]foo" and the next starts with "bar[...].
-"""
-
-
-def modify(chunks):
- """
- chunks is a generator that can be used to iterate over all chunks.
- """
- for chunk in chunks:
- yield chunk.replace("foo", "bar")
-
-
-def responseheaders(context, flow):
- flow.response.stream = modify