Module Imports and Reloads: The Grander Module Story: Attributes
Module Imports and Reloads: The Grander Module Story: Attributes
programs after they have been debugged or have been instrumented to write their output
to a file. Especially when starting out, use other techniquessuch as system
command lines and IDLE (discussed further in the section The IDLE User Interface
on page 58)so that you can see generated error messages and view your
normal output without resorting to coding tricks. When we discuss exceptions later in
this book, youll also learn that it is possible to intercept and recover from errors so
that they do not terminate your programs. Watch for the discussion of the try statement
later in this book for an alternative way to keep the console window from closing on
errors.
Version skew note: Python 3.0 moved the reload built-in function to the
imp standard library module. It still reloads files as before, but you must
import it in order to use it. In 3.0, run an import imp and use
imp.reload(M), or run a from imp import reload and use reload(M), as
shown here. Well discuss import and from statements in the next section,
and more formally later in this book.
If you are working in Python 2.6 (or 2.X in general), reload is available
as a built-in function, so no import is required. In Python 2.6, reload is
available in both formsbuilt-in and module functionto aid the transition
to 3.0. In other words, reloading is still available in 3.0, but an
extra line of code is required to fetch the reload call.
The move in 3.0 was likely motivated in part by some well-known issues
involving reload and from statements that well encounter in the next
section. In short, names loaded with a from are not directly updated by
a reload, but names accessed with an import statement are. If your
names dont seem to change after a reload, try using import and
module.attribute name references instead.
the role of libraries of tools, as youll learn in Part V. More generally, a module is mostly
just a package of variable names, known as a namespace. The names within that package
are called attributesan attribute is simply a variable name that is attached to a specific
object (like a module).
In typical use, importers gain access to all the names assigned at the top level of a
modules file. These names are usually assigned to tools exported by the module
functions, classes, variables, and so onthat are intended to be used in other files and
other programs. Externally, a module files names can be fetched with two Python
statements, import and from, as well as the reload call.
To illustrate, use a text editor to create a one-line Python module file called myfile.py
with the following contents:
title = "The Meaning of Life"
This may be one of the worlds simplest Python modules (it contains a single assignment
statement), but its enough to illustrate the point. When this file is imported, its code
is run to generate the modules attribute. The assignment statement creates a module
attribute named title.
By contrast, the basic import statement runs the file only once per process, and it makes
the file a separate module namespace so that its assignments will not change variables
in your scope. The price you pay for the namespace partitioning of modules is the need
to reload after changes.
Version skew note: Python 2.6 also includes an execfile('module.py')
built-in function, in addition to allowing the form
exec(open('module.py')), which both automatically read the files
content. Both of these are equivalent to the
exec(open('module.py').read()) form, which is more complex but
runs in both 2.6 and 3.0.
Unfortunately, neither of these two simpler 2.6 forms is available in 3.0,
which means you must understand both files and their read methods to
fully understand this technique today (alas, this seems to be a case of
aesthetics trouncing practicality in 3.0). In fact, the exec form in 3.0
involves so much typing that the best advice may simply be not to do
itits usually best to launch files by typing system shell command lines
or by using the IDLE menu options described in the next section. For
more on the 3.0 exec form, see Chapter 9.
IDLE Basics
Lets jump right into an example. IDLE is easy to start under Windowsit has an entry
in the Start button menu for Python (see Figure 2-1, shown previously), and it can also
be selected by right-clicking on a Python program icon. On some Unix-like systems,
Other IDEs
Because IDLE is free, portable, and a standard part of Python, its a nice first development
tool to become familiar with if you want to use an IDE at all. Again, I recommend
that you use IDLE for this books exercises if youre just starting out, unless you are
already familiar with and prefer a command-line-based development mode. There are,
however, a handful of alternative IDEs for Python developers, some of which are substantially
more powerful and robust than IDLE. Here are some of the most commonly
used IDEs:
Eclipse and PyDev
Eclipse is an advanced open source IDE GUI. Originally developed as a Java IDE,
Eclipse also supports Python development when you install the PyDev (or a similar)
plug-in. Eclipse is a popular and powerful option for Python development, and it
goes well beyond IDLEs feature set. It includes support for code completion, syntax
highlighting, syntax analysis, refactoring, debugging, and more. Its downsides
are that it is a large system to install and may require shareware extensions for some
features (this may vary over time). Still, when you are ready to graduate from IDLE,
the Eclipse/PyDev combination is worth your attention.
Komodo
A full-featured development environment GUI for Python (and other languages),
Komodo includes standard syntax-coloring, text-editing, debugging, and other
features. In addition, Komodo offers many advanced features that IDLE does not,
including project files, source-control integration, regular-expression debugging,
and a drag-and-drop GUI builder that generates Python/tkinter code to implement
the GUIs you design interactively. At this writing, Komodo is not free; it is available
at http://www.activestate.com.
NetBeans IDE for Python
NetBeans is a powerful open-source development environment GUI with support
for many advanced features for Python developers: code completion, automatic
indentation and code colorization, editor hints, code folding, refactoring, debugging,
code coverage and testing, projects, and more. It may be used to develop both
CPython and Jython code. Like Eclipse, NetBeans requires installation steps beyond
those of the included IDLE GUI, but it is seen by many as more than worth
the effort. Search the Web for the latest information and links.
PythonWin
PythonWin is a free Windows-only IDE for Python that ships as part of ActiveStates ActivePython distribution (and may also be fetched separately from http://
www.python.org resources). It is roughly like IDLE, with a handful of useful
Windows-specific extensions added; for example, PythonWin has support for