blob: 6e45f64227a27cf81dd3c3e7b18ceb44292ccdfd [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001.. _tut-modules:
2
3*******
4Modules
5*******
6
7If you quit from the Python interpreter and enter it again, the definitions you
8have made (functions and variables) are lost. Therefore, if you want to write a
9somewhat longer program, you are better off using a text editor to prepare the
10input for the interpreter and running it with that file as input instead. This
11is known as creating a *script*. As your program gets longer, you may want to
12split it into several files for easier maintenance. You may also want to use a
13handy function that you've written in several programs without copying its
14definition into each program.
15
16To support this, Python has a way to put definitions in a file and use them in a
17script or in an interactive instance of the interpreter. Such a file is called a
18*module*; definitions from a module can be *imported* into other modules or into
19the *main* module (the collection of variables that you have access to in a
20script executed at the top level and in calculator mode).
21
22A module is a file containing Python definitions and statements. The file name
23is the module name with the suffix :file:`.py` appended. Within a module, the
24module's name (as a string) is available as the value of the global variable
25``__name__``. For instance, use your favorite text editor to create a file
26called :file:`fibo.py` in the current directory with the following contents::
27
28 # Fibonacci numbers module
29
30 def fib(n): # write Fibonacci series up to n
31 a, b = 0, 1
32 while b < n:
33 print b,
34 a, b = b, a+b
35
36 def fib2(n): # return Fibonacci series up to n
37 result = []
38 a, b = 0, 1
39 while b < n:
40 result.append(b)
41 a, b = b, a+b
42 return result
43
44Now enter the Python interpreter and import this module with the following
45command::
46
47 >>> import fibo
48
49This does not enter the names of the functions defined in ``fibo`` directly in
50the current symbol table; it only enters the module name ``fibo`` there. Using
51the module name you can access the functions::
52
53 >>> fibo.fib(1000)
54 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
55 >>> fibo.fib2(100)
56 [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
57 >>> fibo.__name__
58 'fibo'
59
60If you intend to use a function often you can assign it to a local name::
61
62 >>> fib = fibo.fib
63 >>> fib(500)
64 1 1 2 3 5 8 13 21 34 55 89 144 233 377
65
66
67.. _tut-moremodules:
68
69More on Modules
70===============
71
72A module can contain executable statements as well as function definitions.
73These statements are intended to initialize the module. They are executed only
74the *first* time the module is imported somewhere. [#]_
75
76Each module has its own private symbol table, which is used as the global symbol
77table by all functions defined in the module. Thus, the author of a module can
78use global variables in the module without worrying about accidental clashes
79with a user's global variables. On the other hand, if you know what you are
80doing you can touch a module's global variables with the same notation used to
81refer to its functions, ``modname.itemname``.
82
83Modules can import other modules. It is customary but not required to place all
84:keyword:`import` statements at the beginning of a module (or script, for that
85matter). The imported module names are placed in the importing module's global
86symbol table.
87
88There is a variant of the :keyword:`import` statement that imports names from a
89module directly into the importing module's symbol table. For example::
90
91 >>> from fibo import fib, fib2
92 >>> fib(500)
93 1 1 2 3 5 8 13 21 34 55 89 144 233 377
94
95This does not introduce the module name from which the imports are taken in the
96local symbol table (so in the example, ``fibo`` is not defined).
97
98There is even a variant to import all names that a module defines::
99
100 >>> from fibo import *
101 >>> fib(500)
102 1 1 2 3 5 8 13 21 34 55 89 144 233 377
103
104This imports all names except those beginning with an underscore (``_``).
105
106
107.. _tut-modulesasscripts:
108
109Executing modules as scripts
110----------------------------
111
112When you run a Python module with ::
113
114 python fibo.py <arguments>
115
116the code in the module will be executed, just as if you imported it, but with
117the ``__name__`` set to ``"__main__"``. That means that by adding this code at
118the end of your module::
119
120 if __name__ == "__main__":
121 import sys
122 fib(int(sys.argv[1]))
123
124you can make the file usable as a script as well as an importable module,
125because the code that parses the command line only runs if the module is
126executed as the "main" file::
127
128 $ python fibo.py 50
129 1 1 2 3 5 8 13 21 34
130
131If the module is imported, the code is not run::
132
133 >>> import fibo
134 >>>
135
136This is often used either to provide a convenient user interface to a module, or
137for testing purposes (running the module as a script executes a test suite).
138
139
140.. _tut-searchpath:
141
142The Module Search Path
143----------------------
144
145.. index:: triple: module; search; path
146
147When a module named :mod:`spam` is imported, the interpreter searches for a file
148named :file:`spam.py` in the current directory, and then in the list of
149directories specified by the environment variable :envvar:`PYTHONPATH`. This
150has the same syntax as the shell variable :envvar:`PATH`, that is, a list of
151directory names. When :envvar:`PYTHONPATH` is not set, or when the file is not
152found there, the search continues in an installation-dependent default path; on
153Unix, this is usually :file:`.:/usr/local/lib/python`.
154
155Actually, modules are searched in the list of directories given by the variable
156``sys.path`` which is initialized from the directory containing the input script
157(or the current directory), :envvar:`PYTHONPATH` and the installation- dependent
158default. This allows Python programs that know what they're doing to modify or
159replace the module search path. Note that because the directory containing the
160script being run is on the search path, it is important that the script not have
161the same name as a standard module, or Python will attempt to load the script as
162a module when that module is imported. This will generally be an error. See
163section :ref:`tut-standardmodules` for more information.
164
165
166"Compiled" Python files
167-----------------------
168
169As an important speed-up of the start-up time for short programs that use a lot
170of standard modules, if a file called :file:`spam.pyc` exists in the directory
171where :file:`spam.py` is found, this is assumed to contain an
172already-"byte-compiled" version of the module :mod:`spam`. The modification time
173of the version of :file:`spam.py` used to create :file:`spam.pyc` is recorded in
174:file:`spam.pyc`, and the :file:`.pyc` file is ignored if these don't match.
175
176Normally, you don't need to do anything to create the :file:`spam.pyc` file.
177Whenever :file:`spam.py` is successfully compiled, an attempt is made to write
178the compiled version to :file:`spam.pyc`. It is not an error if this attempt
179fails; if for any reason the file is not written completely, the resulting
180:file:`spam.pyc` file will be recognized as invalid and thus ignored later. The
181contents of the :file:`spam.pyc` file are platform independent, so a Python
182module directory can be shared by machines of different architectures.
183
184Some tips for experts:
185
186* When the Python interpreter is invoked with the :option:`-O` flag, optimized
187 code is generated and stored in :file:`.pyo` files. The optimizer currently
188 doesn't help much; it only removes :keyword:`assert` statements. When
Georg Brandl5e52db02007-10-21 10:45:46 +0000189 :option:`-O` is used, *all* :term:`bytecode` is optimized; ``.pyc`` files are
190 ignored and ``.py`` files are compiled to optimized bytecode.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000191
192* Passing two :option:`-O` flags to the Python interpreter (:option:`-OO`) will
193 cause the bytecode compiler to perform optimizations that could in some rare
194 cases result in malfunctioning programs. Currently only ``__doc__`` strings are
195 removed from the bytecode, resulting in more compact :file:`.pyo` files. Since
196 some programs may rely on having these available, you should only use this
197 option if you know what you're doing.
198
199* A program doesn't run any faster when it is read from a :file:`.pyc` or
200 :file:`.pyo` file than when it is read from a :file:`.py` file; the only thing
201 that's faster about :file:`.pyc` or :file:`.pyo` files is the speed with which
202 they are loaded.
203
204* When a script is run by giving its name on the command line, the bytecode for
205 the script is never written to a :file:`.pyc` or :file:`.pyo` file. Thus, the
206 startup time of a script may be reduced by moving most of its code to a module
207 and having a small bootstrap script that imports that module. It is also
208 possible to name a :file:`.pyc` or :file:`.pyo` file directly on the command
209 line.
210
211* It is possible to have a file called :file:`spam.pyc` (or :file:`spam.pyo`
212 when :option:`-O` is used) without a file :file:`spam.py` for the same module.
213 This can be used to distribute a library of Python code in a form that is
214 moderately hard to reverse engineer.
215
216 .. index:: module: compileall
217
218* The module :mod:`compileall` can create :file:`.pyc` files (or :file:`.pyo`
219 files when :option:`-O` is used) for all modules in a directory.
220
Georg Brandl8ec7f652007-08-15 14:28:01 +0000221
222.. _tut-standardmodules:
223
224Standard Modules
225================
226
227.. index:: module: sys
228
229Python comes with a library of standard modules, described in a separate
230document, the Python Library Reference ("Library Reference" hereafter). Some
231modules are built into the interpreter; these provide access to operations that
232are not part of the core of the language but are nevertheless built in, either
233for efficiency or to provide access to operating system primitives such as
234system calls. The set of such modules is a configuration option which also
235depends on the underlying platform For example, the :mod:`winreg` module is only
236provided on Windows systems. One particular module deserves some attention:
237:mod:`sys`, which is built into every Python interpreter. The variables
238``sys.ps1`` and ``sys.ps2`` define the strings used as primary and secondary
Georg Brandlb19be572007-12-29 10:57:00 +0000239prompts::
Georg Brandl8ec7f652007-08-15 14:28:01 +0000240
241 >>> import sys
242 >>> sys.ps1
243 '>>> '
244 >>> sys.ps2
245 '... '
246 >>> sys.ps1 = 'C> '
247 C> print 'Yuck!'
248 Yuck!
249 C>
250
251
252These two variables are only defined if the interpreter is in interactive mode.
253
254The variable ``sys.path`` is a list of strings that determines the interpreter's
255search path for modules. It is initialized to a default path taken from the
256environment variable :envvar:`PYTHONPATH`, or from a built-in default if
257:envvar:`PYTHONPATH` is not set. You can modify it using standard list
258operations::
259
260 >>> import sys
261 >>> sys.path.append('/ufs/guido/lib/python')
262
263
264.. _tut-dir:
265
266The :func:`dir` Function
267========================
268
269The built-in function :func:`dir` is used to find out which names a module
270defines. It returns a sorted list of strings::
271
272 >>> import fibo, sys
273 >>> dir(fibo)
274 ['__name__', 'fib', 'fib2']
275 >>> dir(sys)
276 ['__displayhook__', '__doc__', '__excepthook__', '__name__', '__stderr__',
277 '__stdin__', '__stdout__', '_getframe', 'api_version', 'argv',
278 'builtin_module_names', 'byteorder', 'callstats', 'copyright',
279 'displayhook', 'exc_clear', 'exc_info', 'exc_type', 'excepthook',
280 'exec_prefix', 'executable', 'exit', 'getdefaultencoding', 'getdlopenflags',
281 'getrecursionlimit', 'getrefcount', 'hexversion', 'maxint', 'maxunicode',
282 'meta_path', 'modules', 'path', 'path_hooks', 'path_importer_cache',
283 'platform', 'prefix', 'ps1', 'ps2', 'setcheckinterval', 'setdlopenflags',
284 'setprofile', 'setrecursionlimit', 'settrace', 'stderr', 'stdin', 'stdout',
285 'version', 'version_info', 'warnoptions']
286
287Without arguments, :func:`dir` lists the names you have defined currently::
288
289 >>> a = [1, 2, 3, 4, 5]
290 >>> import fibo
291 >>> fib = fibo.fib
292 >>> dir()
293 ['__builtins__', '__doc__', '__file__', '__name__', 'a', 'fib', 'fibo', 'sys']
294
295Note that it lists all types of names: variables, modules, functions, etc.
296
297.. index:: module: __builtin__
298
299:func:`dir` does not list the names of built-in functions and variables. If you
300want a list of those, they are defined in the standard module
301:mod:`__builtin__`::
302
303 >>> import __builtin__
304 >>> dir(__builtin__)
305 ['ArithmeticError', 'AssertionError', 'AttributeError', 'DeprecationWarning',
306 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False',
307 'FloatingPointError', 'FutureWarning', 'IOError', 'ImportError',
308 'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt',
309 'LookupError', 'MemoryError', 'NameError', 'None', 'NotImplemented',
310 'NotImplementedError', 'OSError', 'OverflowError',
311 'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError',
312 'RuntimeWarning', 'StandardError', 'StopIteration', 'SyntaxError',
313 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'True',
314 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError',
315 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError',
316 'UserWarning', 'ValueError', 'Warning', 'WindowsError',
317 'ZeroDivisionError', '_', '__debug__', '__doc__', '__import__',
318 '__name__', 'abs', 'apply', 'basestring', 'bool', 'buffer',
319 'callable', 'chr', 'classmethod', 'cmp', 'coerce', 'compile',
320 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod',
321 'enumerate', 'eval', 'execfile', 'exit', 'file', 'filter', 'float',
322 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex',
323 'id', 'input', 'int', 'intern', 'isinstance', 'issubclass', 'iter',
324 'len', 'license', 'list', 'locals', 'long', 'map', 'max', 'min',
325 'object', 'oct', 'open', 'ord', 'pow', 'property', 'quit', 'range',
326 'raw_input', 'reduce', 'reload', 'repr', 'reversed', 'round', 'set',
327 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super',
328 'tuple', 'type', 'unichr', 'unicode', 'vars', 'xrange', 'zip']
329
330
331.. _tut-packages:
332
333Packages
334========
335
336Packages are a way of structuring Python's module namespace by using "dotted
337module names". For example, the module name :mod:`A.B` designates a submodule
338named ``B`` in a package named ``A``. Just like the use of modules saves the
339authors of different modules from having to worry about each other's global
340variable names, the use of dotted module names saves the authors of multi-module
341packages like NumPy or the Python Imaging Library from having to worry about
342each other's module names.
343
344Suppose you want to design a collection of modules (a "package") for the uniform
345handling of sound files and sound data. There are many different sound file
346formats (usually recognized by their extension, for example: :file:`.wav`,
347:file:`.aiff`, :file:`.au`), so you may need to create and maintain a growing
348collection of modules for the conversion between the various file formats.
349There are also many different operations you might want to perform on sound data
350(such as mixing, adding echo, applying an equalizer function, creating an
351artificial stereo effect), so in addition you will be writing a never-ending
352stream of modules to perform these operations. Here's a possible structure for
353your package (expressed in terms of a hierarchical filesystem)::
354
355 sound/ Top-level package
356 __init__.py Initialize the sound package
357 formats/ Subpackage for file format conversions
358 __init__.py
359 wavread.py
360 wavwrite.py
361 aiffread.py
362 aiffwrite.py
363 auread.py
364 auwrite.py
365 ...
366 effects/ Subpackage for sound effects
367 __init__.py
368 echo.py
369 surround.py
370 reverse.py
371 ...
372 filters/ Subpackage for filters
373 __init__.py
374 equalizer.py
375 vocoder.py
376 karaoke.py
377 ...
378
379When importing the package, Python searches through the directories on
380``sys.path`` looking for the package subdirectory.
381
382The :file:`__init__.py` files are required to make Python treat the directories
383as containing packages; this is done to prevent directories with a common name,
384such as ``string``, from unintentionally hiding valid modules that occur later
385on the module search path. In the simplest case, :file:`__init__.py` can just be
386an empty file, but it can also execute initialization code for the package or
387set the ``__all__`` variable, described later.
388
389Users of the package can import individual modules from the package, for
390example::
391
392 import sound.effects.echo
393
394This loads the submodule :mod:`sound.effects.echo`. It must be referenced with
395its full name. ::
396
397 sound.effects.echo.echofilter(input, output, delay=0.7, atten=4)
398
399An alternative way of importing the submodule is::
400
401 from sound.effects import echo
402
403This also loads the submodule :mod:`echo`, and makes it available without its
404package prefix, so it can be used as follows::
405
406 echo.echofilter(input, output, delay=0.7, atten=4)
407
408Yet another variation is to import the desired function or variable directly::
409
410 from sound.effects.echo import echofilter
411
412Again, this loads the submodule :mod:`echo`, but this makes its function
413:func:`echofilter` directly available::
414
415 echofilter(input, output, delay=0.7, atten=4)
416
417Note that when using ``from package import item``, the item can be either a
418submodule (or subpackage) of the package, or some other name defined in the
419package, like a function, class or variable. The ``import`` statement first
420tests whether the item is defined in the package; if not, it assumes it is a
421module and attempts to load it. If it fails to find it, an :exc:`ImportError`
422exception is raised.
423
424Contrarily, when using syntax like ``import item.subitem.subsubitem``, each item
425except for the last must be a package; the last item can be a module or a
426package but can't be a class or function or variable defined in the previous
427item.
428
429
430.. _tut-pkg-import-star:
431
432Importing \* From a Package
433---------------------------
434
435.. index:: single: __all__
436
437Now what happens when the user writes ``from sound.effects import *``? Ideally,
438one would hope that this somehow goes out to the filesystem, finds which
439submodules are present in the package, and imports them all. Unfortunately,
440this operation does not work very well on Windows platforms, where the
441filesystem does not always have accurate information about the case of a
442filename! On these platforms, there is no guaranteed way to know whether a file
443:file:`ECHO.PY` should be imported as a module :mod:`echo`, :mod:`Echo` or
444:mod:`ECHO`. (For example, Windows 95 has the annoying practice of showing all
445file names with a capitalized first letter.) The DOS 8+3 filename restriction
446adds another interesting problem for long module names.
447
Georg Brandl8ec7f652007-08-15 14:28:01 +0000448The only solution is for the package author to provide an explicit index of the
449package. The import statement uses the following convention: if a package's
450:file:`__init__.py` code defines a list named ``__all__``, it is taken to be the
451list of module names that should be imported when ``from package import *`` is
452encountered. It is up to the package author to keep this list up-to-date when a
453new version of the package is released. Package authors may also decide not to
454support it, if they don't see a use for importing \* from their package. For
455example, the file :file:`sounds/effects/__init__.py` could contain the following
456code::
457
458 __all__ = ["echo", "surround", "reverse"]
459
460This would mean that ``from sound.effects import *`` would import the three
461named submodules of the :mod:`sound` package.
462
463If ``__all__`` is not defined, the statement ``from sound.effects import *``
464does *not* import all submodules from the package :mod:`sound.effects` into the
465current namespace; it only ensures that the package :mod:`sound.effects` has
466been imported (possibly running any initialization code in :file:`__init__.py`)
467and then imports whatever names are defined in the package. This includes any
468names defined (and submodules explicitly loaded) by :file:`__init__.py`. It
469also includes any submodules of the package that were explicitly loaded by
470previous import statements. Consider this code::
471
472 import sound.effects.echo
473 import sound.effects.surround
474 from sound.effects import *
475
476In this example, the echo and surround modules are imported in the current
477namespace because they are defined in the :mod:`sound.effects` package when the
478``from...import`` statement is executed. (This also works when ``__all__`` is
479defined.)
480
481Note that in general the practice of importing ``*`` from a module or package is
482frowned upon, since it often causes poorly readable code. However, it is okay to
483use it to save typing in interactive sessions, and certain modules are designed
484to export only names that follow certain patterns.
485
486Remember, there is nothing wrong with using ``from Package import
487specific_submodule``! In fact, this is the recommended notation unless the
488importing module needs to use submodules with the same name from different
489packages.
490
491
492Intra-package References
493------------------------
494
495The submodules often need to refer to each other. For example, the
496:mod:`surround` module might use the :mod:`echo` module. In fact, such
497references are so common that the :keyword:`import` statement first looks in the
498containing package before looking in the standard module search path. Thus, the
499:mod:`surround` module can simply use ``import echo`` or ``from echo import
500echofilter``. If the imported module is not found in the current package (the
501package of which the current module is a submodule), the :keyword:`import`
502statement looks for a top-level module with the given name.
503
504When packages are structured into subpackages (as with the :mod:`sound` package
505in the example), you can use absolute imports to refer to submodules of siblings
506packages. For example, if the module :mod:`sound.filters.vocoder` needs to use
507the :mod:`echo` module in the :mod:`sound.effects` package, it can use ``from
508sound.effects import echo``.
509
510Starting with Python 2.5, in addition to the implicit relative imports described
511above, you can write explicit relative imports with the ``from module import
512name`` form of import statement. These explicit relative imports use leading
513dots to indicate the current and parent packages involved in the relative
514import. From the :mod:`surround` module for example, you might use::
515
516 from . import echo
517 from .. import formats
518 from ..filters import equalizer
519
520Note that both explicit and implicit relative imports are based on the name of
521the current module. Since the name of the main module is always ``"__main__"``,
522modules intended for use as the main module of a Python application should
523always use absolute imports.
524
525
526Packages in Multiple Directories
527--------------------------------
528
529Packages support one more special attribute, :attr:`__path__`. This is
530initialized to be a list containing the name of the directory holding the
531package's :file:`__init__.py` before the code in that file is executed. This
532variable can be modified; doing so affects future searches for modules and
533subpackages contained in the package.
534
535While this feature is not often needed, it can be used to extend the set of
536modules found in a package.
537
538
539.. rubric:: Footnotes
540
541.. [#] In fact function definitions are also 'statements' that are 'executed'; the
542 execution enters the function name in the module's global symbol table.
543