Python: Zip Application
From Python v2.6, they added the support of allowing python interpreter to execute a zip file.
Let’s see an example:
❯ echo 'print("Hello, World!")' > __main__.py
❯ zip hello-world.zip __main__.py
❯ python3 ./hello-world.zip
Hello, World!