[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.142.135.24: ~ $

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>24.1. Tkinter — Python interface to Tcl/Tk &mdash; Python 2.7.5 documentation</title>
    
    <link rel="stylesheet" href="../_static/default.css" type="text/css" />
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../',
        VERSION:     '2.7.5',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="../_static/jquery.js"></script>
    <script type="text/javascript" src="../_static/underscore.js"></script>
    <script type="text/javascript" src="../_static/doctools.js"></script>
    <script type="text/javascript" src="../_static/sidebar.js"></script>
    <link rel="search" type="application/opensearchdescription+xml"
          title="Search within Python 2.7.5 documentation"
          href="../_static/opensearch.xml"/>
    <link rel="author" title="About these documents" href="../about.html" />
    <link rel="copyright" title="Copyright" href="../copyright.html" />
    <link rel="top" title="Python 2.7.5 documentation" href="../index.html" />
    <link rel="up" title="24. Graphical User Interfaces with Tk" href="tk.html" />
    <link rel="next" title="24.2. ttk — Tk themed widgets" href="ttk.html" />
    <link rel="prev" title="24. Graphical User Interfaces with Tk" href="tk.html" />
    <link rel="shortcut icon" type="image/png" href="../_static/py.png" />
    <script type="text/javascript" src="../_static/copybutton.js"></script>
    
 

  </head>
  <body>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="ttk.html" title="24.2. ttk — Tk themed widgets"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="tk.html" title="24. Graphical User Interfaces with Tk"
             accesskey="P">previous</a> |</li>
        <li><img src="../_static/py.png" alt=""
                 style="vertical-align: middle; margin-top: -1px"/></li>
        <li><a href="http://www.python.org/">Python</a> &raquo;</li>
        <li>
          <a href="../index.html">Python 2.7.5 documentation</a> &raquo;
        </li>

          <li><a href="index.html" >The Python Standard Library</a> &raquo;</li>
          <li><a href="tk.html" accesskey="U">24. Graphical User Interfaces with Tk</a> &raquo;</li> 
      </ul>
    </div>  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="module-Tkinter">
<span id="tkinter-python-interface-to-tcl-tk"></span><h1>24.1. <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> &#8212; Python interface to Tcl/Tk<a class="headerlink" href="#module-Tkinter" title="Permalink to this headline">¶</a></h1>
<p>The <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> module (&#8220;Tk interface&#8221;) is the standard Python interface to
the Tk GUI toolkit.  Both Tk and <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> are available on most Unix
platforms, as well as on Windows systems.  (Tk itself is not part of Python; it
is maintained at ActiveState.)</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last"><a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> has been renamed to <tt class="xref py py-mod docutils literal"><span class="pre">tkinter</span></tt> in Python 3.  The
<a class="reference internal" href="../glossary.html#term-to3"><em class="xref std std-term">2to3</em></a> tool will automatically adapt imports when converting your
sources to Python 3.</p>
</div>
<div class="admonition-see-also admonition seealso">
<p class="first admonition-title">See also</p>
<dl class="last docutils">
<dt><a class="reference external" href="http://www.python.org/topics/tkinter/">Python Tkinter Resources</a></dt>
<dd>The Python Tkinter Topic Guide provides a great deal of information on using Tk
from Python and links to other sources of information on Tk.</dd>
<dt><a class="reference external" href="http://www.tkdocs.com/">TKDocs</a></dt>
<dd>Extensive tutorial plus friendlier widget pages for some of the widgets.</dd>
<dt><a class="reference external" href="http://infohost.nmt.edu/tcc/help/pubs/tkinter/">Tkinter reference: a GUI for Python</a></dt>
<dd>On-line reference material.</dd>
<dt><a class="reference external" href="http://effbot.org/tkinterbook/">Tkinter docs from effbot</a></dt>
<dd>Online reference for tkinter supported by effbot.org.</dd>
<dt><a class="reference external" href="http://www.tcl.tk/man/tcl8.5/">Tcl/Tk manual</a></dt>
<dd>Official manual for the latest tcl/tk version.</dd>
<dt><a class="reference external" href="http://www.amazon.com/Programming-Python-Mark-Lutz/dp/0596158106/">Programming Python</a></dt>
<dd>Book by Mark Lutz, has excellent coverage of Tkinter.</dd>
<dt><a class="reference external" href="http://www.amazon.com/Modern-Tkinter-Python-Developers-ebook/dp/B0071QDNLO/">Modern Tkinter for Busy Python Developers</a></dt>
<dd>Book by Mark Rozerman about building attractive and modern graphical user interfaces with Python and Tkinter.</dd>
<dt><a class="reference external" href="http://www.pythonware.com/library/an-introduction-to-tkinter.htm">An Introduction to Tkinter</a></dt>
<dd>Fredrik Lundh&#8217;s on-line reference material.</dd>
<dt><a class="reference external" href="http://www.amazon.com/exec/obidos/ASIN/1884777813">Python and Tkinter Programming</a></dt>
<dd>The book by John Grayson (ISBN 1-884777-81-3).</dd>
</dl>
</div>
<div class="section" id="tkinter-modules">
<h2>24.1.1. Tkinter Modules<a class="headerlink" href="#tkinter-modules" title="Permalink to this headline">¶</a></h2>
<p>Most of the time, the <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> module is all you really need, but a number
of additional modules are available as well.  The Tk interface is located in a
binary module named <tt class="xref py py-mod docutils literal"><span class="pre">_tkinter</span></tt>. This module contains the low-level
interface to Tk, and should never be used directly by application programmers.
It is usually a shared library (or DLL), but might in some cases be statically
linked with the Python interpreter.</p>
<p>In addition to the Tk interface module, <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> includes a number of
Python modules. The two most important modules are the <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> module
itself, and a module called <tt class="xref py py-mod docutils literal"><span class="pre">Tkconstants</span></tt>. The former automatically imports
the latter, so to use Tkinter, all you need to do is to import one module:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">Tkinter</span>
</pre></div>
</div>
<p>Or, more often:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">Tkinter</span> <span class="kn">import</span> <span class="o">*</span>
</pre></div>
</div>
<dl class="class">
<dt id="Tkinter.Tk">
<em class="property">class </em><tt class="descclassname">Tkinter.</tt><tt class="descname">Tk</tt><big>(</big><em>screenName=None</em>, <em>baseName=None</em>, <em>className='Tk'</em>, <em>useTk=1</em><big>)</big><a class="headerlink" href="#Tkinter.Tk" title="Permalink to this definition">¶</a></dt>
<dd><p>The <a class="reference internal" href="#Tkinter.Tk" title="Tkinter.Tk"><tt class="xref py py-class docutils literal"><span class="pre">Tk</span></tt></a> class is instantiated without arguments. This creates a toplevel
widget of Tk which usually is the main window of an application. Each instance
has its own associated Tcl interpreter.</p>
<p class="versionchanged">
<span class="versionmodified">Changed in version 2.4: </span>The <em>useTk</em> parameter was added.</p>
</dd></dl>

<dl class="function">
<dt id="Tkinter.Tcl">
<tt class="descclassname">Tkinter.</tt><tt class="descname">Tcl</tt><big>(</big><em>screenName=None</em>, <em>baseName=None</em>, <em>className='Tk'</em>, <em>useTk=0</em><big>)</big><a class="headerlink" href="#Tkinter.Tcl" title="Permalink to this definition">¶</a></dt>
<dd><p>The <a class="reference internal" href="#Tkinter.Tcl" title="Tkinter.Tcl"><tt class="xref py py-func docutils literal"><span class="pre">Tcl()</span></tt></a> function is a factory function which creates an object much like
that created by the <a class="reference internal" href="#Tkinter.Tk" title="Tkinter.Tk"><tt class="xref py py-class docutils literal"><span class="pre">Tk</span></tt></a> class, except that it does not initialize the Tk
subsystem.  This is most often useful when driving the Tcl interpreter in an
environment where one doesn&#8217;t want to create extraneous toplevel windows, or
where one cannot (such as Unix/Linux systems without an X server).  An object
created by the <a class="reference internal" href="#Tkinter.Tcl" title="Tkinter.Tcl"><tt class="xref py py-func docutils literal"><span class="pre">Tcl()</span></tt></a> object can have a Toplevel window created (and the Tk
subsystem initialized) by calling its <tt class="xref py py-meth docutils literal"><span class="pre">loadtk()</span></tt> method.</p>
<p class="versionadded">
<span class="versionmodified">New in version 2.4.</span></p>
</dd></dl>

<p>Other modules that provide Tk support include:</p>
<dl class="docutils">
<dt><a class="reference internal" href="scrolledtext.html#module-ScrolledText" title="ScrolledText: Text widget with a vertical scroll bar. (Tk)"><tt class="xref py py-mod docutils literal"><span class="pre">ScrolledText</span></tt></a></dt>
<dd>Text widget with a vertical scroll bar built in.</dd>
<dt><tt class="xref py py-mod docutils literal"><span class="pre">tkColorChooser</span></tt></dt>
<dd>Dialog to let the user choose a color.</dd>
<dt><tt class="xref py py-mod docutils literal"><span class="pre">tkCommonDialog</span></tt></dt>
<dd>Base class for the dialogs defined in the other modules listed here.</dd>
<dt><tt class="xref py py-mod docutils literal"><span class="pre">tkFileDialog</span></tt></dt>
<dd>Common dialogs to allow the user to specify a file to open or save.</dd>
<dt><tt class="xref py py-mod docutils literal"><span class="pre">tkFont</span></tt></dt>
<dd>Utilities to help work with fonts.</dd>
<dt><tt class="xref py py-mod docutils literal"><span class="pre">tkMessageBox</span></tt></dt>
<dd>Access to standard Tk dialog boxes.</dd>
<dt><tt class="xref py py-mod docutils literal"><span class="pre">tkSimpleDialog</span></tt></dt>
<dd>Basic dialogs and convenience functions.</dd>
<dt><tt class="xref py py-mod docutils literal"><span class="pre">Tkdnd</span></tt></dt>
<dd>Drag-and-drop support for <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a>. This is experimental and should become
deprecated when it is replaced  with the Tk DND.</dd>
<dt><a class="reference internal" href="turtle.html#module-turtle" title="turtle: Turtle graphics for Tk"><tt class="xref py py-mod docutils literal"><span class="pre">turtle</span></tt></a></dt>
<dd>Turtle graphics in a Tk window.</dd>
</dl>
<p>These have been renamed as well in Python 3; they were all made submodules of
the new <tt class="docutils literal"><span class="pre">tkinter</span></tt> package.</p>
</div>
<div class="section" id="tkinter-life-preserver">
<h2>24.1.2. Tkinter Life Preserver<a class="headerlink" href="#tkinter-life-preserver" title="Permalink to this headline">¶</a></h2>
<p>This section is not designed to be an exhaustive tutorial on either Tk or
Tkinter.  Rather, it is intended as a stop gap, providing some introductory
orientation on the system.</p>
<p>Credits:</p>
<ul class="simple">
<li>Tkinter was written by Steen Lumholt and Guido van Rossum.</li>
<li>Tk was written by John Ousterhout while at Berkeley.</li>
<li>This Life Preserver was written by Matt Conway at the University of Virginia.</li>
<li>The html rendering, and some liberal editing, was produced from a FrameMaker
version by Ken Manheimer.</li>
<li>Fredrik Lundh elaborated and revised the class interface descriptions, to get
them current with Tk 4.2.</li>
<li>Mike Clarkson converted the documentation to LaTeX, and compiled the  User
Interface chapter of the reference manual.</li>
</ul>
<div class="section" id="how-to-use-this-section">
<h3>24.1.2.1. How To Use This Section<a class="headerlink" href="#how-to-use-this-section" title="Permalink to this headline">¶</a></h3>
<p>This section is designed in two parts: the first half (roughly) covers
background material, while the second half can be taken to the keyboard as a
handy reference.</p>
<p>When trying to answer questions of the form &#8220;how do I do blah&#8221;, it is often best
to find out how to do&#8221;blah&#8221; in straight Tk, and then convert this back into the
corresponding <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> call. Python programmers can often guess at the
correct Python command by looking at the Tk documentation. This means that in
order to use Tkinter, you will have to know a little bit about Tk. This document
can&#8217;t fulfill that role, so the best we can do is point you to the best
documentation that exists. Here are some hints:</p>
<ul class="simple">
<li>The authors strongly suggest getting a copy of the Tk man pages. Specifically,
the man pages in the <tt class="docutils literal"><span class="pre">mann</span></tt> directory are most useful. The <tt class="docutils literal"><span class="pre">man3</span></tt> man pages
describe the C interface to the Tk library and thus are not especially helpful
for script writers.</li>
<li>Addison-Wesley publishes a book called Tcl and the Tk Toolkit by John
Ousterhout (ISBN 0-201-63337-X) which is a good introduction to Tcl and Tk for
the novice.  The book is not exhaustive, and for many details it defers to the
man pages.</li>
<li><tt class="file docutils literal"><span class="pre">Tkinter.py</span></tt> is a last resort for most, but can be a good place to go
when nothing else makes sense.</li>
</ul>
<div class="admonition-see-also admonition seealso">
<p class="first admonition-title">See also</p>
<dl class="last docutils">
<dt><a class="reference external" href="http://tcl.activestate.com/">ActiveState Tcl Home Page</a></dt>
<dd>The Tk/Tcl development is largely taking place at ActiveState.</dd>
<dt><a class="reference external" href="http://www.amazon.com/exec/obidos/ASIN/020163337X">Tcl and the Tk Toolkit</a></dt>
<dd>The book by John Ousterhout, the inventor of Tcl .</dd>
<dt><a class="reference external" href="http://www.amazon.com/exec/obidos/ASIN/0130220280">Practical Programming in Tcl and Tk</a></dt>
<dd>Brent Welch&#8217;s encyclopedic book.</dd>
</dl>
</div>
</div>
<div class="section" id="a-simple-hello-world-program">
<h3>24.1.2.2. A Simple Hello World Program<a class="headerlink" href="#a-simple-hello-world-program" title="Permalink to this headline">¶</a></h3>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">Tkinter</span> <span class="kn">import</span> <span class="o">*</span>

<span class="k">class</span> <span class="nc">Application</span><span class="p">(</span><span class="n">Frame</span><span class="p">):</span>
    <span class="k">def</span> <span class="nf">say_hi</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
        <span class="k">print</span> <span class="s">&quot;hi there, everyone!&quot;</span>

    <span class="k">def</span> <span class="nf">createWidgets</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">QUIT</span> <span class="o">=</span> <span class="n">Button</span><span class="p">(</span><span class="bp">self</span><span class="p">)</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">QUIT</span><span class="p">[</span><span class="s">&quot;text&quot;</span><span class="p">]</span> <span class="o">=</span> <span class="s">&quot;QUIT&quot;</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">QUIT</span><span class="p">[</span><span class="s">&quot;fg&quot;</span><span class="p">]</span>   <span class="o">=</span> <span class="s">&quot;red&quot;</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">QUIT</span><span class="p">[</span><span class="s">&quot;command&quot;</span><span class="p">]</span> <span class="o">=</span>  <span class="bp">self</span><span class="o">.</span><span class="n">quit</span>

        <span class="bp">self</span><span class="o">.</span><span class="n">QUIT</span><span class="o">.</span><span class="n">pack</span><span class="p">({</span><span class="s">&quot;side&quot;</span><span class="p">:</span> <span class="s">&quot;left&quot;</span><span class="p">})</span>

        <span class="bp">self</span><span class="o">.</span><span class="n">hi_there</span> <span class="o">=</span> <span class="n">Button</span><span class="p">(</span><span class="bp">self</span><span class="p">)</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">hi_there</span><span class="p">[</span><span class="s">&quot;text&quot;</span><span class="p">]</span> <span class="o">=</span> <span class="s">&quot;Hello&quot;</span><span class="p">,</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">hi_there</span><span class="p">[</span><span class="s">&quot;command&quot;</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">say_hi</span>

        <span class="bp">self</span><span class="o">.</span><span class="n">hi_there</span><span class="o">.</span><span class="n">pack</span><span class="p">({</span><span class="s">&quot;side&quot;</span><span class="p">:</span> <span class="s">&quot;left&quot;</span><span class="p">})</span>

    <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">master</span><span class="o">=</span><span class="bp">None</span><span class="p">):</span>
        <span class="n">Frame</span><span class="o">.</span><span class="n">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">master</span><span class="p">)</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">()</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">createWidgets</span><span class="p">()</span>

<span class="n">root</span> <span class="o">=</span> <span class="n">Tk</span><span class="p">()</span>
<span class="n">app</span> <span class="o">=</span> <span class="n">Application</span><span class="p">(</span><span class="n">master</span><span class="o">=</span><span class="n">root</span><span class="p">)</span>
<span class="n">app</span><span class="o">.</span><span class="n">mainloop</span><span class="p">()</span>
<span class="n">root</span><span class="o">.</span><span class="n">destroy</span><span class="p">()</span>
</pre></div>
</div>
</div>
</div>
<div class="section" id="a-very-quick-look-at-tcl-tk">
<h2>24.1.3. A (Very) Quick Look at Tcl/Tk<a class="headerlink" href="#a-very-quick-look-at-tcl-tk" title="Permalink to this headline">¶</a></h2>
<p>The class hierarchy looks complicated, but in actual practice, application
programmers almost always refer to the classes at the very bottom of the
hierarchy.</p>
<p>Notes:</p>
<ul class="simple">
<li>These classes are provided for the purposes of organizing certain functions
under one namespace. They aren&#8217;t meant to be instantiated independently.</li>
<li>The <a class="reference internal" href="#Tkinter.Tk" title="Tkinter.Tk"><tt class="xref py py-class docutils literal"><span class="pre">Tk</span></tt></a> class is meant to be instantiated only once in an application.
Application programmers need not instantiate one explicitly, the system creates
one whenever any of the other classes are instantiated.</li>
<li>The <tt class="xref py py-class docutils literal"><span class="pre">Widget</span></tt> class is not meant to be instantiated, it is meant only
for subclassing to make &#8220;real&#8221; widgets (in C++, this is called an &#8216;abstract
class&#8217;).</li>
</ul>
<p>To make use of this reference material, there will be times when you will need
to know how to read short passages of Tk and how to identify the various parts
of a Tk command.   (See section <a class="reference internal" href="#tkinter-basic-mapping"><em>Mapping Basic Tk into Tkinter</em></a> for the
<a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> equivalents of what&#8217;s below.)</p>
<p>Tk scripts are Tcl programs.  Like all Tcl programs, Tk scripts are just lists
of tokens separated by spaces.  A Tk widget is just its <em>class</em>, the <em>options</em>
that help configure it, and the <em>actions</em> that make it do useful things.</p>
<p>To make a widget in Tk, the command is always of the form:</p>
<div class="highlight-python"><pre>classCommand newPathname options</pre>
</div>
<dl class="docutils">
<dt><em>classCommand</em></dt>
<dd>denotes which kind of widget to make (a button, a label, a menu...)</dd>
<dt><em>newPathname</em></dt>
<dd>is the new name for this widget.  All names in Tk must be unique.  To help
enforce this, widgets in Tk are named with <em>pathnames</em>, just like files in a
file system.  The top level widget, the <em>root</em>, is called <tt class="docutils literal"><span class="pre">.</span></tt> (period) and
children are delimited by more periods.  For example,
<tt class="docutils literal"><span class="pre">.myApp.controlPanel.okButton</span></tt> might be the name of a widget.</dd>
<dt><em>options</em></dt>
<dd>configure the widget&#8217;s appearance and in some cases, its behavior.  The options
come in the form of a list of flags and values. Flags are preceded by a &#8216;-&#8216;,
like Unix shell command flags, and values are put in quotes if they are more
than one word.</dd>
</dl>
<p>For example:</p>
<div class="highlight-python"><pre>button   .fred   -fg red -text "hi there"
   ^       ^     \_____________________/
   |       |                |
 class    new            options
command  widget  (-opt val -opt val ...)</pre>
</div>
<p>Once created, the pathname to the widget becomes a new command.  This new
<em>widget command</em> is the programmer&#8217;s handle for getting the new widget to
perform some <em>action</em>.  In C, you&#8217;d express this as someAction(fred,
someOptions), in C++, you would express this as fred.someAction(someOptions),
and in Tk, you say:</p>
<div class="highlight-python"><pre>.fred someAction someOptions</pre>
</div>
<p>Note that the object name, <tt class="docutils literal"><span class="pre">.fred</span></tt>, starts with a dot.</p>
<p>As you&#8217;d expect, the legal values for <em>someAction</em> will depend on the widget&#8217;s
class: <tt class="docutils literal"><span class="pre">.fred</span> <span class="pre">disable</span></tt> works if fred is a button (fred gets greyed out), but
does not work if fred is a label (disabling of labels is not supported in Tk).</p>
<p>The legal values of <em>someOptions</em> is action dependent.  Some actions, like
<tt class="docutils literal"><span class="pre">disable</span></tt>, require no arguments, others, like a text-entry box&#8217;s <tt class="docutils literal"><span class="pre">delete</span></tt>
command, would need arguments to specify what range of text to delete.</p>
</div>
<div class="section" id="mapping-basic-tk-into-tkinter">
<span id="tkinter-basic-mapping"></span><h2>24.1.4. Mapping Basic Tk into Tkinter<a class="headerlink" href="#mapping-basic-tk-into-tkinter" title="Permalink to this headline">¶</a></h2>
<p>Class commands in Tk correspond to class constructors in Tkinter.</p>
<div class="highlight-python"><pre>button .fred                =====&gt;  fred = Button()</pre>
</div>
<p>The master of an object is implicit in the new name given to it at creation
time.  In Tkinter, masters are specified explicitly.</p>
<div class="highlight-python"><pre>button .panel.fred          =====&gt;  fred = Button(panel)</pre>
</div>
<p>The configuration options in Tk are given in lists of hyphened tags followed by
values.  In Tkinter, options are specified as keyword-arguments in the instance
constructor, and keyword-args for configure calls or as instance indices, in
dictionary style, for established instances.  See section
<a class="reference internal" href="#tkinter-setting-options"><em>Setting Options</em></a> on setting options.</p>
<div class="highlight-python"><pre>button .fred -fg red        =====&gt;  fred = Button(panel, fg = "red")
.fred configure -fg red     =====&gt;  fred["fg"] = red
                            OR ==&gt;  fred.config(fg = "red")</pre>
</div>
<p>In Tk, to perform an action on a widget, use the widget name as a command, and
follow it with an action name, possibly with arguments (options).  In Tkinter,
you call methods on the class instance to invoke actions on the widget.  The
actions (methods) that a given widget can perform are listed in the Tkinter.py
module.</p>
<div class="highlight-python"><pre>.fred invoke                =====&gt;  fred.invoke()</pre>
</div>
<p>To give a widget to the packer (geometry manager), you call pack with optional
arguments.  In Tkinter, the Pack class holds all this functionality, and the
various forms of the pack command are implemented as methods.  All widgets in
<a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> are subclassed from the Packer, and so inherit all the packing
methods. See the <a class="reference internal" href="tix.html#module-Tix" title="Tix: Tk Extension Widgets for Tkinter"><tt class="xref py py-mod docutils literal"><span class="pre">Tix</span></tt></a> module documentation for additional information on
the Form geometry manager.</p>
<div class="highlight-python"><pre>pack .fred -side left       =====&gt;  fred.pack(side = "left")</pre>
</div>
</div>
<div class="section" id="how-tk-and-tkinter-are-related">
<h2>24.1.5. How Tk and Tkinter are Related<a class="headerlink" href="#how-tk-and-tkinter-are-related" title="Permalink to this headline">¶</a></h2>
<p>From the top down:</p>
<dl class="docutils">
<dt>Your App Here (Python)</dt>
<dd>A Python application makes a <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> call.</dd>
<dt>Tkinter (Python Module)</dt>
<dd>This call (say, for example, creating a button widget), is implemented in the
<em>Tkinter</em> module, which is written in Python.  This Python function will parse
the commands and the arguments and convert them into a form that makes them look
as if they had come from a Tk script instead of a Python script.</dd>
<dt>tkinter (C)</dt>
<dd>These commands and their arguments will be passed to a C function in the
<em>tkinter</em> - note the lowercase - extension module.</dd>
<dt>Tk Widgets (C and Tcl)</dt>
<dd>This C function is able to make calls into other C modules, including the C
functions that make up the Tk library.  Tk is implemented in C and some Tcl.
The Tcl part of the Tk widgets is used to bind certain default behaviors to
widgets, and is executed once at the point where the Python <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a>
module is imported. (The user never sees this stage).</dd>
<dt>Tk (C)</dt>
<dd>The Tk part of the Tk Widgets implement the final mapping to ...</dd>
<dt>Xlib (C)</dt>
<dd>the Xlib library to draw graphics on the screen.</dd>
</dl>
</div>
<div class="section" id="handy-reference">
<h2>24.1.6. Handy Reference<a class="headerlink" href="#handy-reference" title="Permalink to this headline">¶</a></h2>
<div class="section" id="setting-options">
<span id="tkinter-setting-options"></span><h3>24.1.6.1. Setting Options<a class="headerlink" href="#setting-options" title="Permalink to this headline">¶</a></h3>
<p>Options control things like the color and border width of a widget. Options can
be set in three ways:</p>
<dl class="docutils">
<dt>At object creation time, using keyword arguments</dt>
<dd><div class="first last highlight-python"><div class="highlight"><pre><span class="n">fred</span> <span class="o">=</span> <span class="n">Button</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">fg</span> <span class="o">=</span> <span class="s">&quot;red&quot;</span><span class="p">,</span> <span class="n">bg</span> <span class="o">=</span> <span class="s">&quot;blue&quot;</span><span class="p">)</span>
</pre></div>
</div>
</dd>
<dt>After object creation, treating the option name like a dictionary index</dt>
<dd><div class="first last highlight-python"><div class="highlight"><pre><span class="n">fred</span><span class="p">[</span><span class="s">&quot;fg&quot;</span><span class="p">]</span> <span class="o">=</span> <span class="s">&quot;red&quot;</span>
<span class="n">fred</span><span class="p">[</span><span class="s">&quot;bg&quot;</span><span class="p">]</span> <span class="o">=</span> <span class="s">&quot;blue&quot;</span>
</pre></div>
</div>
</dd>
<dt>Use the config() method to update multiple attrs subsequent to object creation</dt>
<dd><div class="first last highlight-python"><div class="highlight"><pre><span class="n">fred</span><span class="o">.</span><span class="n">config</span><span class="p">(</span><span class="n">fg</span> <span class="o">=</span> <span class="s">&quot;red&quot;</span><span class="p">,</span> <span class="n">bg</span> <span class="o">=</span> <span class="s">&quot;blue&quot;</span><span class="p">)</span>
</pre></div>
</div>
</dd>
</dl>
<p>For a complete explanation of a given option and its behavior, see the Tk man
pages for the widget in question.</p>
<p>Note that the man pages list &#8220;STANDARD OPTIONS&#8221; and &#8220;WIDGET SPECIFIC OPTIONS&#8221;
for each widget.  The former is a list of options that are common to many
widgets, the latter are the options that are idiosyncratic to that particular
widget.  The Standard Options are documented on the <em class="manpage">options(3)</em> man
page.</p>
<p>No distinction between standard and widget-specific options is made in this
document.  Some options don&#8217;t apply to some kinds of widgets. Whether a given
widget responds to a particular option depends on the class of the widget;
buttons have a <tt class="docutils literal"><span class="pre">command</span></tt> option, labels do not.</p>
<p>The options supported by a given widget are listed in that widget&#8217;s man page, or
can be queried at runtime by calling the <tt class="xref py py-meth docutils literal"><span class="pre">config()</span></tt> method without
arguments, or by calling the <tt class="xref py py-meth docutils literal"><span class="pre">keys()</span></tt> method on that widget.  The return
value of these calls is a dictionary whose key is the name of the option as a
string (for example, <tt class="docutils literal"><span class="pre">'relief'</span></tt>) and whose values are 5-tuples.</p>
<p>Some options, like <tt class="docutils literal"><span class="pre">bg</span></tt> are synonyms for common options with long names
(<tt class="docutils literal"><span class="pre">bg</span></tt> is shorthand for &#8220;background&#8221;). Passing the <tt class="docutils literal"><span class="pre">config()</span></tt> method the name
of a shorthand option will return a 2-tuple, not 5-tuple. The 2-tuple passed
back will contain the name of the synonym and the &#8220;real&#8221; option (such as
<tt class="docutils literal"><span class="pre">('bg',</span> <span class="pre">'background')</span></tt>).</p>
<table border="1" class="docutils">
<colgroup>
<col width="13%" />
<col width="61%" />
<col width="26%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Index</th>
<th class="head">Meaning</th>
<th class="head">Example</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>0</td>
<td>option name</td>
<td><tt class="docutils literal"><span class="pre">'relief'</span></tt></td>
</tr>
<tr class="row-odd"><td>1</td>
<td>option name for database lookup</td>
<td><tt class="docutils literal"><span class="pre">'relief'</span></tt></td>
</tr>
<tr class="row-even"><td>2</td>
<td>option class for database
lookup</td>
<td><tt class="docutils literal"><span class="pre">'Relief'</span></tt></td>
</tr>
<tr class="row-odd"><td>3</td>
<td>default value</td>
<td><tt class="docutils literal"><span class="pre">'raised'</span></tt></td>
</tr>
<tr class="row-even"><td>4</td>
<td>current value</td>
<td><tt class="docutils literal"><span class="pre">'groove'</span></tt></td>
</tr>
</tbody>
</table>
<p>Example:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">&gt;&gt;&gt; </span><span class="k">print</span> <span class="n">fred</span><span class="o">.</span><span class="n">config</span><span class="p">()</span>
<span class="go">{&#39;relief&#39; : (&#39;relief&#39;, &#39;relief&#39;, &#39;Relief&#39;, &#39;raised&#39;, &#39;groove&#39;)}</span>
</pre></div>
</div>
<p>Of course, the dictionary printed will include all the options available and
their values.  This is meant only as an example.</p>
</div>
<div class="section" id="the-packer">
<h3>24.1.6.2. The Packer<a class="headerlink" href="#the-packer" title="Permalink to this headline">¶</a></h3>
<p id="index-0">The packer is one of Tk&#8217;s geometry-management mechanisms.    Geometry managers
are used to specify the relative positioning of the positioning of widgets
within their container - their mutual <em>master</em>.  In contrast to the more
cumbersome <em>placer</em> (which is used less commonly, and we do not cover here), the
packer takes qualitative relationship specification - <em>above</em>, <em>to the left of</em>,
<em>filling</em>, etc - and works everything out to determine the exact placement
coordinates for you.</p>
<p>The size of any <em>master</em> widget is determined by the size of the &#8220;slave widgets&#8221;
inside.  The packer is used to control where slave widgets appear inside the
master into which they are packed.  You can pack widgets into frames, and frames
into other frames, in order to achieve the kind of layout you desire.
Additionally, the arrangement is dynamically adjusted to accommodate incremental
changes to the configuration, once it is packed.</p>
<p>Note that widgets do not appear until they have had their geometry specified
with a geometry manager.  It&#8217;s a common early mistake to leave out the geometry
specification, and then be surprised when the widget is created but nothing
appears.  A widget will appear only after it has had, for example, the packer&#8217;s
<tt class="xref py py-meth docutils literal"><span class="pre">pack()</span></tt> method applied to it.</p>
<p>The pack() method can be called with keyword-option/value pairs that control
where the widget is to appear within its container, and how it is to behave when
the main application window is resized.  Here are some examples:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="n">fred</span><span class="o">.</span><span class="n">pack</span><span class="p">()</span>                     <span class="c"># defaults to side = &quot;top&quot;</span>
<span class="n">fred</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="n">side</span> <span class="o">=</span> <span class="s">&quot;left&quot;</span><span class="p">)</span>
<span class="n">fred</span><span class="o">.</span><span class="n">pack</span><span class="p">(</span><span class="n">expand</span> <span class="o">=</span> <span class="mi">1</span><span class="p">)</span>
</pre></div>
</div>
</div>
<div class="section" id="packer-options">
<h3>24.1.6.3. Packer Options<a class="headerlink" href="#packer-options" title="Permalink to this headline">¶</a></h3>
<p>For more extensive information on the packer and the options that it can take,
see the man pages and page 183 of John Ousterhout&#8217;s book.</p>
<dl class="docutils">
<dt>anchor</dt>
<dd>Anchor type.  Denotes where the packer is to place each slave in its parcel.</dd>
<dt>expand</dt>
<dd>Boolean, <tt class="docutils literal"><span class="pre">0</span></tt> or <tt class="docutils literal"><span class="pre">1</span></tt>.</dd>
<dt>fill</dt>
<dd>Legal values: <tt class="docutils literal"><span class="pre">'x'</span></tt>, <tt class="docutils literal"><span class="pre">'y'</span></tt>, <tt class="docutils literal"><span class="pre">'both'</span></tt>, <tt class="docutils literal"><span class="pre">'none'</span></tt>.</dd>
<dt>ipadx and ipady</dt>
<dd>A distance - designating internal padding on each side of the slave widget.</dd>
<dt>padx and pady</dt>
<dd>A distance - designating external padding on each side of the slave widget.</dd>
<dt>side</dt>
<dd>Legal values are: <tt class="docutils literal"><span class="pre">'left'</span></tt>, <tt class="docutils literal"><span class="pre">'right'</span></tt>, <tt class="docutils literal"><span class="pre">'top'</span></tt>, <tt class="docutils literal"><span class="pre">'bottom'</span></tt>.</dd>
</dl>
</div>
<div class="section" id="coupling-widget-variables">
<h3>24.1.6.4. Coupling Widget Variables<a class="headerlink" href="#coupling-widget-variables" title="Permalink to this headline">¶</a></h3>
<p>The current-value setting of some widgets (like text entry widgets) can be
connected directly to application variables by using special options.  These
options are <tt class="docutils literal"><span class="pre">variable</span></tt>, <tt class="docutils literal"><span class="pre">textvariable</span></tt>, <tt class="docutils literal"><span class="pre">onvalue</span></tt>, <tt class="docutils literal"><span class="pre">offvalue</span></tt>, and
<tt class="docutils literal"><span class="pre">value</span></tt>.  This connection works both ways: if the variable changes for any
reason, the widget it&#8217;s connected to will be updated to reflect the new value.</p>
<p>Unfortunately, in the current implementation of <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> it is not
possible to hand over an arbitrary Python variable to a widget through a
<tt class="docutils literal"><span class="pre">variable</span></tt> or <tt class="docutils literal"><span class="pre">textvariable</span></tt> option.  The only kinds of variables for which
this works are variables that are subclassed from a class called Variable,
defined in the <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> module.</p>
<p>There are many useful subclasses of Variable already defined:
<tt class="xref py py-class docutils literal"><span class="pre">StringVar</span></tt>, <tt class="xref py py-class docutils literal"><span class="pre">IntVar</span></tt>, <tt class="xref py py-class docutils literal"><span class="pre">DoubleVar</span></tt>, and
<tt class="xref py py-class docutils literal"><span class="pre">BooleanVar</span></tt>.  To read the current value of such a variable, call the
<tt class="xref py py-meth docutils literal"><span class="pre">get()</span></tt> method on it, and to change its value you call the <tt class="xref py py-meth docutils literal"><span class="pre">set()</span></tt>
method.  If you follow this protocol, the widget will always track the value of
the variable, with no further intervention on your part.</p>
<p>For example:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="k">class</span> <span class="nc">App</span><span class="p">(</span><span class="n">Frame</span><span class="p">):</span>
    <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">master</span><span class="o">=</span><span class="bp">None</span><span class="p">):</span>
        <span class="n">Frame</span><span class="o">.</span><span class="n">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">master</span><span class="p">)</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">()</span>

        <span class="bp">self</span><span class="o">.</span><span class="n">entrythingy</span> <span class="o">=</span> <span class="n">Entry</span><span class="p">()</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">entrythingy</span><span class="o">.</span><span class="n">pack</span><span class="p">()</span>

        <span class="c"># here is the application variable</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">contents</span> <span class="o">=</span> <span class="n">StringVar</span><span class="p">()</span>
        <span class="c"># set it to some value</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">contents</span><span class="o">.</span><span class="n">set</span><span class="p">(</span><span class="s">&quot;this is a variable&quot;</span><span class="p">)</span>
        <span class="c"># tell the entry widget to watch this variable</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">entrythingy</span><span class="p">[</span><span class="s">&quot;textvariable&quot;</span><span class="p">]</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">contents</span>

        <span class="c"># and here we get a callback when the user hits return.</span>
        <span class="c"># we will have the program print out the value of the</span>
        <span class="c"># application variable when the user hits return</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">entrythingy</span><span class="o">.</span><span class="n">bind</span><span class="p">(</span><span class="s">&#39;&lt;Key-Return&gt;&#39;</span><span class="p">,</span>
                              <span class="bp">self</span><span class="o">.</span><span class="n">print_contents</span><span class="p">)</span>

    <span class="k">def</span> <span class="nf">print_contents</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">event</span><span class="p">):</span>
        <span class="k">print</span> <span class="s">&quot;hi. contents of entry is now ----&gt;&quot;</span><span class="p">,</span> \
              <span class="bp">self</span><span class="o">.</span><span class="n">contents</span><span class="o">.</span><span class="n">get</span><span class="p">()</span>
</pre></div>
</div>
</div>
<div class="section" id="the-window-manager">
<h3>24.1.6.5. The Window Manager<a class="headerlink" href="#the-window-manager" title="Permalink to this headline">¶</a></h3>
<p id="index-1">In Tk, there is a utility command, <tt class="docutils literal"><span class="pre">wm</span></tt>, for interacting with the window
manager.  Options to the <tt class="docutils literal"><span class="pre">wm</span></tt> command allow you to control things like titles,
placement, icon bitmaps, and the like.  In <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a>, these commands have
been implemented as methods on the <tt class="xref py py-class docutils literal"><span class="pre">Wm</span></tt> class.  Toplevel widgets are
subclassed from the <tt class="xref py py-class docutils literal"><span class="pre">Wm</span></tt> class, and so can call the <tt class="xref py py-class docutils literal"><span class="pre">Wm</span></tt> methods
directly.</p>
<p>To get at the toplevel window that contains a given widget, you can often just
refer to the widget&#8217;s master.  Of course if the widget has been packed inside of
a frame, the master won&#8217;t represent a toplevel window.  To get at the toplevel
window that contains an arbitrary widget, you can call the <tt class="xref py py-meth docutils literal"><span class="pre">_root()</span></tt> method.
This method begins with an underscore to denote the fact that this function is
part of the implementation, and not an interface to Tk functionality.</p>
<p>Here are some examples of typical usage:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="kn">from</span> <span class="nn">Tkinter</span> <span class="kn">import</span> <span class="o">*</span>
<span class="k">class</span> <span class="nc">App</span><span class="p">(</span><span class="n">Frame</span><span class="p">):</span>
    <span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">master</span><span class="o">=</span><span class="bp">None</span><span class="p">):</span>
        <span class="n">Frame</span><span class="o">.</span><span class="n">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">master</span><span class="p">)</span>
        <span class="bp">self</span><span class="o">.</span><span class="n">pack</span><span class="p">()</span>


<span class="c"># create the application</span>
<span class="n">myapp</span> <span class="o">=</span> <span class="n">App</span><span class="p">()</span>

<span class="c">#</span>
<span class="c"># here are method calls to the window manager class</span>
<span class="c">#</span>
<span class="n">myapp</span><span class="o">.</span><span class="n">master</span><span class="o">.</span><span class="n">title</span><span class="p">(</span><span class="s">&quot;My Do-Nothing Application&quot;</span><span class="p">)</span>
<span class="n">myapp</span><span class="o">.</span><span class="n">master</span><span class="o">.</span><span class="n">maxsize</span><span class="p">(</span><span class="mi">1000</span><span class="p">,</span> <span class="mi">400</span><span class="p">)</span>

<span class="c"># start the program</span>
<span class="n">myapp</span><span class="o">.</span><span class="n">mainloop</span><span class="p">()</span>
</pre></div>
</div>
</div>
<div class="section" id="tk-option-data-types">
<h3>24.1.6.6. Tk Option Data Types<a class="headerlink" href="#tk-option-data-types" title="Permalink to this headline">¶</a></h3>
<dl class="docutils" id="index-2">
<dt>anchor</dt>
<dd>Legal values are points of the compass: <tt class="docutils literal"><span class="pre">&quot;n&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;ne&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;e&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;se&quot;</span></tt>,
<tt class="docutils literal"><span class="pre">&quot;s&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;sw&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;w&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;nw&quot;</span></tt>, and also <tt class="docutils literal"><span class="pre">&quot;center&quot;</span></tt>.</dd>
<dt>bitmap</dt>
<dd>There are eight built-in, named bitmaps: <tt class="docutils literal"><span class="pre">'error'</span></tt>, <tt class="docutils literal"><span class="pre">'gray25'</span></tt>,
<tt class="docutils literal"><span class="pre">'gray50'</span></tt>, <tt class="docutils literal"><span class="pre">'hourglass'</span></tt>, <tt class="docutils literal"><span class="pre">'info'</span></tt>, <tt class="docutils literal"><span class="pre">'questhead'</span></tt>, <tt class="docutils literal"><span class="pre">'question'</span></tt>,
<tt class="docutils literal"><span class="pre">'warning'</span></tt>.  To specify an X bitmap filename, give the full path to the file,
preceded with an <tt class="docutils literal"><span class="pre">&#64;</span></tt>, as in <tt class="docutils literal"><span class="pre">&quot;&#64;/usr/contrib/bitmap/gumby.bit&quot;</span></tt>.</dd>
<dt>boolean</dt>
<dd>You can pass integers 0 or 1 or the strings <tt class="docutils literal"><span class="pre">&quot;yes&quot;</span></tt> or <tt class="docutils literal"><span class="pre">&quot;no&quot;</span></tt> .</dd>
<dt>callback</dt>
<dd><p class="first">This is any Python function that takes no arguments.  For example:</p>
<div class="last highlight-python"><div class="highlight"><pre><span class="k">def</span> <span class="nf">print_it</span><span class="p">():</span>
        <span class="k">print</span> <span class="s">&quot;hi there&quot;</span>
<span class="n">fred</span><span class="p">[</span><span class="s">&quot;command&quot;</span><span class="p">]</span> <span class="o">=</span> <span class="n">print_it</span>
</pre></div>
</div>
</dd>
<dt>color</dt>
<dd>Colors can be given as the names of X colors in the rgb.txt file, or as strings
representing RGB values in 4 bit: <tt class="docutils literal"><span class="pre">&quot;#RGB&quot;</span></tt>, 8 bit: <tt class="docutils literal"><span class="pre">&quot;#RRGGBB&quot;</span></tt>, 12 bit&#8221;
<tt class="docutils literal"><span class="pre">&quot;#RRRGGGBBB&quot;</span></tt>, or 16 bit <tt class="docutils literal"><span class="pre">&quot;#RRRRGGGGBBBB&quot;</span></tt> ranges, where R,G,B here
represent any legal hex digit.  See page 160 of Ousterhout&#8217;s book for details.</dd>
<dt>cursor</dt>
<dd>The standard X cursor names from <tt class="file docutils literal"><span class="pre">cursorfont.h</span></tt> can be used, without the
<tt class="docutils literal"><span class="pre">XC_</span></tt> prefix.  For example to get a hand cursor (<tt class="xref py py-const docutils literal"><span class="pre">XC_hand2</span></tt>), use the
string <tt class="docutils literal"><span class="pre">&quot;hand2&quot;</span></tt>.  You can also specify a bitmap and mask file of your own.
See page 179 of Ousterhout&#8217;s book.</dd>
<dt>distance</dt>
<dd>Screen distances can be specified in either pixels or absolute distances.
Pixels are given as numbers and absolute distances as strings, with the trailing
character denoting units: <tt class="docutils literal"><span class="pre">c</span></tt> for centimetres, <tt class="docutils literal"><span class="pre">i</span></tt> for inches, <tt class="docutils literal"><span class="pre">m</span></tt> for
millimetres, <tt class="docutils literal"><span class="pre">p</span></tt> for printer&#8217;s points.  For example, 3.5 inches is expressed
as <tt class="docutils literal"><span class="pre">&quot;3.5i&quot;</span></tt>.</dd>
<dt>font</dt>
<dd>Tk uses a list font name format, such as <tt class="docutils literal"><span class="pre">{courier</span> <span class="pre">10</span> <span class="pre">bold}</span></tt>. Font sizes with
positive numbers are measured in points; sizes with negative numbers are
measured in pixels.</dd>
<dt>geometry</dt>
<dd>This is a string of the form <tt class="docutils literal"><span class="pre">widthxheight</span></tt>, where width and height are
measured in pixels for most widgets (in characters for widgets displaying text).
For example: <tt class="docutils literal"><span class="pre">fred[&quot;geometry&quot;]</span> <span class="pre">=</span> <span class="pre">&quot;200x100&quot;</span></tt>.</dd>
<dt>justify</dt>
<dd>Legal values are the strings: <tt class="docutils literal"><span class="pre">&quot;left&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;center&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;right&quot;</span></tt>, and
<tt class="docutils literal"><span class="pre">&quot;fill&quot;</span></tt>.</dd>
<dt>region</dt>
<dd>This is a string with four space-delimited elements, each of which is a legal
distance (see above).  For example: <tt class="docutils literal"><span class="pre">&quot;2</span> <span class="pre">3</span> <span class="pre">4</span> <span class="pre">5&quot;</span></tt> and <tt class="docutils literal"><span class="pre">&quot;3i</span> <span class="pre">2i</span> <span class="pre">4.5i</span> <span class="pre">2i&quot;</span></tt> and
<tt class="docutils literal"><span class="pre">&quot;3c</span> <span class="pre">2c</span> <span class="pre">4c</span> <span class="pre">10.43c&quot;</span></tt>  are all legal regions.</dd>
<dt>relief</dt>
<dd>Determines what the border style of a widget will be.  Legal values are:
<tt class="docutils literal"><span class="pre">&quot;raised&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;sunken&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;flat&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;groove&quot;</span></tt>, and <tt class="docutils literal"><span class="pre">&quot;ridge&quot;</span></tt>.</dd>
<dt>scrollcommand</dt>
<dd>This is almost always the <tt class="xref py py-meth docutils literal"><span class="pre">set()</span></tt> method of some scrollbar widget, but can
be any widget method that takes a single argument.   Refer to the file
<tt class="file docutils literal"><span class="pre">Demo/tkinter/matt/canvas-with-scrollbars.py</span></tt> in the Python source
distribution for an example.</dd>
<dt>wrap:</dt>
<dd>Must be one of: <tt class="docutils literal"><span class="pre">&quot;none&quot;</span></tt>, <tt class="docutils literal"><span class="pre">&quot;char&quot;</span></tt>, or <tt class="docutils literal"><span class="pre">&quot;word&quot;</span></tt>.</dd>
</dl>
</div>
<div class="section" id="bindings-and-events">
<h3>24.1.6.7. Bindings and Events<a class="headerlink" href="#bindings-and-events" title="Permalink to this headline">¶</a></h3>
<p id="index-3">The bind method from the widget command allows you to watch for certain events
and to have a callback function trigger when that event type occurs.  The form
of the bind method is:</p>
<div class="highlight-python"><pre>def bind(self, sequence, func, add=''):</pre>
</div>
<p>where:</p>
<dl class="docutils">
<dt>sequence</dt>
<dd>is a string that denotes the target kind of event.  (See the bind man page and
page 201 of John Ousterhout&#8217;s book for details).</dd>
<dt>func</dt>
<dd>is a Python function, taking one argument, to be invoked when the event occurs.
An Event instance will be passed as the argument. (Functions deployed this way
are commonly known as <em>callbacks</em>.)</dd>
<dt>add</dt>
<dd>is optional, either <tt class="docutils literal"><span class="pre">''</span></tt> or <tt class="docutils literal"><span class="pre">'+'</span></tt>.  Passing an empty string denotes that
this binding is to replace any other bindings that this event is associated
with.  Passing a <tt class="docutils literal"><span class="pre">'+'</span></tt> means that this function is to be added to the list
of functions bound to this event type.</dd>
</dl>
<p>For example:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="k">def</span> <span class="nf">turnRed</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">event</span><span class="p">):</span>
    <span class="n">event</span><span class="o">.</span><span class="n">widget</span><span class="p">[</span><span class="s">&quot;activeforeground&quot;</span><span class="p">]</span> <span class="o">=</span> <span class="s">&quot;red&quot;</span>

<span class="bp">self</span><span class="o">.</span><span class="n">button</span><span class="o">.</span><span class="n">bind</span><span class="p">(</span><span class="s">&quot;&lt;Enter&gt;&quot;</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">turnRed</span><span class="p">)</span>
</pre></div>
</div>
<p>Notice how the widget field of the event is being accessed in the
<tt class="xref py py-meth docutils literal"><span class="pre">turnRed()</span></tt> callback.  This field contains the widget that caught the X
event.  The following table lists the other event fields you can access, and how
they are denoted in Tk, which can be useful when referring to the Tk man pages.</p>
<div class="highlight-python"><pre>Tk      Tkinter Event Field             Tk      Tkinter Event Field
--      -------------------             --      -------------------
%f      focus                           %A      char
%h      height                          %E      send_event
%k      keycode                         %K      keysym
%s      state                           %N      keysym_num
%t      time                            %T      type
%w      width                           %W      widget
%x      x                               %X      x_root
%y      y                               %Y      y_root</pre>
</div>
</div>
<div class="section" id="the-index-parameter">
<h3>24.1.6.8. The index Parameter<a class="headerlink" href="#the-index-parameter" title="Permalink to this headline">¶</a></h3>
<p>A number of widgets require&#8221;index&#8221; parameters to be passed.  These are used to
point at a specific place in a Text widget, or to particular characters in an
Entry widget, or to particular menu items in a Menu widget.</p>
<dl class="docutils">
<dt>Entry widget indexes (index, view index, etc.)</dt>
<dd><p class="first">Entry widgets have options that refer to character positions in the text being
displayed.  You can use these <a class="reference internal" href="#module-Tkinter" title="Tkinter: Interface to Tcl/Tk for graphical user interfaces"><tt class="xref py py-mod docutils literal"><span class="pre">Tkinter</span></tt></a> functions to access these special
points in text widgets:</p>
<dl class="last docutils">
<dt>AtEnd()</dt>
<dd>refers to the last position in the text</dd>
<dt>AtInsert()</dt>
<dd>refers to the point where the text cursor is</dd>
<dt>AtSelFirst()</dt>
<dd>indicates the beginning point of the selected text</dd>
<dt>AtSelLast()</dt>
<dd>denotes the last point of the selected text and finally</dd>
<dt>At(x[, y])</dt>
<dd>refers to the character at pixel location <em>x</em>, <em>y</em> (with <em>y</em> not used in the
case of a text entry widget, which contains a single line of text).</dd>
</dl>
</dd>
<dt>Text widget indexes</dt>
<dd>The index notation for Text widgets is very rich and is best described in the Tk
man pages.</dd>
<dt>Menu indexes (menu.invoke(), menu.entryconfig(), etc.)</dt>
<dd><p class="first">Some options and methods for menus manipulate specific menu entries. Anytime a
menu index is needed for an option or a parameter, you may pass in:</p>
<ul class="last simple">
<li>an integer which refers to the numeric position of the entry in the widget,
counted from the top, starting with 0;</li>
<li>the string <tt class="docutils literal"><span class="pre">'active'</span></tt>, which refers to the menu position that is currently
under the cursor;</li>
<li>the string <tt class="docutils literal"><span class="pre">&quot;last&quot;</span></tt> which refers to the last menu item;</li>
<li>An integer preceded by <tt class="docutils literal"><span class="pre">&#64;</span></tt>, as in <tt class="docutils literal"><span class="pre">&#64;6</span></tt>, where the integer is interpreted
as a y pixel coordinate in the menu&#8217;s coordinate system;</li>
<li>the string <tt class="docutils literal"><span class="pre">&quot;none&quot;</span></tt>, which indicates no menu entry at all, most often used
with menu.activate() to deactivate all entries, and finally,</li>
<li>a text string that is pattern matched against the label of the menu entry, as
scanned from the top of the menu to the bottom.  Note that this index type is
considered after all the others, which means that matches for menu items
labelled <tt class="docutils literal"><span class="pre">last</span></tt>, <tt class="docutils literal"><span class="pre">active</span></tt>, or <tt class="docutils literal"><span class="pre">none</span></tt> may be interpreted as the above
literals, instead.</li>
</ul>
</dd>
</dl>
</div>
<div class="section" id="images">
<h3>24.1.6.9. Images<a class="headerlink" href="#images" title="Permalink to this headline">¶</a></h3>
<p>Bitmap/Pixelmap images can be created through the subclasses of
<tt class="xref py py-class docutils literal"><span class="pre">Tkinter.Image</span></tt>:</p>
<ul class="simple">
<li><tt class="xref py py-class docutils literal"><span class="pre">BitmapImage</span></tt> can be used for X11 bitmap data.</li>
<li><tt class="xref py py-class docutils literal"><span class="pre">PhotoImage</span></tt> can be used for GIF and PPM/PGM color bitmaps.</li>
</ul>
<p>Either type of image is created through either the <tt class="docutils literal"><span class="pre">file</span></tt> or the <tt class="docutils literal"><span class="pre">data</span></tt>
option (other options are available as well).</p>
<p>The image object can then be used wherever an <tt class="docutils literal"><span class="pre">image</span></tt> option is supported by
some widget (e.g. labels, buttons, menus). In these cases, Tk will not keep a
reference to the image. When the last Python reference to the image object is
deleted, the image data is deleted as well, and Tk will display an empty box
wherever the image was used.</p>
</div>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
  <h3><a href="../contents.html">Table Of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">24.1. <tt class="docutils literal"><span class="pre">Tkinter</span></tt> &#8212; Python interface to Tcl/Tk</a><ul>
<li><a class="reference internal" href="#tkinter-modules">24.1.1. Tkinter Modules</a></li>
<li><a class="reference internal" href="#tkinter-life-preserver">24.1.2. Tkinter Life Preserver</a><ul>
<li><a class="reference internal" href="#how-to-use-this-section">24.1.2.1. How To Use This Section</a></li>
<li><a class="reference internal" href="#a-simple-hello-world-program">24.1.2.2. A Simple Hello World Program</a></li>
</ul>
</li>
<li><a class="reference internal" href="#a-very-quick-look-at-tcl-tk">24.1.3. A (Very) Quick Look at Tcl/Tk</a></li>
<li><a class="reference internal" href="#mapping-basic-tk-into-tkinter">24.1.4. Mapping Basic Tk into Tkinter</a></li>
<li><a class="reference internal" href="#how-tk-and-tkinter-are-related">24.1.5. How Tk and Tkinter are Related</a></li>
<li><a class="reference internal" href="#handy-reference">24.1.6. Handy Reference</a><ul>
<li><a class="reference internal" href="#setting-options">24.1.6.1. Setting Options</a></li>
<li><a class="reference internal" href="#the-packer">24.1.6.2. The Packer</a></li>
<li><a class="reference internal" href="#packer-options">24.1.6.3. Packer Options</a></li>
<li><a class="reference internal" href="#coupling-widget-variables">24.1.6.4. Coupling Widget Variables</a></li>
<li><a class="reference internal" href="#the-window-manager">24.1.6.5. The Window Manager</a></li>
<li><a class="reference internal" href="#tk-option-data-types">24.1.6.6. Tk Option Data Types</a></li>
<li><a class="reference internal" href="#bindings-and-events">24.1.6.7. Bindings and Events</a></li>
<li><a class="reference internal" href="#the-index-parameter">24.1.6.8. The index Parameter</a></li>
<li><a class="reference internal" href="#images">24.1.6.9. Images</a></li>
</ul>
</li>
</ul>
</li>
</ul>

  <h4>Previous topic</h4>
  <p class="topless"><a href="tk.html"
                        title="previous chapter">24. Graphical User Interfaces with Tk</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="ttk.html"
                        title="next chapter">24.2. <tt class="docutils literal"><span class="pre">ttk</span></tt> &#8212; Tk themed widgets</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
  <li><a href="../bugs.html">Report a Bug</a></li>
  <li><a href="../_sources/library/tkinter.txt"
         rel="nofollow">Show Source</a></li>
</ul>

<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="../search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="ttk.html" title="24.2. ttk — Tk themed widgets"
             >next</a> |</li>
        <li class="right" >
          <a href="tk.html" title="24. Graphical User Interfaces with Tk"
             >previous</a> |</li>
        <li><img src="../_static/py.png" alt=""
                 style="vertical-align: middle; margin-top: -1px"/></li>
        <li><a href="http://www.python.org/">Python</a> &raquo;</li>
        <li>
          <a href="../index.html">Python 2.7.5 documentation</a> &raquo;
        </li>

          <li><a href="index.html" >The Python Standard Library</a> &raquo;</li>
          <li><a href="tk.html" >24. Graphical User Interfaces with Tk</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
    &copy; <a href="../copyright.html">Copyright</a> 1990-2019, Python Software Foundation.
    <br />
    The Python Software Foundation is a non-profit corporation.
    <a href="http://www.python.org/psf/donations/">Please donate.</a>
    <br />
    Last updated on Jul 03, 2019.
    <a href="../bugs.html">Found a bug</a>?
    <br />
    Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
    </div>

  </body>
</html>

Filemanager

Name Type Size Permission Actions
2to3.html File 49.27 KB 0644
__builtin__.html File 10.26 KB 0644
__future__.html File 13.79 KB 0644
__main__.html File 7.05 KB 0644
_winreg.html File 59.21 KB 0644
abc.html File 23.9 KB 0644
aepack.html File 13.16 KB 0644
aetools.html File 14.91 KB 0644
aetypes.html File 18.88 KB 0644
aifc.html File 22.4 KB 0644
al.html File 17.34 KB 0644
allos.html File 33.72 KB 0644
anydbm.html File 16.33 KB 0644
archiving.html File 9.26 KB 0644
argparse.html File 237.62 KB 0644
array.html File 29.29 KB 0644
ast.html File 34.98 KB 0644
asynchat.html File 31.43 KB 0644
asyncore.html File 36.51 KB 0644
atexit.html File 16.8 KB 0644
audioop.html File 31.36 KB 0644
autogil.html File 8.19 KB 0644
base64.html File 19.67 KB 0644
basehttpserver.html File 34.04 KB 0644
bastion.html File 11.04 KB 0644
bdb.html File 36.68 KB 0644
binascii.html File 20.67 KB 0644
binhex.html File 10.58 KB 0644
bisect.html File 23.24 KB 0644
bsddb.html File 26.43 KB 0644
bz2.html File 26.08 KB 0644
calendar.html File 37.79 KB 0644
carbon.html File 48.94 KB 0644
cd.html File 27.96 KB 0644
cgi.html File 49.92 KB 0644
cgihttpserver.html File 13.1 KB 0644
cgitb.html File 11.41 KB 0644
chunk.html File 14.66 KB 0644
cmath.html File 25.63 KB 0644
cmd.html File 26.09 KB 0644
code.html File 24.58 KB 0644
codecs.html File 100.64 KB 0644
codeop.html File 14.84 KB 0644
collections.html File 133.96 KB 0644
colorpicker.html File 7.52 KB 0644
colorsys.html File 11.04 KB 0644
commands.html File 14.36 KB 0644
compileall.html File 16.83 KB 0644
compiler.html File 67.75 KB 0644
configparser.html File 62.13 KB 0644
constants.html File 12.83 KB 0644
contextlib.html File 19.39 KB 0644
cookie.html File 39.07 KB 0644
cookielib.html File 83.82 KB 0644
copy.html File 12.19 KB 0644
copy_reg.html File 13.76 KB 0644
crypt.html File 10.04 KB 0644
crypto.html File 7.59 KB 0644
csv.html File 67.37 KB 0644
ctypes.html File 238.78 KB 0644
curses.ascii.html File 22.29 KB 0644
curses.html File 146.63 KB 0644
curses.panel.html File 14.39 KB 0644
custominterp.html File 7.62 KB 0644
datatypes.html File 16.84 KB 0644
datetime.html File 226.59 KB 0644
dbhash.html File 15.48 KB 0644
dbm.html File 12.07 KB 0644
debug.html File 10.15 KB 0644
decimal.html File 194.44 KB 0644
development.html File 14.17 KB 0644
difflib.html File 84.83 KB 0644
dircache.html File 11.41 KB 0644
dis.html File 69.95 KB 0644
distutils.html File 8.05 KB 0644
dl.html File 16.33 KB 0644
doctest.html File 165.54 KB 0644
docxmlrpcserver.html File 16.43 KB 0644
dumbdbm.html File 14.02 KB 0644
dummy_thread.html File 9.43 KB 0644
dummy_threading.html File 8.37 KB 0644
easydialogs.html File 30.55 KB 0644
email-examples.html File 45.65 KB 0644
email.charset.html File 26.8 KB 0644
email.encoders.html File 11.86 KB 0644
email.errors.html File 15.77 KB 0644
email.generator.html File 20.77 KB 0644
email.header.html File 26.92 KB 0644
email.html File 44.24 KB 0644
email.iterators.html File 11.52 KB 0644
email.message.html File 63.16 KB 0644
email.mime.html File 27.93 KB 0644
email.parser.html File 30.45 KB 0644
email.util.html File 24.46 KB 0644
errno.html File 37.99 KB 0644
exceptions.html File 56.13 KB 0644
fcntl.html File 22.67 KB 0644
filecmp.html File 22.3 KB 0644
fileformats.html File 9.14 KB 0644
fileinput.html File 24.28 KB 0644
filesys.html File 10.2 KB 0644
fl.html File 49.92 KB 0644
fm.html File 11.91 KB 0644
fnmatch.html File 14.58 KB 0644
formatter.html File 34.06 KB 0644
fpectl.html File 16.01 KB 0644
fpformat.html File 10.59 KB 0644
fractions.html File 22.61 KB 0644
framework.html File 33.34 KB 0644
frameworks.html File 7.14 KB 0644
ftplib.html File 43.99 KB 0644
functions.html File 183.14 KB 0644
functools.html File 27.17 KB 0644
future_builtins.html File 13.04 KB 0644
gc.html File 25.75 KB 0644
gdbm.html File 15.96 KB 0644
gensuitemodule.html File 11.51 KB 0644
getopt.html File 23.66 KB 0644
getpass.html File 10.65 KB 0644
gettext.html File 78.76 KB 0644
gl.html File 22.09 KB 0644
glob.html File 13.26 KB 0644
grp.html File 10.49 KB 0644
gzip.html File 18.99 KB 0644
hashlib.html File 18.2 KB 0644
heapq.html File 31.61 KB 0644
hmac.html File 10.46 KB 0644
hotshot.html File 18.65 KB 0644
htmllib.html File 25.32 KB 0644
htmlparser.html File 39.11 KB 0644
httplib.html File 62.95 KB 0644
i18n.html File 9.52 KB 0644
ic.html File 17.17 KB 0644
idle.html File 20.9 KB 0644
imageop.html File 14.76 KB 0644
imaplib.html File 51.99 KB 0644
imgfile.html File 11.71 KB 0644
imghdr.html File 11.3 KB 0644
imp.html File 34.34 KB 0644
importlib.html File 8.26 KB 0644
imputil.html File 31.81 KB 0644
index.html File 72.78 KB 0644
inspect.html File 50.71 KB 0644
internet.html File 24.87 KB 0644
intro.html File 8.93 KB 0644
io.html File 98.13 KB 0644
ipc.html File 13.41 KB 0644
itertools.html File 115.91 KB 0644
jpeg.html File 12.74 KB 0644
json.html File 67.04 KB 0644
keyword.html File 7.68 KB 0644
language.html File 11.03 KB 0644
linecache.html File 10.59 KB 0644
locale.html File 55.14 KB 0644
logging.config.html File 63.36 KB 0644
logging.handlers.html File 69.64 KB 0644
logging.html File 95.64 KB 0644
mac.html File 21.79 KB 0644
macos.html File 14.76 KB 0644
macosa.html File 12.96 KB 0644
macostools.html File 15.52 KB 0644
macpath.html File 7.76 KB 0644
mailbox.html File 156.75 KB 0644
mailcap.html File 13.21 KB 0644
markup.html File 18.77 KB 0644
marshal.html File 17.98 KB 0644
math.html File 39.24 KB 0644
md5.html File 13.97 KB 0644
mhlib.html File 21.54 KB 0644
mimetools.html File 19.25 KB 0644
mimetypes.html File 28.39 KB 0644
mimewriter.html File 15.02 KB 0644
mimify.html File 13.36 KB 0644
miniaeframe.html File 12.2 KB 0644
misc.html File 6.87 KB 0644
mm.html File 9.03 KB 0644
mmap.html File 28.36 KB 0644
modulefinder.html File 15.31 KB 0644
modules.html File 8.46 KB 0644
msilib.html File 52.43 KB 0644
msvcrt.html File 19.37 KB 0644
multifile.html File 24.3 KB 0644
multiprocessing.html File 365.71 KB 0644
mutex.html File 11.23 KB 0644
netdata.html File 16.98 KB 0644
netrc.html File 12.3 KB 0644
new.html File 12.12 KB 0644
nis.html File 10.64 KB 0644
nntplib.html File 41.92 KB 0644
numbers.html File 37.75 KB 0644
numeric.html File 13.55 KB 0644
operator.html File 82 KB 0644
optparse.html File 222.56 KB 0644
os.html File 214.25 KB 0644
os.path.html File 38.34 KB 0644
ossaudiodev.html File 41.5 KB 0644
othergui.html File 9.08 KB 0644
parser.html File 39.36 KB 0644
pdb.html File 33.96 KB 0644
persistence.html File 14.87 KB 0644
pickle.html File 102.27 KB 0644
pickletools.html File 10.63 KB 0644
pipes.html File 18.01 KB 0644
pkgutil.html File 25.11 KB 0644
platform.html File 28.37 KB 0644
plistlib.html File 17.03 KB 0644
popen2.html File 25.43 KB 0644
poplib.html File 22.32 KB 0644
posix.html File 14.41 KB 0644
posixfile.html File 19.76 KB 0644
pprint.html File 29.92 KB 0644
profile.html File 63.56 KB 0644
pty.html File 9.48 KB 0644
pwd.html File 11.43 KB 0644
py_compile.html File 11.12 KB 0644
pyclbr.html File 14.71 KB 0644
pydoc.html File 11.48 KB 0644
pyexpat.html File 71.53 KB 0644
python.html File 12.27 KB 0644
queue.html File 24.22 KB 0644
quopri.html File 11.9 KB 0644
random.html File 37.83 KB 0644
re.html File 134.74 KB 0644
readline.html File 28.24 KB 0644
repr.html File 20.43 KB 0644
resource.html File 26.48 KB 0644
restricted.html File 11.65 KB 0644
rexec.html File 37.41 KB 0644
rfc822.html File 42.22 KB 0644
rlcompleter.html File 13.51 KB 0644
robotparser.html File 12.27 KB 0644
runpy.html File 19.34 KB 0644
sched.html File 18.54 KB 0644
scrolledtext.html File 9.32 KB 0644
select.html File 39.67 KB 0644
sets.html File 36.92 KB 0644
sgi.html File 9.71 KB 0644
sgmllib.html File 30.77 KB 0644
sha.html File 12.09 KB 0644
shelve.html File 27.02 KB 0644
shlex.html File 32.1 KB 0644
shutil.html File 40.22 KB 0644
signal.html File 31.14 KB 0644
simplehttpserver.html File 18.41 KB 0644
simplexmlrpcserver.html File 31.39 KB 0644
site.html File 23.64 KB 0644
smtpd.html File 12.46 KB 0644
smtplib.html File 42.13 KB 0644
sndhdr.html File 10.02 KB 0644
socket.html File 106.34 KB 0644
socketserver.html File 59.83 KB 0644
someos.html File 15.11 KB 0644
spwd.html File 10.33 KB 0644
sqlite3.html File 139.5 KB 0644
ssl.html File 65.62 KB 0644
stat.html File 32.31 KB 0644
statvfs.html File 10.6 KB 0644
stdtypes.html File 260.4 KB 0644
string.html File 106.65 KB 0644
stringio.html File 18.81 KB 0644
stringprep.html File 16.13 KB 0644
strings.html File 14.93 KB 0644
struct.html File 40.88 KB 0644
subprocess.html File 84.91 KB 0644
sun.html File 6.84 KB 0644
sunau.html File 27.1 KB 0644
sunaudio.html File 17.79 KB 0644
symbol.html File 7.66 KB 0644
symtable.html File 22.94 KB 0644
sys.html File 98.7 KB 0644
sysconfig.html File 23.84 KB 0644
syslog.html File 17.92 KB 0644
tabnanny.html File 10.63 KB 0644
tarfile.html File 78.68 KB 0644
telnetlib.html File 25.48 KB 0644
tempfile.html File 29.42 KB 0644
termios.html File 16.01 KB 0644
test.html File 52.62 KB 0644
textwrap.html File 27.25 KB 0644
thread.html File 20.47 KB 0644
threading.html File 76.69 KB 0644
time.html File 56.93 KB 0644
timeit.html File 36.27 KB 0644
tix.html File 46.96 KB 0644
tk.html File 23.64 KB 0644
tkinter.html File 67.67 KB 0644
token.html File 19.62 KB 0644
tokenize.html File 18.45 KB 0644
trace.html File 25.54 KB 0644
traceback.html File 33.44 KB 0644
ttk.html File 101.75 KB 0644
tty.html File 9.06 KB 0644
turtle.html File 211.74 KB 0644
types.html File 27.59 KB 0644
undoc.html File 23.16 KB 0644
unicodedata.html File 18.55 KB 0644
unittest.html File 202.85 KB 0644
unix.html File 10.55 KB 0644
urllib.html File 58.68 KB 0644
urllib2.html File 100.58 KB 0644
urlparse.html File 40.41 KB 0644
user.html File 11.83 KB 0644
userdict.html File 29.73 KB 0644
uu.html File 11.03 KB 0644
uuid.html File 28.19 KB 0644
warnings.html File 46.6 KB 0644
wave.html File 22.22 KB 0644
weakref.html File 36.52 KB 0644
webbrowser.html File 23.07 KB 0644
whichdb.html File 8.85 KB 0644
windows.html File 9.33 KB 0644
winsound.html File 18.75 KB 0644
wsgiref.html File 81.04 KB 0644
xdrlib.html File 29.94 KB 0644
xml.dom.html File 89.04 KB 0644
xml.dom.minidom.html File 40.42 KB 0644
xml.dom.pulldom.html File 12.71 KB 0644
xml.etree.elementtree.html File 93.22 KB 0644
xml.html File 16.49 KB 0644
xml.sax.handler.html File 38.63 KB 0644
xml.sax.html File 20.22 KB 0644
xml.sax.reader.html File 39.09 KB 0644
xml.sax.utils.html File 14.26 KB 0644
xmlrpclib.html File 60.79 KB 0644
zipfile.html File 53.14 KB 0644
zipimport.html File 20.42 KB 0644
zlib.html File 25.46 KB 0644