aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/content/addons-scripting.md
diff options
context:
space:
mode:
authorkira0204 <rshtmudgal@gmail.com>2018-02-24 12:42:21 +0530
committerkira0204 <rshtmudgal@gmail.com>2018-02-24 12:42:21 +0530
commit8209b89d41bdfc3b6a9a3dd5d9054b02722e0d4f (patch)
tree5691f1dd11ac1b2a98e57ed06252ff7dc40cd555 /docs/src/content/addons-scripting.md
parent69dbd1da61e6e452da63c63fba1d810b269f459d (diff)
parenteee109117f956600261bc938be52040d1474a97f (diff)
downloadmitmproxy-8209b89d41bdfc3b6a9a3dd5d9054b02722e0d4f.tar.gz
mitmproxy-8209b89d41bdfc3b6a9a3dd5d9054b02722e0d4f.tar.bz2
mitmproxy-8209b89d41bdfc3b6a9a3dd5d9054b02722e0d4f.zip
Merge branch 'master' of https://github.com/kira0204/mitmproxy into update-readme
Diffstat (limited to 'docs/src/content/addons-scripting.md')
-rw-r--r--docs/src/content/addons-scripting.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/src/content/addons-scripting.md b/docs/src/content/addons-scripting.md
new file mode 100644
index 00000000..e31d291a
--- /dev/null
+++ b/docs/src/content/addons-scripting.md
@@ -0,0 +1,17 @@
+---
+title: "Scripting"
+menu:
+ addons:
+ weight: 5
+---
+
+# Scripting
+
+Sometimes, we would like to write a quick script without going through the
+trouble of creating a class. The addons mechanism has a shorthand that allows a
+module as a whole to be treated as an addon object. This lets us place event
+handler functions in the module scope. For instance, here is a complete script
+that adds a header to every request.
+
+
+{{< example src="examples/addons/scripting.py" lang="py" >}} \ No newline at end of file