mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	 8ae3e055a5
			
		
	
	
		8ae3e055a5
		
	
	
	
	
		
			
			svn+ssh://pythondev@svn.python.org/python/trunk ........ r63066 | georg.brandl | 2008-05-11 10:56:04 -0400 (Sun, 11 May 2008) | 2 lines #2709 followup: better description of Tk's pros and cons. ........ r63067 | georg.brandl | 2008-05-11 11:05:13 -0400 (Sun, 11 May 2008) | 2 lines #1326: document and test zipimporter.archive and zipimporter.prefix. ........ r63068 | georg.brandl | 2008-05-11 11:07:39 -0400 (Sun, 11 May 2008) | 2 lines #2816: clarify error messages for EOF while scanning strings. ........ r63069 | georg.brandl | 2008-05-11 11:17:41 -0400 (Sun, 11 May 2008) | 3 lines #2787: Flush stdout after writing test name, helpful when running hanging or long-running tests. Patch by Adam Olsen. ........ r63070 | georg.brandl | 2008-05-11 11:20:16 -0400 (Sun, 11 May 2008) | 3 lines #2803: fix wrong invocation of heappush in seldom-reached code. Thanks to Matt Harden. ........ r63073 | benjamin.peterson | 2008-05-11 12:38:07 -0400 (Sun, 11 May 2008) | 2 lines broaden .bzrignore ........ r63076 | andrew.kuchling | 2008-05-11 15:15:52 -0400 (Sun, 11 May 2008) | 1 line Add message to test assertion ........ r63083 | andrew.kuchling | 2008-05-11 16:08:33 -0400 (Sun, 11 May 2008) | 1 line Try setting HOME env.var to fix test on Win32 ........ r63092 | georg.brandl | 2008-05-11 16:53:55 -0400 (Sun, 11 May 2008) | 2 lines #2809 followup: even better split docstring. ........ r63094 | georg.brandl | 2008-05-11 17:03:42 -0400 (Sun, 11 May 2008) | 4 lines - #2250: Exceptions raised during evaluation of names in rlcompleter's ``Completer.complete()`` method are now caught and ignored. ........ r63095 | georg.brandl | 2008-05-11 17:16:37 -0400 (Sun, 11 May 2008) | 2 lines Clarify os.strerror()s exception behavior. ........ r63097 | georg.brandl | 2008-05-11 17:34:10 -0400 (Sun, 11 May 2008) | 2 lines #2535: remove duplicated method. ........ r63104 | alexandre.vassalotti | 2008-05-11 19:04:27 -0400 (Sun, 11 May 2008) | 2 lines Moved the Queue module stub in lib-old. ........
		
			
				
	
	
		
			151 lines
		
	
	
	
		
			5.3 KiB
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
			
		
		
	
	
			151 lines
		
	
	
	
		
			5.3 KiB
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
| 
 | |
| :mod:`zipimport` --- Import modules from Zip archives
 | |
| =====================================================
 | |
| 
 | |
| .. module:: zipimport
 | |
|    :synopsis: support for importing Python modules from ZIP archives.
 | |
| .. moduleauthor:: Just van Rossum <just@letterror.com>
 | |
| 
 | |
| 
 | |
| This module adds the ability to import Python modules (:file:`\*.py`,
 | |
| :file:`\*.py[co]`) and packages from ZIP-format archives. It is usually not
 | |
| needed to use the :mod:`zipimport` module explicitly; it is automatically used
 | |
| by the builtin :keyword:`import` mechanism for ``sys.path`` items that are paths
 | |
| to ZIP archives.
 | |
| 
 | |
| Typically, ``sys.path`` is a list of directory names as strings.  This module
 | |
| also allows an item of ``sys.path`` to be a string naming a ZIP file archive.
 | |
| The ZIP archive can contain a subdirectory structure to support package imports,
 | |
| and a path within the archive can be specified to only import from a
 | |
| subdirectory.  For example, the path :file:`/tmp/example.zip/lib/` would only
 | |
| import from the :file:`lib/` subdirectory within the archive.
 | |
| 
 | |
| Any files may be present in the ZIP archive, but only files :file:`.py` and
 | |
| :file:`.py[co]` are available for import.  ZIP import of dynamic modules
 | |
| (:file:`.pyd`, :file:`.so`) is disallowed. Note that if an archive only contains
 | |
| :file:`.py` files, Python will not attempt to modify the archive by adding the
 | |
| corresponding :file:`.pyc` or :file:`.pyo` file, meaning that if a ZIP archive
 | |
| doesn't contain :file:`.pyc` files, importing may be rather slow.
 | |
| 
 | |
| .. seealso::
 | |
| 
 | |
|    `PKZIP Application Note <http://www.pkware.com/documents/casestudies/APPNOTE.TXT>`_
 | |
|       Documentation on the ZIP file format by Phil Katz, the creator of the format and
 | |
|       algorithms used.
 | |
| 
 | |
|    :pep:`0273` - Import Modules from Zip Archives
 | |
|       Written by James C. Ahlstrom, who also provided an implementation. Python 2.3
 | |
|       follows the specification in PEP 273, but uses an implementation written by Just
 | |
|       van Rossum that uses the import hooks described in PEP 302.
 | |
| 
 | |
|    :pep:`0302` - New Import Hooks
 | |
|       The PEP to add the import hooks that help this module work.
 | |
| 
 | |
| 
 | |
| This module defines an exception:
 | |
| 
 | |
| .. exception:: ZipImportError
 | |
| 
 | |
|    Exception raised by zipimporter objects. It's a subclass of :exc:`ImportError`,
 | |
|    so it can be caught as :exc:`ImportError`, too.
 | |
| 
 | |
| 
 | |
| .. _zipimporter-objects:
 | |
| 
 | |
| zipimporter Objects
 | |
| -------------------
 | |
| 
 | |
| :class:`zipimporter` is the class for importing ZIP files.
 | |
| 
 | |
| .. class:: zipimporter(archivepath)
 | |
| 
 | |
|    Create a new zipimporter instance. *archivepath* must be a path to a ZIP
 | |
|    file, or to a specific path within a ZIP file.  For example, an *archivepath*
 | |
|    of :file:`foo/bar.zip/lib` will look for modules in the :file:`lib` directory
 | |
|    inside the ZIP file :file:`foo/bar.zip` (provided that it exists).
 | |
| 
 | |
|    :exc:`ZipImportError` is raised if *archivepath* doesn't point to a valid ZIP
 | |
|    archive.
 | |
| 
 | |
|    .. method:: find_module(fullname[, path])
 | |
| 
 | |
|       Search for a module specified by *fullname*. *fullname* must be the fully
 | |
|       qualified (dotted) module name. It returns the zipimporter instance itself
 | |
|       if the module was found, or :const:`None` if it wasn't. The optional
 | |
|       *path* argument is ignored---it's there for compatibility with the
 | |
|       importer protocol.
 | |
| 
 | |
| 
 | |
|    .. method:: get_code(fullname)
 | |
| 
 | |
|       Return the code object for the specified module. Raise
 | |
|       :exc:`ZipImportError` if the module couldn't be found.
 | |
| 
 | |
| 
 | |
|    .. method:: get_data(pathname)
 | |
| 
 | |
|       Return the data associated with *pathname*. Raise :exc:`IOError` if the
 | |
|       file wasn't found.
 | |
| 
 | |
| 
 | |
|    .. method:: get_source(fullname)
 | |
| 
 | |
|       Return the source code for the specified module. Raise
 | |
|       :exc:`ZipImportError` if the module couldn't be found, return
 | |
|       :const:`None` if the archive does contain the module, but has no source
 | |
|       for it.
 | |
| 
 | |
| 
 | |
|    .. method:: is_package(fullname)
 | |
| 
 | |
|       Return True if the module specified by *fullname* is a package. Raise
 | |
|       :exc:`ZipImportError` if the module couldn't be found.
 | |
| 
 | |
| 
 | |
|    .. method:: load_module(fullname)
 | |
| 
 | |
|       Load the module specified by *fullname*. *fullname* must be the fully
 | |
|       qualified (dotted) module name. It returns the imported module, or raises
 | |
|       :exc:`ZipImportError` if it wasn't found.
 | |
| 
 | |
| 
 | |
|    .. attribute:: archive
 | |
| 
 | |
|       The file name of the importer's associated ZIP file, without a possible
 | |
|       subpath.
 | |
| 
 | |
| 
 | |
|    .. attribute:: prefix
 | |
| 
 | |
|       The subpath within the ZIP file where modules are searched.  This is the
 | |
|       empty string for zipimporter objects which point to the root of the ZIP
 | |
|       file.
 | |
| 
 | |
|    The :attr:`archive` and :attr:`prefix` attributes, when combined with a
 | |
|    slash, equal the original *archivepath* argument given to the
 | |
|    :class:`zipimporter` constructor.
 | |
| 
 | |
| 
 | |
| .. _zipimport-examples:
 | |
| 
 | |
| Examples
 | |
| --------
 | |
| 
 | |
| Here is an example that imports a module from a ZIP archive - note that the
 | |
| :mod:`zipimport` module is not explicitly used. ::
 | |
| 
 | |
|    $ unzip -l /tmp/example.zip
 | |
|    Archive:  /tmp/example.zip
 | |
|      Length     Date   Time    Name
 | |
|     --------    ----   ----    ----
 | |
|         8467  11-26-02 22:30   jwzthreading.py
 | |
|     --------                   -------
 | |
|         8467                   1 file
 | |
|    $ ./python
 | |
|    Python 2.3 (#1, Aug 1 2003, 19:54:32) 
 | |
|    >>> import sys
 | |
|    >>> sys.path.insert(0, '/tmp/example.zip')  # Add .zip file to front of path
 | |
|    >>> import jwzthreading
 | |
|    >>> jwzthreading.__file__
 | |
|    '/tmp/example.zip/jwzthreading.py'
 | |
| 
 |