mitmproxy/docs/scripts/clirecording/record.py
2020-09-03 17:44:00 +02:00

13 lines
343 B
Python

#!/usr/bin/env python3
from clidirector import MitmCliDirector
import screenplays
if __name__ == '__main__':
director = MitmCliDirector()
screenplays.record_user_interface(director)
screenplays.record_intercept_requests(director)
screenplays.record_modify_requests(director)
screenplays.record_replay_requests(director)