This is an implementation of DomainKeys Identified Mail (DKIM) draft standard
for the Postfix mail transfer agent. DKIM is a scheme to sign and verify
e-mail messages on a per-domain basis.
Details regarding the protocol and other issues related to the draft standard
can be found at http://mipassoc.org/dkim/.
pkipplib is a Python library which can prepare IPP requests with the
help of a somewhat high level API. These requests can then be sent to
an IPP printer or print server (e.g. CUPS). This library can also parse
IPP answers received, and create high level Python objects from them.
This module provides the mod_auth_basic authentication front-end a way to
authenticate users by checking credentials via the Cyrus SASL library.
This may be interesting for setups where other daemons (e.g. for SMTP, IMAP or
LDAP) already running at a machine use SASL to authenticate users.
flog (file logger) is a small C program that reads input from STDIN and writes
to a file, optionally adding timestamps. If SIGHUP is received, the file will
be reopened, allowing for log rotation (see newsyslog(8)). The log file will
only be reopened if flog detects that rotation has occurred (i.e., the old file
is gone or the inode has changed). flog is extremely small (a memory footprint
of less than 500 bytes). It also protects you from running out of disk space;
if that happens, the logfile will be truncated and a warning generated. This
could save you from waking up to pager beeps in the middle of the night.
eyeD3 is a Python program/module for processing (reading and
writing) ID3 tags. Information about mp3 files (i.e bit rate,
sample frequency, play time, etc.) is also available. The formats
supported are ID3 v1.0/v1.1 and v2.3/v2.4.
Differences lists are a list-like type supporting O(1) append. This is
particularly useful for efficient logging and pretty printing, (e.g.
with the Writer monad), where list append quickly becomes too expensive.
This is an implementation of Tarjan's Union-Find algorithm (Robert E.
Tarjan. "Efficiency of a Good But Not Linear Set Union Algorithm", JACM
22(2), 1975) in order to maintain an equivalence relation.
This module exports a number of functions that are useful for
validating and converting data types. It is intended for use in
applications where data types are more important than they
typically are in Perl -- e.g., database applications.
ResourcePackage is a mechanism for automatically managing resources (i.e.
non-Python files: small images, documentation files, binary data) embedded in
Python modules (as Python source code), particularly for those wishing to
create re-usable Python program.
Normal python sort algorithm sorts lexicographically, so you might not get the
results that you expect. Natsort provides a function natsorted() that helps sort
lists "naturally", either as real numbers (i.e. signed/unsigned floats or ints),
or as versions.