mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
08895e9ba6
- restructure examples (fix #4031) - remove example dependencies from setup.py, we do not need special dependencies for our supported addons. - unify how we generate docs from code - improve example docs
21 lines
522 B
Python
21 lines
522 B
Python
#!/usr/bin/env python
|
|
"""
|
|
Read a mitmproxy dump file.
|
|
"""
|
|
from mitmproxy import io
|
|
from mitmproxy.exceptions import FlowReadException
|
|
import pprint
|
|
import sys
|
|
|
|
with open(sys.argv[1], "rb") as logfile:
|
|
freader = io.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 FlowReadException as e:
|
|
print("Flow file corrupted: {}".format(e))
|