aboutsummaryrefslogtreecommitdiffstats
path: root/examples/filt.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2016-07-23 11:57:31 +1200
committerAldo Cortesi <aldo@nullcube.com>2016-07-23 12:24:09 +1200
commitdbafe9f87bb7b793ae2d84e01af5d39f034c78d4 (patch)
treef19954d23ce454dd381a62c29af86dcd9ed5cf77 /examples/filt.py
parentb5416895f5157d0191c3967850be576450ec2d7d (diff)
downloadmitmproxy-dbafe9f87bb7b793ae2d84e01af5d39f034c78d4.tar.gz
mitmproxy-dbafe9f87bb7b793ae2d84e01af5d39f034c78d4.tar.bz2
mitmproxy-dbafe9f87bb7b793ae2d84e01af5d39f034c78d4.zip
scripts: refactor some examples that keep global state
We now have a better way to do this.
Diffstat (limited to 'examples/filt.py')
-rw-r--r--examples/filt.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/examples/filt.py b/examples/filt.py
index 21744edd..9ccf9fa1 100644
--- a/examples/filt.py
+++ b/examples/filt.py
@@ -1,18 +1,20 @@
-# This scripts demonstrates how to use mitmproxy's filter pattern in inline scripts.
+# This scripts demonstrates how to use mitmproxy's filter pattern in scripts.
# Usage: mitmdump -s "filt.py FILTER"
import sys
from mitmproxy import filt
-state = {}
+
+class Filter:
+ def __init__(self, spec):
+ self.filter = filt.parse(spec)
+
+ def response(self, flow):
+ if flow.match(self.filter):
+ print("Flow matches filter:")
+ print(flow)
def start():
if len(sys.argv) != 2:
raise ValueError("Usage: -s 'filt.py FILTER'")
- state["filter"] = filt.parse(sys.argv[1])
-
-
-def response(flow):
- if flow.match(state["filter"]):
- print("Flow matches filter:")
- print(flow)
+ return Filter(sys.argv[1])