aboutsummaryrefslogtreecommitdiffstats
path: root/examples/read_dumpfile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/read_dumpfile')
-rwxr-xr-xexamples/read_dumpfile20
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/read_dumpfile b/examples/read_dumpfile
deleted file mode 100755
index b329c0e1..00000000
--- a/examples/read_dumpfile
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env python
-#
-# Simple script showing how to read a mitmproxy dump file
-#
-
-from libmproxy import flow
-import pprint
-import sys
-
-with open(sys.argv[1], "rb") as logfile:
- freader = flow.FlowReader(logfile)
- pp = pprint.PrettyPrinter(indent=4)
- try:
- for f in freader.stream():
- print(f)
- print(f.request.host)
- pp.pprint(f.get_state())
- print("")
- except flow.FlowReadError as v:
- print "Flow file corrupted. Stopped loading."