mitmproxy/libmproxy/script.py
2011-02-17 15:56:54 +13:00

28 lines
666 B
Python

"""
The mitmproxy scripting interface is simple - a serialized representation
of a flow is passed to the script on stdin, and a possibly modified flow is
then read by mitmproxy from the scripts stdout. This module provides two
convenience functions to make loading and returning data from scripts
simple.
"""
import sys, base64
import flow
#begin nocover
def load_flow():
"""
Load a flow from the stdin. Returns a Flow object.
"""
data = sys.stdin.read()
return flow.Flow.script_deserialize(data)
def return_flow(f):
"""
Print a flow to stdout.
"""
print >> sys.stdout, f.script_serialize()