mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-26 02:10:59 +00:00
e24b4cc1b6
* mypy checking pathod * initial commit , fixed errors * tox: mypy checking to pathod * Fixed mypy test failed * issue was with args in custom_contentview.py * tox: mypy checking to #2221 * follow-import=skip since we cant provide args to custom_contentview.py during mypy testing * Lint , Typo Fixed * code style: module import
33 lines
838 B
Python
33 lines
838 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
|
|
import typing
|
|
|
|
|
|
CVIEWSWAPCASE = typing.Tuple[str, typing.Iterable[typing.List[typing.Tuple[str, typing.AnyStr]]]]
|
|
|
|
|
|
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: typing.AnyStr, **metadata) -> CVIEWSWAPCASE:
|
|
return "case-swapped text", contentviews.format_text(data.swapcase())
|
|
|
|
|
|
view = ViewSwapCase()
|
|
|
|
|
|
def load(l):
|
|
contentviews.add(view)
|
|
|
|
|
|
def done():
|
|
contentviews.remove(view)
|