sys — System-specific Configuration — PyMOTW 3

The sys module includes a collection of services for probing or changing the configuration of the interpreter at runtime and resources for interacting with the operating environment outside of the current program. 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.

configparser — Work with Configuration Files — PyMOTW 3

Use the configparser module to manage user-editable configuration files for an application. The contents of the configuration files can be organized into groups and several option value types are supported, including integers, floating point values, and Booleans. Option values can be combined using Python formatting strings, to build longer values such as URLs from shorter values like host names and port numbers. Read more… This post is part of the Python Module of the Week series for Python 3.

compileall — Byte-compile Source Files — PyMOTW 3

The compileall module finds Python source files and compiles them to the byte-code representation, saving the results in .pyc . 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.

select — Wait for I/O Efficiently — PyMOTW 3

The select module provides access to platform-specific I/O monitoring functions. The most portable interface is the POSIX function select(), which is available on UNIX and Windows. The module also includes poll(), a UNIX-only API, and several options that only work with specific variants of UNIX. 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.

calendar — Work with Dates — PyMOTW 3

The calendar module defines the Calendar class, which encapsulates calculations for values such as the dates of the weeks in a given month or year. In addition, the TextCalendar and HTMLCalendar classes can produce pre-formatted output. 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.

bz2 — bzip2 Compression — PyMOTW 3

The bz2 module is an interface for the bzip2 library, used to compress data for storage or transmission. 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.

OpenStack Mitaka Release Complete

I’m excited to announce the final releases for the components of OpenStack Mitaka, which conclude the 6-month Mitaka development cycle. You will find a complete list of all components, their latest versions, and links to individual project release notes documents listed on the new release site. Congratulations to all of the teams who have contributed to this release! I also want to extend a big thank you to Ajaeger and jhesketh for their help with build issues today, and to ttx and dims for their help with release work all this cycle and especially over the last couple of weeks.

difflib — Compare Sequences — PyMOTW 3

The difflib module contains tools for computing and working with differences between sequences. It is especially useful for comparing text, and includes functions that produce reports using several common difference 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.

hashlib — Cryptographic Hashing — PyMOTW 3

The hashlib module defines an API for accessing different cryptographic hashing algorithms. To work with a specific hash algorithm, use the appropriate constructor function or new() to create a hash object. From there, the objects use the same API, no matter what algorithm is being used. 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.