filecmp — Compare Files — PyMOTW 3

The filecmp module includes functions and a class for comparing files and directories on the file system. Read more… This post is part of the Python Module of the Week series for Python 3. See PyMOTW.com for more articles from the series.

sphinxcontrib-paverutils 1.15.0

thumbnail imageWhat’s new in 1.15.0? handle errors in the sphinx portion of the build if the outdir is set, use that instead of building a value

zipimport — Load Python Code from ZIP Archives — PyMOTW 3

The zipimport module implements the zipimporter class, which can be used to find and load Python modules inside ZIP archives. The zipimporter supports the “import hooks” API specified in PEP 302; this is how Python Eggs work. Read more… This post is part of the Python Module of the Week series for Python 3. See PyMOTW.com for more articles from the series.

warnings — Non-fatal Alerts — PyMOTW 3

The warnings module was introduced by PEP 230 as a way to warn programmers about changes in language or library features in anticipation of backwards incompatible changes coming with Python 3.0. It can also be used to report recoverable configuration errors or feature degradation from missing libraries. Read more… This post is part of the Python Module of the Week series for Python 3. See PyMOTW.com for more articles from the series.

imaplib — IMAP4 Client Library — PyMOTW 3

imaplib implements a client for communicating with Internet Message Access Protocol (IMAP) version 4 servers. The IMAP protocol defines a set of commands sent to the server and the responses delivered back to the client. Most of the commands are available as methods of the IMAP4 object used to communicate with the server. Read more… This post is part of the Python Module of the Week series for Python 3. See PyMOTW.

mailbox — Manipulate Email Archives — PyMOTW 3

The mailbox module defines a common API for accessing email messages stored in local disk formats. Read more… This post is part of the Python Module of the Week series for Python 3. See PyMOTW.com for more articles from the series.

mmap — Memory-map Files — PyMOTW 3

Memory-mapping a file uses the operating system virtual memory system to access the data on the file system directly, instead of using normal I/O functions. Memory-mapping typically improves I/O performance because it does not involve a separate system call for each access and it does not require copying data between buffers – the memory is accessed directly by both the kernel and the user application. Read more… This post is part of the Python Module of the Week series for Python 3.

fileinput — Command-Line Filter Framework — PyMOTW 3

The fileinput module is a framework for creating command-line programs for processing text files as a filter. Read more… This post is part of the Python Module of the Week series for Python 3. See PyMOTW.com for more articles from the series.

webbrowser — Displays web pages — PyMOTW 3

The webbrowser module includes functions to open URLs in interactive browser applications. The module includes a registry of available browsers, in case multiple options are available on the system. It can also be controlled with the BROWSER environment variable. Read more… This post is part of the Python Module of the Week series for Python 3. See PyMOTW.com for more articles from the series.