aboutsummaryrefslogtreecommitdiffstats
path: root/docs/scripting/overview.rst
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@corte.si>2017-04-26 09:03:03 +1200
committerGitHub <noreply@github.com>2017-04-26 09:03:03 +1200
commit02c82b1b602b7d5ab03c1e25d7d89f44c593174a (patch)
tree2e221b195393ccf320bc24400b63940129df4b0f /docs/scripting/overview.rst
parent7ee0abbe0c6500540b8becca7021958d55870a18 (diff)
parente6eeab60946e61047ed858422badbda189a6f9e8 (diff)
downloadmitmproxy-02c82b1b602b7d5ab03c1e25d7d89f44c593174a.tar.gz
mitmproxy-02c82b1b602b7d5ab03c1e25d7d89f44c593174a.tar.bz2
mitmproxy-02c82b1b602b7d5ab03c1e25d7d89f44c593174a.zip
Merge pull request #2261 from cortesi/addonrevamp
Revamp how addons work
Diffstat (limited to 'docs/scripting/overview.rst')
-rw-r--r--docs/scripting/overview.rst18
1 files changed, 1 insertions, 17 deletions
diff --git a/docs/scripting/overview.rst b/docs/scripting/overview.rst
index 6ec0caaa..c333a98b 100644
--- a/docs/scripting/overview.rst
+++ b/docs/scripting/overview.rst
@@ -54,24 +54,8 @@ and is replaced by the class instance.
Handling arguments
------------------
-Scripts can handle their own command-line arguments, just like any other Python
-program. Let's build on the example above to do something slightly more
-sophisticated - replace one value with another in all responses. Mitmproxy's
-`HTTPRequest <api.html#mitmproxy.models.http.HTTPRequest>`_ and `HTTPResponse
-<api.html#mitmproxy.models.http.HTTPResponse>`_ objects have a handy `replace
-<api.html#mitmproxy.models.http.HTTPResponse.replace>`_ method that takes care
-of all the details for us.
-
-.. literalinclude:: ../../examples/simple/script_arguments.py
- :caption: :src:`examples/simple/script_arguments.py`
- :language: python
-
-We can now call this script on the command-line like this:
-
->>> mitmdump -dd -s "./script_arguments.py html faketml"
-Whenever a handler is called, mitpmroxy rewrites the script environment so that
-it sees its own arguments as if it was invoked from the command-line.
+FIXME
Logging and the context