zipapp
Stdlib — MiscPython 2.0+Intermediate
Create executable Python zip archives (.pyz files)
Quick Info
- Documentation
- Official Docs
- Python Version
- 2.0+
- Dependencies
- None — Python Standard Library
- Install
Included with Python
Learn by Difficulty
Quick Example
python
import zipapp print(f"Module: zipapp") print(f"Contents: {dir(zipapp)[:10]}")
The zipapp module is part of Python's standard library. Create executable Python zip archives (.pyz files).
Try in PlaygroundTags
stdlibutility