+zipapp

    
      
diff --git a/pythonetc/README.md b/pythonetc/README.md
index dd11bc2..ae499a8 100644
--- a/pythonetc/README.md
+++ b/pythonetc/README.md
@@ -47,3 +47,4 @@ More:
 1. ./nullcontext.md
 1. ./enum.md
 1. ./dynamic-class-attribute.md
+1. ./zipapp.md
diff --git a/pythonetc/zipapp.md b/pythonetc/zipapp.md
new file mode 100644
index 0000000..a09cb38
--- /dev/null
+++ b/pythonetc/zipapp.md
@@ -0,0 +1,9 @@
+The module [zipapp](https://docs.python.org/3/library/zipapp.html) can pack a python module into a zip archive that can be executed directly by a Python interpreter. It is a good way to ship CLI tools:
+
+```bash
+$ mkdir example
+$ echo 'print("hello, @pythonetc!")' > example/__main__.py
+$ python3 -m zipapp example
+$ python3 example.pyz      
+hello, @pythonetc!
+```