mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
d998790c2f
- Flatten the class hierarchy - get_state, load_state, from_state are public - Simplify code - Remove __eq__ and __neq__. This fundamentally changes the semantics of inherited objects in a way that's not part of the core function of the class
19 lines
475 B
Python
19 lines
475 B
Python
#!/usr/bin/env python
|
|
#
|
|
# Simple script showing how to read a mitmproxy dump file
|
|
#
|
|
|
|
from libmproxy import flow
|
|
import json, sys
|
|
|
|
with open("logfile", "rb") as logfile:
|
|
freader = flow.FlowReader(logfile)
|
|
try:
|
|
for f in freader.stream():
|
|
print(f)
|
|
print(f.request.host)
|
|
json.dump(f.get_state(), sys.stdout, indent=4)
|
|
print ""
|
|
except flow.FlowReadError, v:
|
|
print "Flow file corrupted. Stopped loading."
|