mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
08895e9ba6
- restructure examples (fix #4031) - remove example dependencies from setup.py, we do not need special dependencies for our supported addons. - unify how we generate docs from code - improve example docs
28 lines
665 B
Python
28 lines
665 B
Python
"""
|
|
Add a custom message body pretty-printer for use inside mitmproxy.
|
|
|
|
This example shows how one can add a custom contentview to mitmproxy,
|
|
which is used to pretty-print HTTP bodies for example.
|
|
The content view API is explained in the mitmproxy.contentviews module.
|
|
"""
|
|
from mitmproxy import contentviews
|
|
|
|
|
|
class ViewSwapCase(contentviews.View):
|
|
name = "swapcase"
|
|
content_types = ["text/plain"]
|
|
|
|
def __call__(self, data, **metadata) -> contentviews.TViewResult:
|
|
return "case-swapped text", contentviews.format_text(data.swapcase())
|
|
|
|
|
|
view = ViewSwapCase()
|
|
|
|
|
|
def load(l):
|
|
contentviews.add(view)
|
|
|
|
|
|
def done():
|
|
contentviews.remove(view)
|