mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
e24b4cc1b6
* mypy checking pathod * initial commit , fixed errors * tox: mypy checking to pathod * Fixed mypy test failed * issue was with args in custom_contentview.py * tox: mypy checking to #2221 * follow-import=skip since we cant provide args to custom_contentview.py during mypy testing * Lint , Typo Fixed * code style: module import
24 lines
565 B
Python
24 lines
565 B
Python
#!/usr/bin/env python
|
|
|
|
# type: ignore
|
|
#
|
|
# Simple script showing how to 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))
|