Skip to Content
Python: Essential Reference, Third Edition
book

Python: Essential Reference, Third Edition

by David Beazley
February 2006
Intermediate to advanced content levelIntermediate to advanced
648 pages
14h 53m
English
Sams
Content preview from Python: Essential Reference, Third Edition

Module Loading and Compilation

So far, this chapter has presented modules as files containing Python code. However, modules loaded with import really fall into four general categories:

  • Code written in Python (.py files)

  • C or C++ extensions that have been compiled into shared libraries or DLLs

  • Packages containing a collection of modules

  • Built-in modules written in C and linked into the Python interpreter

When looking for a module (for example, foo), the interpreter searches each of the directories in sys.path for the following files (listed in search order):

  1. A directory, foo, defining a package.

  2. foo.so, foomodule.so, foomodule.sl, or foomodule.dll (compiled extensions).

  3. foo.pyo (only if the -O or -OO option has been used).

  4. foo.pyc.

  5. foo.py. (On Windows, ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python: Essential Reference

Python: Essential Reference

David M. Beazley

Publisher Resources

ISBN: 0672328623Purchase book