imapautofiler 1.6.0

thumbnail imageWhat’s new in 1.6.0? TimeLimit Rule (contributed by jacques-cadet) Allow more imap configuration via autofiler config (contributed by Matt Olsen)

readline — The GNU readline Library — PyMOTW 3

The readline module can be used to enhance interactive command line programs to make them easier to use. It is primarily used to provide command line text completion, or “tab completion”. 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.

imapautofiler 1.5.0

thumbnail imageWhat’s new in 1.5.0? Add support for using the keyring module to store the IMAP password (contributed by Chris Rose) restore the api documentation Add documentation of mailbox list and example configuration (contributed by Dan Poirier)

shutil — High-level File Operations — PyMOTW 3

The shutil module includes high-level file operations such as copying and archiving. 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.

tempfile — Temporary File System Objects — PyMOTW 3

Creating temporary files with unique names securely, so they cannot be guessed by someone wanting to break the application or steal the data, is challenging. The tempfile module provides several functions for creating temporary file system resources securely. TemporaryFile() opens and returns an unnamed file, NamedTemporaryFile() opens and returns a named file, SpooledTemporaryFile holds its content in memory before writing to disk, and TemporaryDirectory is a context manager what removes the directory when the context is closed.

imapautofiler 1.4.0 - i18n support

thumbnail imageWhat’s new in 1.4.0? add i18n support to sort actions add internationalized header support (contributed by Ruslan Nasonov) implement “and” rule

imapautofiler 1.3.0

thumbnail imageWhat’s new in 1.3.0? add sort action with the ability to derive a destination mailbox name from a message header add sort-mailing-list action add a rule for checking if a message is from a mailing list add a rule for checking if a header exists do not die if there is an error handling one message

whereto 0.3.0

What’s new? add support for testing paths are not redirected add 410 example to docs fix test parsing for 410 tests fix use of verbosity flag

pathlib — Filesystem Paths as Objects — PyMOTW 3

pathlib includes classes for managing filesystem paths formatted using either the POSIX standard or Microsoft Windows syntax. It includes so called “pure” classes, which operate on strings but do not interact with an actual filesystem, and “concrete” classes, which extend the API to include operations that reflect or modify data on the local filesystem. Read more… This post is part of the Python Module of the Week series for Python 3.

codecs — String Encoding and Decoding — PyMOTW 3

The codecs module provides stream and file interfaces for transcoding data. It is most commonly used to work with Unicode text, but other encodings are also available for other purposes. 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.