aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simple/custom_option.py
blob: 8d0cfe7f528f65746dd94758331a7ef989873462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
This example shows how addons can register custom options
that can be configured at startup or during execution
from the options dialog within mitmproxy.

Example:

$ mitmproxy --set custom=true
$ mitmproxy --set custom   # shorthand for boolean options
"""
from mitmproxy import ctx


def load(l):
    ctx.log.info("Registering option 'custom'")
    l.add_option("custom", bool, False, "A custom option")


def configure(updated):
    if "custom" in updated:
        ctx.log.info("custom option value: %s" % ctx.options.custom)