A port from the CLD (Compact Language Detector) library embedded in
Google's Chromium browser. The library detects the language from
provided UTF8 text (plain text or HTML). This is python bindings.
libdasm is a C-library that tries to provide simple and convenient
way to disassemble Intel x86 raw opcode bytes (machine code). It
can parse and print out opcodes in AT&T and Intel syntax.
pynagioscheck is a Python framework for Nagios plug-in developers.
pynagioscheck strives to conform to the practices described in the Nagios
Plug-in Development Guidelines and, more importantly, save valuable system
administrator time.
Cuisine is a small set of functions that sit on top of Fabric, to
abstract common administration operations such as file/dir operations,
user/group creation, package install/upgrade, making it easier to
write portable administration and deployment scripts.
pyNotifier is a notifier/event scheduler abstraction written in python.
It implements notification mechanisms for socket events (read or write)
and timers. Additionally external event dispatchers may be called during
an idle period.
Daemons is a resource library for Python developers that want to create daemon
processes. The idea is to provide the basic daemon functionality while still
giving the developer the ability to customize their daemon for any purpose.
An enumeration is a set of symbolic names (members) bound to unique, constant
values. Within an enumeration, the members can be compared by identity, and
the enumeration itself can be iterated over.
future is the missing compatibility layer between Python 2 and Python 3.
It allows you to use a single, clean Python 3.x-compatible codebase to
support both Python 2 and Python 3 with minimal overhead.
Backport of the concurrent.futures package from Python 3.2
The concurrent.futures module provides a high-level interface for
asynchronously executing callables.
This is described in PEP-3148 and is included in Python 3.2+
repoze.lru is a LRU (least recently used) cache implementation.
Keys and values that are not used frequently will be evicted
from the cache faster than keys and values that are used frequently.