Lines Matching refs:zipfile
1 :mod:`zipfile` --- Work with ZIP archives
4 .. module:: zipfile
10 **Source code:** :source:`Lib/zipfile.py`
52 :ref:`zipfile-objects` for constructor details.
65 methods of :class:`ZipFile` objects. Most users of the :mod:`zipfile` module
159 If *allowZip64* is ``True`` (the default) zipfile will create ZIP files that
160 use the ZIP64 extensions when the zipfile is larger than 4 GiB. If it is
161 ``false`` :mod:`zipfile` will raise an exception when the ZIP file would
675 .. program:: zipfile
680 The :mod:`zipfile` module provides a simple command-line interface to interact
688 $ python -m zipfile -c monty.zip spam.txt eggs.txt
694 $ python -m zipfile -c monty.zip life-of-brian_1979/
701 $ python -m zipfile -e monty.zip target-dir/
707 $ python -m zipfile -l monty.zip
713 .. cmdoption:: -l <zipfile>
714 --list <zipfile>
716 List files in a zipfile.
718 .. cmdoption:: -c <zipfile> <source1> ... <sourceN>
719 --create <zipfile> <source1> ... <sourceN>
721 Create zipfile from source files.
723 .. cmdoption:: -e <zipfile> <output_dir>
724 --extract <zipfile> <output_dir>
726 Extract zipfile into target directory.
728 .. cmdoption:: -t <zipfile>
729 --test <zipfile>
731 Test whether the zipfile is valid or not.