Weekly blog series about the standard library modules distributed with Python.
signal module. ...webbrowser module to display web pages to your users. ...uuid module implements Universally Unique Identifiers as described in RFC 4122. ...SimpleXMLRPCServer module makes it easy to use remote procedure calls in Python that work with many other languages, too. ...warnings module. ...platform module. ...dircache module includes a function for caching directory listings. ...Cookie module defines classes for parsing and creating HTTP cookie headers. ...contextlib module contains utilities for working with context managers and the with statement. ...traceback module contains functions for producing error messages with stack traces. ...heapq implements a min-heap sort algorithm suitable for use with Python's lists. ...cmd module contains a base class for creating command interpreters. ...functools module includes tools for wrapping functions and other callable objects. ...filecmp module. ...fnmatch module. ...operator module contains functions that perform the same operations as man of the built-in operators. ...collections module includes container data types beyond the builtin types list and dict. ...re or socket, both of which have entire books written about them. ...datetime module includes functions and classes for doing date parsing, formatting, and arithmetic. ...time module provides functions for working with dates and times. ...EasyDialogs to include Mac OS-native dialogs in your Python scripts. ...imp module exposes the implementation of Python's import statement. ...pkgutil. ...tempfile module. ...string module still contains several useful items. ...os.path for platform-independent manipulation of file names. ...hashlib. ...threading module lets you run multiple operations concurrently in the same process space. ...weakref module lets you refer to an object without preventing it from being garbage collected. ...mmap. ...zipimport module can be used to import and run Python code found inside ZIP archives. ...zipfile module can be used to manipulate ZIP archive files. ...BaseHTTPServer module includes classes which can form the basis of a web server. ...SocketServer module is a framework for creating network servers. It provides base classes for handling TCP, UDP, Unix streams, and Unix datagrams and supports both threading and forking servers, depending on what is most appropriate for your situation. ...inspect module provides a variety of functions for introspecting on live objects and their source code. ...