mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
0c6663d0d5
- Add an options parameter to the start() event. This is to be used by addons on startup to add custom options. - Add a running() event that is called once the proxy is up and running. - With the new paradigm we can't log during master __init__, so add a tiny termstatus addon to print proxy status to terminal once we're running.
29 lines
703 B
Python
29 lines
703 B
Python
"""
|
|
This example shows how one can add a custom contentview to mitmproxy.
|
|
The content view API is explained in the mitmproxy.contentviews module.
|
|
"""
|
|
from mitmproxy import contentviews
|
|
|
|
|
|
class ViewSwapCase(contentviews.View):
|
|
name = "swapcase"
|
|
|
|
# We don't have a good solution for the keyboard shortcut yet -
|
|
# you manually need to find a free letter. Contributions welcome :)
|
|
prompt = ("swap case text", "z")
|
|
content_types = ["text/plain"]
|
|
|
|
def __call__(self, data: bytes, **metadata):
|
|
return "case-swapped text", contentviews.format_text(data.swapcase())
|
|
|
|
|
|
view = ViewSwapCase()
|
|
|
|
|
|
def start(opts):
|
|
contentviews.add(view)
|
|
|
|
|
|
def done():
|
|
contentviews.remove(view)
|