blob: eee989faa80174e5a858f705025c588ff40db4e4 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +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:
Guido van Rossum0616b792007-08-31 03:25:11 +000033 print(b, end=' ')
Georg Brandl116aa622007-08-15 14:28:22 +000034 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 (``_``).
Guido van Rossum0616b792007-08-31 03:25:11 +0000105In most cases Python programmers do not use this facility since it introduces
106an unknown set of names into the interpreter, possibly hiding some things
107you have already defined.
Georg Brandl116aa622007-08-15 14:28:22 +0000108
109
110.. _tut-modulesasscripts:
111
112Executing modules as scripts
113----------------------------
114
115When you run a Python module with ::
116
117 python fibo.py <arguments>
118
119the code in the module will be executed, just as if you imported it, but with
120the ``__name__`` set to ``"__main__"``. That means that by adding this code at
121the end of your module::
122
123 if __name__ == "__main__":
124 import sys
125 fib(int(sys.argv[1]))
126
127you can make the file usable as a script as well as an importable module,
128because the code that parses the command line only runs if the module is
129executed as the "main" file::
130
131 $ python fibo.py 50
132 1 1 2 3 5 8 13 21 34
133
134If the module is imported, the code is not run::
135
136 >>> import fibo
137 >>>
138
139This is often used either to provide a convenient user interface to a module, or
140for testing purposes (running the module as a script executes a test suite).
141
142
143.. _tut-searchpath:
144
145The Module Search Path
146----------------------
147
148.. index:: triple: module; search; path
149
150When a module named :mod:`spam` is imported, the interpreter searches for a file
151named :file:`spam.py` in the current directory, and then in the list of
152directories specified by the environment variable :envvar:`PYTHONPATH`. This
153has the same syntax as the shell variable :envvar:`PATH`, that is, a list of
154directory names. When :envvar:`PYTHONPATH` is not set, or when the file is not
155found there, the search continues in an installation-dependent default path; on
156Unix, this is usually :file:`.:/usr/local/lib/python`.
157
158Actually, modules are searched in the list of directories given by the variable
159``sys.path`` which is initialized from the directory containing the input script
160(or the current directory), :envvar:`PYTHONPATH` and the installation- dependent
161default. This allows Python programs that know what they're doing to modify or
162replace the module search path. Note that because the directory containing the
163script being run is on the search path, it is important that the script not have
164the same name as a standard module, or Python will attempt to load the script as
165a module when that module is imported. This will generally be an error. See
166section :ref:`tut-standardmodules` for more information.
167
Guido van Rossum0616b792007-08-31 03:25:11 +0000168.. %
169 Do we need stuff on zip files etc. ? DUBOIS
Georg Brandl116aa622007-08-15 14:28:22 +0000170
171"Compiled" Python files
172-----------------------
173
174As an important speed-up of the start-up time for short programs that use a lot
175of standard modules, if a file called :file:`spam.pyc` exists in the directory
176where :file:`spam.py` is found, this is assumed to contain an
177already-"byte-compiled" version of the module :mod:`spam`. The modification time
178of the version of :file:`spam.py` used to create :file:`spam.pyc` is recorded in
179:file:`spam.pyc`, and the :file:`.pyc` file is ignored if these don't match.
180
181Normally, you don't need to do anything to create the :file:`spam.pyc` file.
182Whenever :file:`spam.py` is successfully compiled, an attempt is made to write
183the compiled version to :file:`spam.pyc`. It is not an error if this attempt
184fails; if for any reason the file is not written completely, the resulting
185:file:`spam.pyc` file will be recognized as invalid and thus ignored later. The
186contents of the :file:`spam.pyc` file are platform independent, so a Python
187module directory can be shared by machines of different architectures.
188
189Some tips for experts:
190
191* When the Python interpreter is invoked with the :option:`-O` flag, optimized
192 code is generated and stored in :file:`.pyo` files. The optimizer currently
193 doesn't help much; it only removes :keyword:`assert` statements. When
Georg Brandl9afde1c2007-11-01 20:32:30 +0000194 :option:`-O` is used, *all* :term:`bytecode` is optimized; ``.pyc`` files are
195 ignored and ``.py`` files are compiled to optimized bytecode.
Georg Brandl116aa622007-08-15 14:28:22 +0000196
197* Passing two :option:`-O` flags to the Python interpreter (:option:`-OO`) will
198 cause the bytecode compiler to perform optimizations that could in some rare
199 cases result in malfunctioning programs. Currently only ``__doc__`` strings are
200 removed from the bytecode, resulting in more compact :file:`.pyo` files. Since
201 some programs may rely on having these available, you should only use this
202 option if you know what you're doing.
203
204* A program doesn't run any faster when it is read from a :file:`.pyc` or
205 :file:`.pyo` file than when it is read from a :file:`.py` file; the only thing
206 that's faster about :file:`.pyc` or :file:`.pyo` files is the speed with which
207 they are loaded.
208
209* When a script is run by giving its name on the command line, the bytecode for
210 the script is never written to a :file:`.pyc` or :file:`.pyo` file. Thus, the
211 startup time of a script may be reduced by moving most of its code to a module
212 and having a small bootstrap script that imports that module. It is also
213 possible to name a :file:`.pyc` or :file:`.pyo` file directly on the command
214 line.
215
216* It is possible to have a file called :file:`spam.pyc` (or :file:`spam.pyo`
217 when :option:`-O` is used) without a file :file:`spam.py` for the same module.
218 This can be used to distribute a library of Python code in a form that is
219 moderately hard to reverse engineer.
220
221 .. index:: module: compileall
222
223* The module :mod:`compileall` can create :file:`.pyc` files (or :file:`.pyo`
224 files when :option:`-O` is used) for all modules in a directory.
225
Georg Brandl116aa622007-08-15 14:28:22 +0000226
227.. _tut-standardmodules:
228
229Standard Modules
230================
231
232.. index:: module: sys
233
234Python comes with a library of standard modules, described in a separate
235document, the Python Library Reference ("Library Reference" hereafter). Some
236modules are built into the interpreter; these provide access to operations that
237are not part of the core of the language but are nevertheless built in, either
238for efficiency or to provide access to operating system primitives such as
239system calls. The set of such modules is a configuration option which also
240depends on the underlying platform For example, the :mod:`winreg` module is only
241provided on Windows systems. One particular module deserves some attention:
242:mod:`sys`, which is built into every Python interpreter. The variables
243``sys.ps1`` and ``sys.ps2`` define the strings used as primary and secondary
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000244prompts::
Georg Brandl116aa622007-08-15 14:28:22 +0000245
246 >>> import sys
247 >>> sys.ps1
248 '>>> '
249 >>> sys.ps2
250 '... '
251 >>> sys.ps1 = 'C> '
Guido van Rossum0616b792007-08-31 03:25:11 +0000252 C> print('Yuck!')
Georg Brandl116aa622007-08-15 14:28:22 +0000253 Yuck!
254 C>
255
256
257These two variables are only defined if the interpreter is in interactive mode.
258
259The variable ``sys.path`` is a list of strings that determines the interpreter's
260search path for modules. It is initialized to a default path taken from the
261environment variable :envvar:`PYTHONPATH`, or from a built-in default if
262:envvar:`PYTHONPATH` is not set. You can modify it using standard list
263operations::
264
265 >>> import sys
266 >>> sys.path.append('/ufs/guido/lib/python')
267
268
269.. _tut-dir:
270
271The :func:`dir` Function
272========================
273
274The built-in function :func:`dir` is used to find out which names a module
275defines. It returns a sorted list of strings::
276
277 >>> import fibo, sys
278 >>> dir(fibo)
279 ['__name__', 'fib', 'fib2']
280 >>> dir(sys)
281 ['__displayhook__', '__doc__', '__excepthook__', '__name__', '__stderr__',
282 '__stdin__', '__stdout__', '_getframe', 'api_version', 'argv',
283 'builtin_module_names', 'byteorder', 'callstats', 'copyright',
284 'displayhook', 'exc_info', 'excepthook',
285 'exec_prefix', 'executable', 'exit', 'getdefaultencoding', 'getdlopenflags',
286 'getrecursionlimit', 'getrefcount', 'hexversion', 'maxint', 'maxunicode',
287 'meta_path', 'modules', 'path', 'path_hooks', 'path_importer_cache',
288 'platform', 'prefix', 'ps1', 'ps2', 'setcheckinterval', 'setdlopenflags',
289 'setprofile', 'setrecursionlimit', 'settrace', 'stderr', 'stdin', 'stdout',
290 'version', 'version_info', 'warnoptions']
291
292Without arguments, :func:`dir` lists the names you have defined currently::
293
294 >>> a = [1, 2, 3, 4, 5]
295 >>> import fibo
296 >>> fib = fibo.fib
297 >>> dir()
298 ['__builtins__', '__doc__', '__file__', '__name__', 'a', 'fib', 'fibo', 'sys']
299
300Note that it lists all types of names: variables, modules, functions, etc.
301
Georg Brandl1a3284e2007-12-02 09:40:06 +0000302.. index:: module: builtins
Georg Brandl116aa622007-08-15 14:28:22 +0000303
304:func:`dir` does not list the names of built-in functions and variables. If you
305want a list of those, they are defined in the standard module
Georg Brandl1a3284e2007-12-02 09:40:06 +0000306:mod:`builtins`::
Georg Brandl116aa622007-08-15 14:28:22 +0000307
Georg Brandl1a3284e2007-12-02 09:40:06 +0000308 >>> import builtins
309 >>> dir(builtins)
Georg Brandl116aa622007-08-15 14:28:22 +0000310
Guido van Rossum0616b792007-08-31 03:25:11 +0000311 ['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'Buffer
312 Error', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EnvironmentError', 'Excep
313 tion', 'False', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError
314 ', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'KeyError',
315 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'NameError', 'None', 'NotImp
316 lemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecatio
317 nWarning', 'ReferenceError', 'RuntimeError', 'RuntimeWarning', 'StopIteration',
318 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'True',
319 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', '
320 UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueE
321 rror', 'Warning', 'ZeroDivisionError', '__build_class__', '__debug__', '__doc__'
322 , '__import__', '__name__', 'abs', 'all', 'any', 'basestring', 'bin', 'bool', 'b
323 uffer', 'bytes', 'chr', 'chr8', 'classmethod', 'cmp', 'compile', 'complex', 'cop
324 yright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'ex
325 ec', 'exit', 'filter', 'float', 'frozenset', 'getattr', 'globals', 'hasattr', 'h
326 ash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', '
327 len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'o
328 bject', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr
329 ', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'st
330 r', 'str8', 'sum', 'super', 'trunc', 'tuple', 'type', 'vars', 'zip']
Georg Brandl116aa622007-08-15 14:28:22 +0000331
332.. _tut-packages:
333
334Packages
335========
336
337Packages are a way of structuring Python's module namespace by using "dotted
338module names". For example, the module name :mod:`A.B` designates a submodule
339named ``B`` in a package named ``A``. Just like the use of modules saves the
340authors of different modules from having to worry about each other's global
341variable names, the use of dotted module names saves the authors of multi-module
342packages like NumPy or the Python Imaging Library from having to worry about
343each other's module names.
344
345Suppose you want to design a collection of modules (a "package") for the uniform
346handling of sound files and sound data. There are many different sound file
347formats (usually recognized by their extension, for example: :file:`.wav`,
348:file:`.aiff`, :file:`.au`), so you may need to create and maintain a growing
349collection of modules for the conversion between the various file formats.
350There are also many different operations you might want to perform on sound data
351(such as mixing, adding echo, applying an equalizer function, creating an
352artificial stereo effect), so in addition you will be writing a never-ending
353stream of modules to perform these operations. Here's a possible structure for
354your package (expressed in terms of a hierarchical filesystem)::
355
356 sound/ Top-level package
357 __init__.py Initialize the sound package
358 formats/ Subpackage for file format conversions
359 __init__.py
360 wavread.py
361 wavwrite.py
362 aiffread.py
363 aiffwrite.py
364 auread.py
365 auwrite.py
366 ...
367 effects/ Subpackage for sound effects
368 __init__.py
369 echo.py
370 surround.py
371 reverse.py
372 ...
373 filters/ Subpackage for filters
374 __init__.py
375 equalizer.py
376 vocoder.py
377 karaoke.py
378 ...
379
380When importing the package, Python searches through the directories on
381``sys.path`` looking for the package subdirectory.
382
383The :file:`__init__.py` files are required to make Python treat the directories
384as containing packages; this is done to prevent directories with a common name,
385such as ``string``, from unintentionally hiding valid modules that occur later
386on the module search path. In the simplest case, :file:`__init__.py` can just be
387an empty file, but it can also execute initialization code for the package or
388set the ``__all__`` variable, described later.
389
390Users of the package can import individual modules from the package, for
391example::
392
393 import sound.effects.echo
394
395This loads the submodule :mod:`sound.effects.echo`. It must be referenced with
396its full name. ::
397
398 sound.effects.echo.echofilter(input, output, delay=0.7, atten=4)
399
400An alternative way of importing the submodule is::
401
402 from sound.effects import echo
403
404This also loads the submodule :mod:`echo`, and makes it available without its
405package prefix, so it can be used as follows::
406
407 echo.echofilter(input, output, delay=0.7, atten=4)
408
409Yet another variation is to import the desired function or variable directly::
410
411 from sound.effects.echo import echofilter
412
413Again, this loads the submodule :mod:`echo`, but this makes its function
414:func:`echofilter` directly available::
415
416 echofilter(input, output, delay=0.7, atten=4)
417
418Note that when using ``from package import item``, the item can be either a
419submodule (or subpackage) of the package, or some other name defined in the
420package, like a function, class or variable. The ``import`` statement first
421tests whether the item is defined in the package; if not, it assumes it is a
422module and attempts to load it. If it fails to find it, an :exc:`ImportError`
423exception is raised.
424
425Contrarily, when using syntax like ``import item.subitem.subsubitem``, each item
426except for the last must be a package; the last item can be a module or a
427package but can't be a class or function or variable defined in the previous
428item.
429
430
431.. _tut-pkg-import-star:
432
433Importing \* From a Package
434---------------------------
435
436.. index:: single: __all__
437
438Now what happens when the user writes ``from sound.effects import *``? Ideally,
439one would hope that this somehow goes out to the filesystem, finds which
440submodules are present in the package, and imports them all. Unfortunately,
441this operation does not work very well on Windows platforms, where the
442filesystem does not always have accurate information about the case of a
443filename! On these platforms, there is no guaranteed way to know whether a file
444:file:`ECHO.PY` should be imported as a module :mod:`echo`, :mod:`Echo` or
445:mod:`ECHO`. (For example, Windows 95 has the annoying practice of showing all
446file names with a capitalized first letter.) The DOS 8+3 filename restriction
447adds another interesting problem for long module names.
448
Georg Brandl116aa622007-08-15 14:28:22 +0000449The only solution is for the package author to provide an explicit index of the
450package. The import statement uses the following convention: if a package's
451:file:`__init__.py` code defines a list named ``__all__``, it is taken to be the
452list of module names that should be imported when ``from package import *`` is
453encountered. It is up to the package author to keep this list up-to-date when a
454new version of the package is released. Package authors may also decide not to
455support it, if they don't see a use for importing \* from their package. For
456example, the file :file:`sounds/effects/__init__.py` could contain the following
457code::
458
459 __all__ = ["echo", "surround", "reverse"]
460
461This would mean that ``from sound.effects import *`` would import the three
462named submodules of the :mod:`sound` package.
463
464If ``__all__`` is not defined, the statement ``from sound.effects import *``
465does *not* import all submodules from the package :mod:`sound.effects` into the
466current namespace; it only ensures that the package :mod:`sound.effects` has
467been imported (possibly running any initialization code in :file:`__init__.py`)
468and then imports whatever names are defined in the package. This includes any
469names defined (and submodules explicitly loaded) by :file:`__init__.py`. It
470also includes any submodules of the package that were explicitly loaded by
471previous import statements. Consider this code::
472
473 import sound.effects.echo
474 import sound.effects.surround
475 from sound.effects import *
476
477In this example, the echo and surround modules are imported in the current
478namespace because they are defined in the :mod:`sound.effects` package when the
479``from...import`` statement is executed. (This also works when ``__all__`` is
480defined.)
481
482Note that in general the practice of importing ``*`` from a module or package is
483frowned upon, since it often causes poorly readable code. However, it is okay to
484use it to save typing in interactive sessions, and certain modules are designed
485to export only names that follow certain patterns.
486
487Remember, there is nothing wrong with using ``from Package import
488specific_submodule``! In fact, this is the recommended notation unless the
489importing module needs to use submodules with the same name from different
490packages.
491
492
493Intra-package References
494------------------------
495
Georg Brandl116aa622007-08-15 14:28:22 +0000496When packages are structured into subpackages (as with the :mod:`sound` package
497in the example), you can use absolute imports to refer to submodules of siblings
498packages. For example, if the module :mod:`sound.filters.vocoder` needs to use
499the :mod:`echo` module in the :mod:`sound.effects` package, it can use ``from
500sound.effects import echo``.
501
Georg Brandle6bcc912008-05-12 18:05:20 +0000502You can also write relative imports, with the ``from module import name`` form
503of import statement. These imports use leading dots to indicate the current and
504parent packages involved in the relative import. From the :mod:`surround`
505module for example, you might use::
Georg Brandl116aa622007-08-15 14:28:22 +0000506
507 from . import echo
508 from .. import formats
509 from ..filters import equalizer
510
Georg Brandle6bcc912008-05-12 18:05:20 +0000511Note that relative imports are based on the name of the current module. Since
512the name of the main module is always ``"__main__"``, modules intended for use
513as the main module of a Python application must always use absolute imports.
Georg Brandl116aa622007-08-15 14:28:22 +0000514
515
516Packages in Multiple Directories
517--------------------------------
518
519Packages support one more special attribute, :attr:`__path__`. This is
520initialized to be a list containing the name of the directory holding the
521package's :file:`__init__.py` before the code in that file is executed. This
522variable can be modified; doing so affects future searches for modules and
523subpackages contained in the package.
524
525While this feature is not often needed, it can be used to extend the set of
526modules found in a package.
527
528
529.. rubric:: Footnotes
530
531.. [#] In fact function definitions are also 'statements' that are 'executed'; the
532 execution enters the function name in the module's global symbol table.
533