News

This series of Python scripts is written to demonstrate the use of the zipimport module (Import modules from Zip archives). This module adds the ability to import Python modules (*.py, *.pyc) and ...
One of Python's useful features is its ability to load modules from a .zip archive (PEP here), allowing you to package up multiple dependencies into a single file. Boto breaks when trying to import ...
Following up from last week's article on reading zip archives, we show you how you can create your own archives using Python.