blob: af595e5ca04d7e17185e47d4a5fbc24a2405dba1 [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
Raymond Hettinger8c26a342017-10-14 07:36:08 -070032 while a < n:
33 print(a, end=' ')
Georg Brandl116aa622007-08-15 14:28:22 +000034 a, b = b, a+b
Georg Brandl11e18b02008-08-05 09:04:16 +000035 print()
Georg Brandl116aa622007-08-15 14:28:22 +000036
Serhiy Storchakadba90392016-05-10 12:01:23 +030037 def fib2(n): # return Fibonacci series up to n
Georg Brandl116aa622007-08-15 14:28:22 +000038 result = []
39 a, b = 0, 1
Raymond Hettinger8c26a342017-10-14 07:36:08 -070040 while a < n:
41 result.append(a)
Georg Brandl116aa622007-08-15 14:28:22 +000042 a, b = b, a+b
43 return result
44
45Now enter the Python interpreter and import this module with the following
46command::
47
48 >>> import fibo
49
50This does not enter the names of the functions defined in ``fibo`` directly in
51the current symbol table; it only enters the module name ``fibo`` there. Using
52the module name you can access the functions::
53
54 >>> fibo.fib(1000)
Raymond Hettinger8c26a342017-10-14 07:36:08 -070055 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
Georg Brandl116aa622007-08-15 14:28:22 +000056 >>> fibo.fib2(100)
Raymond Hettinger8c26a342017-10-14 07:36:08 -070057 [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
Georg Brandl116aa622007-08-15 14:28:22 +000058 >>> fibo.__name__
59 'fibo'
60
61If you intend to use a function often you can assign it to a local name::
62
63 >>> fib = fibo.fib
64 >>> fib(500)
Raymond Hettinger8c26a342017-10-14 07:36:08 -070065 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377
Georg Brandl116aa622007-08-15 14:28:22 +000066
67
68.. _tut-moremodules:
69
70More on Modules
71===============
72
73A module can contain executable statements as well as function definitions.
74These statements are intended to initialize the module. They are executed only
R David Murray25187e62013-04-21 16:58:36 -040075the *first* time the module name is encountered in an import statement. [#]_
76(They are also run if the file is executed as a script.)
Georg Brandl116aa622007-08-15 14:28:22 +000077
78Each module has its own private symbol table, which is used as the global symbol
79table by all functions defined in the module. Thus, the author of a module can
80use global variables in the module without worrying about accidental clashes
81with a user's global variables. On the other hand, if you know what you are
82doing you can touch a module's global variables with the same notation used to
83refer to its functions, ``modname.itemname``.
84
85Modules can import other modules. It is customary but not required to place all
86:keyword:`import` statements at the beginning of a module (or script, for that
87matter). The imported module names are placed in the importing module's global
88symbol table.
89
90There is a variant of the :keyword:`import` statement that imports names from a
91module directly into the importing module's symbol table. For example::
92
93 >>> from fibo import fib, fib2
94 >>> fib(500)
Raymond Hettinger8c26a342017-10-14 07:36:08 -070095 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377
Georg Brandl116aa622007-08-15 14:28:22 +000096
97This does not introduce the module name from which the imports are taken in the
98local symbol table (so in the example, ``fibo`` is not defined).
99
100There is even a variant to import all names that a module defines::
101
102 >>> from fibo import *
103 >>> fib(500)
Raymond Hettinger8c26a342017-10-14 07:36:08 -0700104 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377
Georg Brandl116aa622007-08-15 14:28:22 +0000105
106This imports all names except those beginning with an underscore (``_``).
Georg Brandl48310cd2009-01-03 21:18:54 +0000107In most cases Python programmers do not use this facility since it introduces
108an unknown set of names into the interpreter, possibly hiding some things
Guido van Rossum0616b792007-08-31 03:25:11 +0000109you have already defined.
Georg Brandl116aa622007-08-15 14:28:22 +0000110
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000111Note that in general the practice of importing ``*`` from a module or package is
112frowned upon, since it often causes poorly readable code. However, it is okay to
113use it to save typing in interactive sessions.
114
Serhiy Storchaka2b57c432018-12-19 08:09:46 +0200115If the module name is followed by :keyword:`!as`, then the name
116following :keyword:`!as` is bound directly to the imported module.
Mario Corcherofbee8822018-02-25 19:11:12 +0000117
118::
119
120 >>> import fibo as fib
121 >>> fib.fib(500)
122 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377
123
124This is effectively importing the module in the same way that ``import fibo``
125will do, with the only difference of it being available as ``fib``.
126
127It can also be used when utilising :keyword:`from` with similar effects::
128
129 >>> from fibo import fib as fibonacci
130 >>> fibonacci(500)
131 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377
132
133
Alexandre Vassalotti6461e102008-05-15 22:09:29 +0000134.. note::
135
136 For efficiency reasons, each module is only imported once per interpreter
137 session. Therefore, if you change your modules, you must restart the
138 interpreter -- or, if it's just one module you want to test interactively,
Senthil Kumaran80538e92016-01-16 18:43:24 -0800139 use :func:`importlib.reload`, e.g. ``import importlib;
140 importlib.reload(modulename)``.
Alexandre Vassalotti6461e102008-05-15 22:09:29 +0000141
Georg Brandl116aa622007-08-15 14:28:22 +0000142
143.. _tut-modulesasscripts:
144
145Executing modules as scripts
146----------------------------
147
148When you run a Python module with ::
149
150 python fibo.py <arguments>
151
152the code in the module will be executed, just as if you imported it, but with
153the ``__name__`` set to ``"__main__"``. That means that by adding this code at
154the end of your module::
155
156 if __name__ == "__main__":
157 import sys
158 fib(int(sys.argv[1]))
159
160you can make the file usable as a script as well as an importable module,
161because the code that parses the command line only runs if the module is
Martin Panter1050d2d2016-07-26 11:18:21 +0200162executed as the "main" file:
163
164.. code-block:: shell-session
Georg Brandl116aa622007-08-15 14:28:22 +0000165
166 $ python fibo.py 50
Raymond Hettinger8c26a342017-10-14 07:36:08 -0700167 0 1 1 2 3 5 8 13 21 34
Georg Brandl116aa622007-08-15 14:28:22 +0000168
169If the module is imported, the code is not run::
170
171 >>> import fibo
172 >>>
173
174This is often used either to provide a convenient user interface to a module, or
175for testing purposes (running the module as a script executes a test suite).
176
177
178.. _tut-searchpath:
179
180The Module Search Path
181----------------------
182
183.. index:: triple: module; search; path
184
Sandro Tosif0229aa2012-01-19 11:29:26 +0100185When a module named :mod:`spam` is imported, the interpreter first searches for
186a built-in module with that name. If not found, it then searches for a file
187named :file:`spam.py` in a list of directories given by the variable
188:data:`sys.path`. :data:`sys.path` is initialized from these locations:
Georg Brandl116aa622007-08-15 14:28:22 +0000189
Brett Cannonf811bbf2014-02-06 09:22:51 -0500190* The directory containing the input script (or the current directory when no
191 file is specified).
Sandro Tosif0229aa2012-01-19 11:29:26 +0100192* :envvar:`PYTHONPATH` (a list of directory names, with the same syntax as the
193 shell variable :envvar:`PATH`).
Brett Cannonf811bbf2014-02-06 09:22:51 -0500194* The installation-dependent default.
195
196.. note::
197 On file systems which support symlinks, the directory containing the input
198 script is calculated after the symlink is followed. In other words the
199 directory containing the symlink is **not** added to the module search path.
Sandro Tosif0229aa2012-01-19 11:29:26 +0100200
201After initialization, Python programs can modify :data:`sys.path`. The
202directory containing the script being run is placed at the beginning of the
203search path, ahead of the standard library path. This means that scripts in that
204directory will be loaded instead of modules of the same name in the library
205directory. This is an error unless the replacement is intended. See section
206:ref:`tut-standardmodules` for more information.
Georg Brandl116aa622007-08-15 14:28:22 +0000207
Guido van Rossum0616b792007-08-31 03:25:11 +0000208.. %
209 Do we need stuff on zip files etc. ? DUBOIS
Georg Brandl116aa622007-08-15 14:28:22 +0000210
211"Compiled" Python files
212-----------------------
213
Georg Brandl5db7c542013-10-12 19:13:23 +0200214To speed up loading modules, Python caches the compiled version of each module
Georg Brandl325a1c22013-10-27 09:16:01 +0100215in the ``__pycache__`` directory under the name :file:`module.{version}.pyc`,
Georg Brandl5db7c542013-10-12 19:13:23 +0200216where the version encodes the format of the compiled file; it generally contains
217the Python version number. For example, in CPython release 3.3 the compiled
218version of spam.py would be cached as ``__pycache__/spam.cpython-33.pyc``. This
219naming convention allows compiled modules from different releases and different
220versions of Python to coexist.
Georg Brandl116aa622007-08-15 14:28:22 +0000221
Georg Brandl5db7c542013-10-12 19:13:23 +0200222Python checks the modification date of the source against the compiled version
223to see if it's out of date and needs to be recompiled. This is a completely
224automatic process. Also, the compiled modules are platform-independent, so the
225same library can be shared among systems with different architectures.
226
227Python does not check the cache in two circumstances. First, it always
228recompiles and does not store the result for the module that's loaded directly
229from the command line. Second, it does not check the cache if there is no
230source module. To support a non-source (compiled only) distribution, the
231compiled module must be in the source directory, and there must not be a source
232module.
Georg Brandl116aa622007-08-15 14:28:22 +0000233
234Some tips for experts:
235
Georg Brandl5db7c542013-10-12 19:13:23 +0200236* You can use the :option:`-O` or :option:`-OO` switches on the Python command
237 to reduce the size of a compiled module. The ``-O`` switch removes assert
238 statements, the ``-OO`` switch removes both assert statements and __doc__
239 strings. Since some programs may rely on having these available, you should
240 only use this option if you know what you're doing. "Optimized" modules have
Brett Cannonf299abd2015-04-13 14:21:02 -0400241 an ``opt-`` tag and are usually smaller. Future releases may
Georg Brandl5db7c542013-10-12 19:13:23 +0200242 change the effects of optimization.
Georg Brandl116aa622007-08-15 14:28:22 +0000243
Brett Cannonf299abd2015-04-13 14:21:02 -0400244* A program doesn't run any faster when it is read from a ``.pyc``
Georg Brandl5db7c542013-10-12 19:13:23 +0200245 file than when it is read from a ``.py`` file; the only thing that's faster
Brett Cannonf299abd2015-04-13 14:21:02 -0400246 about ``.pyc`` files is the speed with which they are loaded.
Georg Brandl116aa622007-08-15 14:28:22 +0000247
Brett Cannonf299abd2015-04-13 14:21:02 -0400248* The module :mod:`compileall` can create .pyc files for all modules in a
249 directory.
Georg Brandl116aa622007-08-15 14:28:22 +0000250
Georg Brandl5db7c542013-10-12 19:13:23 +0200251* There is more detail on this process, including a flow chart of the
Behzad B. Mokhtaridf748c22018-06-27 08:27:39 +0430252 decisions, in :pep:`3147`.
Georg Brandl116aa622007-08-15 14:28:22 +0000253
Georg Brandl116aa622007-08-15 14:28:22 +0000254
255.. _tut-standardmodules:
256
257Standard Modules
258================
259
260.. index:: module: sys
261
262Python comes with a library of standard modules, described in a separate
263document, the Python Library Reference ("Library Reference" hereafter). Some
264modules are built into the interpreter; these provide access to operations that
265are not part of the core of the language but are nevertheless built in, either
266for efficiency or to provide access to operating system primitives such as
267system calls. The set of such modules is a configuration option which also
Sandro Tosida9df922012-08-04 19:42:24 +0200268depends on the underlying platform. For example, the :mod:`winreg` module is only
Georg Brandl116aa622007-08-15 14:28:22 +0000269provided on Windows systems. One particular module deserves some attention:
270:mod:`sys`, which is built into every Python interpreter. The variables
271``sys.ps1`` and ``sys.ps2`` define the strings used as primary and secondary
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000272prompts::
Georg Brandl116aa622007-08-15 14:28:22 +0000273
274 >>> import sys
275 >>> sys.ps1
276 '>>> '
277 >>> sys.ps2
278 '... '
279 >>> sys.ps1 = 'C> '
Guido van Rossum0616b792007-08-31 03:25:11 +0000280 C> print('Yuck!')
Georg Brandl116aa622007-08-15 14:28:22 +0000281 Yuck!
282 C>
283
284
285These two variables are only defined if the interpreter is in interactive mode.
286
287The variable ``sys.path`` is a list of strings that determines the interpreter's
288search path for modules. It is initialized to a default path taken from the
289environment variable :envvar:`PYTHONPATH`, or from a built-in default if
290:envvar:`PYTHONPATH` is not set. You can modify it using standard list
291operations::
292
293 >>> import sys
294 >>> sys.path.append('/ufs/guido/lib/python')
295
296
297.. _tut-dir:
298
299The :func:`dir` Function
300========================
301
302The built-in function :func:`dir` is used to find out which names a module
303defines. It returns a sorted list of strings::
304
305 >>> import fibo, sys
306 >>> dir(fibo)
307 ['__name__', 'fib', 'fib2']
Ezio Melotti52e85502012-11-17 12:50:14 +0200308 >>> dir(sys) # doctest: +NORMALIZE_WHITESPACE
Xtreak080b6b42019-06-25 17:46:55 +0530309 ['__breakpointhook__', '__displayhook__', '__doc__', '__excepthook__',
310 '__interactivehook__', '__loader__', '__name__', '__package__', '__spec__',
311 '__stderr__', '__stdin__', '__stdout__', '__unraisablehook__',
312 '_clear_type_cache', '_current_frames', '_debugmallocstats', '_framework',
313 '_getframe', '_git', '_home', '_xoptions', 'abiflags', 'addaudithook',
314 'api_version', 'argv', 'audit', 'base_exec_prefix', 'base_prefix',
315 'breakpointhook', 'builtin_module_names', 'byteorder', 'call_tracing',
316 'callstats', 'copyright', 'displayhook', 'dont_write_bytecode', 'exc_info',
317 'excepthook', 'exec_prefix', 'executable', 'exit', 'flags', 'float_info',
318 'float_repr_style', 'get_asyncgen_hooks', 'get_coroutine_origin_tracking_depth',
319 'getallocatedblocks', 'getdefaultencoding', 'getdlopenflags',
320 'getfilesystemencodeerrors', 'getfilesystemencoding', 'getprofile',
321 'getrecursionlimit', 'getrefcount', 'getsizeof', 'getswitchinterval',
Ezio Melottiac6ca3d2012-11-17 12:56:29 +0200322 'gettrace', 'hash_info', 'hexversion', 'implementation', 'int_info',
Xtreak080b6b42019-06-25 17:46:55 +0530323 'intern', 'is_finalizing', 'last_traceback', 'last_type', 'last_value',
324 'maxsize', 'maxunicode', 'meta_path', 'modules', 'path', 'path_hooks',
325 'path_importer_cache', 'platform', 'prefix', 'ps1', 'ps2', 'pycache_prefix',
326 'set_asyncgen_hooks', 'set_coroutine_origin_tracking_depth', 'setdlopenflags',
327 'setprofile', 'setrecursionlimit', 'setswitchinterval', 'settrace', 'stderr',
328 'stdin', 'stdout', 'thread_info', 'unraisablehook', 'version', 'version_info',
329 'warnoptions']
Georg Brandl116aa622007-08-15 14:28:22 +0000330
331Without arguments, :func:`dir` lists the names you have defined currently::
332
333 >>> a = [1, 2, 3, 4, 5]
334 >>> import fibo
335 >>> fib = fibo.fib
336 >>> dir()
Ezio Melotti52e85502012-11-17 12:50:14 +0200337 ['__builtins__', '__name__', 'a', 'fib', 'fibo', 'sys']
Georg Brandl116aa622007-08-15 14:28:22 +0000338
339Note that it lists all types of names: variables, modules, functions, etc.
340
Georg Brandl1a3284e2007-12-02 09:40:06 +0000341.. index:: module: builtins
Georg Brandl116aa622007-08-15 14:28:22 +0000342
343:func:`dir` does not list the names of built-in functions and variables. If you
344want a list of those, they are defined in the standard module
Georg Brandl1a3284e2007-12-02 09:40:06 +0000345:mod:`builtins`::
Georg Brandl116aa622007-08-15 14:28:22 +0000346
Georg Brandl1a3284e2007-12-02 09:40:06 +0000347 >>> import builtins
Ezio Melotti52e85502012-11-17 12:50:14 +0200348 >>> dir(builtins) # doctest: +NORMALIZE_WHITESPACE
349 ['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException',
Ezio Melotti4a42ec52012-11-17 12:54:45 +0200350 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning',
351 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError',
352 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning',
353 'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False',
354 'FileExistsError', 'FileNotFoundError', 'FloatingPointError',
Ezio Melotti52e85502012-11-17 12:50:14 +0200355 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError',
Ezio Melotti4a42ec52012-11-17 12:54:45 +0200356 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError',
357 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError',
358 'MemoryError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented',
359 'NotImplementedError', 'OSError', 'OverflowError',
360 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError',
361 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning',
362 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError',
363 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError',
364 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError',
365 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning',
366 'ValueError', 'Warning', 'ZeroDivisionError', '_', '__build_class__',
367 '__debug__', '__doc__', '__import__', '__name__', '__package__', 'abs',
368 'all', 'any', 'ascii', 'bin', 'bool', 'bytearray', 'bytes', 'callable',
369 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits',
370 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit',
371 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr',
372 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass',
373 'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview',
374 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property',
375 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice',
376 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars',
377 'zip']
Georg Brandl116aa622007-08-15 14:28:22 +0000378
379.. _tut-packages:
380
381Packages
382========
383
384Packages are a way of structuring Python's module namespace by using "dotted
385module names". For example, the module name :mod:`A.B` designates a submodule
386named ``B`` in a package named ``A``. Just like the use of modules saves the
387authors of different modules from having to worry about each other's global
388variable names, the use of dotted module names saves the authors of multi-module
Andrés Delfinob81ca282018-04-21 09:17:26 -0300389packages like NumPy or Pillow from having to worry about
Georg Brandl116aa622007-08-15 14:28:22 +0000390each other's module names.
391
392Suppose you want to design a collection of modules (a "package") for the uniform
393handling of sound files and sound data. There are many different sound file
394formats (usually recognized by their extension, for example: :file:`.wav`,
395:file:`.aiff`, :file:`.au`), so you may need to create and maintain a growing
396collection of modules for the conversion between the various file formats.
397There are also many different operations you might want to perform on sound data
398(such as mixing, adding echo, applying an equalizer function, creating an
399artificial stereo effect), so in addition you will be writing a never-ending
400stream of modules to perform these operations. Here's a possible structure for
Georg Brandl22a1fd72013-10-06 11:08:24 +0200401your package (expressed in terms of a hierarchical filesystem):
402
403.. code-block:: text
Georg Brandl116aa622007-08-15 14:28:22 +0000404
405 sound/ Top-level package
406 __init__.py Initialize the sound package
407 formats/ Subpackage for file format conversions
408 __init__.py
409 wavread.py
410 wavwrite.py
411 aiffread.py
412 aiffwrite.py
413 auread.py
414 auwrite.py
415 ...
416 effects/ Subpackage for sound effects
417 __init__.py
418 echo.py
419 surround.py
420 reverse.py
421 ...
422 filters/ Subpackage for filters
423 __init__.py
424 equalizer.py
425 vocoder.py
426 karaoke.py
427 ...
428
429When importing the package, Python searches through the directories on
430``sys.path`` looking for the package subdirectory.
431
Inada Naoki5410d3d2019-04-11 15:10:35 +0900432The :file:`__init__.py` files are required to make Python treat directories
433containing the file as packages. This prevents directories with a common name,
434such as ``string``, unintentionally hiding valid modules that occur later
Georg Brandl116aa622007-08-15 14:28:22 +0000435on the module search path. In the simplest case, :file:`__init__.py` can just be
436an empty file, but it can also execute initialization code for the package or
437set the ``__all__`` variable, described later.
438
439Users of the package can import individual modules from the package, for
440example::
441
442 import sound.effects.echo
443
444This loads the submodule :mod:`sound.effects.echo`. It must be referenced with
445its full name. ::
446
447 sound.effects.echo.echofilter(input, output, delay=0.7, atten=4)
448
449An alternative way of importing the submodule is::
450
451 from sound.effects import echo
452
453This also loads the submodule :mod:`echo`, and makes it available without its
454package prefix, so it can be used as follows::
455
456 echo.echofilter(input, output, delay=0.7, atten=4)
457
458Yet another variation is to import the desired function or variable directly::
459
460 from sound.effects.echo import echofilter
461
462Again, this loads the submodule :mod:`echo`, but this makes its function
463:func:`echofilter` directly available::
464
465 echofilter(input, output, delay=0.7, atten=4)
466
467Note that when using ``from package import item``, the item can be either a
468submodule (or subpackage) of the package, or some other name defined in the
469package, like a function, class or variable. The ``import`` statement first
470tests whether the item is defined in the package; if not, it assumes it is a
471module and attempts to load it. If it fails to find it, an :exc:`ImportError`
472exception is raised.
473
474Contrarily, when using syntax like ``import item.subitem.subsubitem``, each item
475except for the last must be a package; the last item can be a module or a
476package but can't be a class or function or variable defined in the previous
477item.
478
479
480.. _tut-pkg-import-star:
481
482Importing \* From a Package
483---------------------------
484
485.. index:: single: __all__
486
487Now what happens when the user writes ``from sound.effects import *``? Ideally,
488one would hope that this somehow goes out to the filesystem, finds which
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000489submodules are present in the package, and imports them all. This could take a
490long time and importing sub-modules might have unwanted side-effects that should
491only happen when the sub-module is explicitly imported.
Georg Brandl116aa622007-08-15 14:28:22 +0000492
Georg Brandl116aa622007-08-15 14:28:22 +0000493The only solution is for the package author to provide an explicit index of the
Alexandre Vassalotti6d3dfc32009-07-29 19:54:39 +0000494package. The :keyword:`import` statement uses the following convention: if a package's
Georg Brandl116aa622007-08-15 14:28:22 +0000495:file:`__init__.py` code defines a list named ``__all__``, it is taken to be the
496list of module names that should be imported when ``from package import *`` is
497encountered. It is up to the package author to keep this list up-to-date when a
498new version of the package is released. Package authors may also decide not to
499support it, if they don't see a use for importing \* from their package. For
Georg Brandlac39add2013-10-06 19:21:14 +0200500example, the file :file:`sound/effects/__init__.py` could contain the following
Georg Brandl116aa622007-08-15 14:28:22 +0000501code::
502
503 __all__ = ["echo", "surround", "reverse"]
504
505This would mean that ``from sound.effects import *`` would import the three
506named submodules of the :mod:`sound` package.
507
508If ``__all__`` is not defined, the statement ``from sound.effects import *``
509does *not* import all submodules from the package :mod:`sound.effects` into the
510current namespace; it only ensures that the package :mod:`sound.effects` has
511been imported (possibly running any initialization code in :file:`__init__.py`)
512and then imports whatever names are defined in the package. This includes any
513names defined (and submodules explicitly loaded) by :file:`__init__.py`. It
514also includes any submodules of the package that were explicitly loaded by
Alexandre Vassalotti6d3dfc32009-07-29 19:54:39 +0000515previous :keyword:`import` statements. Consider this code::
Georg Brandl116aa622007-08-15 14:28:22 +0000516
517 import sound.effects.echo
518 import sound.effects.surround
519 from sound.effects import *
520
Alexandre Vassalotti6d3dfc32009-07-29 19:54:39 +0000521In this example, the :mod:`echo` and :mod:`surround` modules are imported in the
522current namespace because they are defined in the :mod:`sound.effects` package
523when the ``from...import`` statement is executed. (This also works when
524``__all__`` is defined.)
Georg Brandl116aa622007-08-15 14:28:22 +0000525
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000526Although certain modules are designed to export only names that follow certain
Martin Panter898573a2016-12-10 05:12:56 +0000527patterns when you use ``import *``, it is still considered bad practice in
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +0000528production code.
Georg Brandl116aa622007-08-15 14:28:22 +0000529
Utkarsh Guptaee0309f2019-04-30 02:20:06 +0000530Remember, there is nothing wrong with using ``from package import
Georg Brandl116aa622007-08-15 14:28:22 +0000531specific_submodule``! In fact, this is the recommended notation unless the
532importing module needs to use submodules with the same name from different
533packages.
534
535
536Intra-package References
537------------------------
538
Georg Brandl116aa622007-08-15 14:28:22 +0000539When packages are structured into subpackages (as with the :mod:`sound` package
540in the example), you can use absolute imports to refer to submodules of siblings
541packages. For example, if the module :mod:`sound.filters.vocoder` needs to use
542the :mod:`echo` module in the :mod:`sound.effects` package, it can use ``from
543sound.effects import echo``.
544
Georg Brandle6bcc912008-05-12 18:05:20 +0000545You can also write relative imports, with the ``from module import name`` form
546of import statement. These imports use leading dots to indicate the current and
547parent packages involved in the relative import. From the :mod:`surround`
548module for example, you might use::
Georg Brandl116aa622007-08-15 14:28:22 +0000549
550 from . import echo
551 from .. import formats
552 from ..filters import equalizer
553
Georg Brandle6bcc912008-05-12 18:05:20 +0000554Note that relative imports are based on the name of the current module. Since
555the name of the main module is always ``"__main__"``, modules intended for use
556as the main module of a Python application must always use absolute imports.
Georg Brandl116aa622007-08-15 14:28:22 +0000557
558
559Packages in Multiple Directories
560--------------------------------
561
562Packages support one more special attribute, :attr:`__path__`. This is
563initialized to be a list containing the name of the directory holding the
564package's :file:`__init__.py` before the code in that file is executed. This
565variable can be modified; doing so affects future searches for modules and
566subpackages contained in the package.
567
568While this feature is not often needed, it can be used to extend the set of
569modules found in a package.
570
571
572.. rubric:: Footnotes
573
574.. [#] In fact function definitions are also 'statements' that are 'executed'; the
Georg Brandl5e2954e2013-04-14 11:47:46 +0200575 execution of a module-level function definition enters the function name in
576 the module's global symbol table.