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