logutils
Logging utilities
What it is and what it does
Logutils is a collection of logging handlers that extend Python's standard logging module. It packages handlers that fall outside the standard library's scope, plus backported versions of logging features from newer Python releases that work with older versions. The package has no runtime dependencies and integrates directly with Python's logging framework.
The package is in production-stable status but abandoned since its latest release on 2017-06-24. It carries high install friction due to source-only distribution, and its compatibility with modern Python versions is unspecified and untested. Users should verify handler compatibility with their target Python version before adopting it.
Use it for:
- Add queue-based logging handlers to decouple log processing from application threads
- Use backported logging features in projects constrained to older Python versions
- Integrate specialized handlers not available in the standard library for specific logging patterns
- Extend logging infrastructure with handlers designed for production systems
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides additional logging handlers for Python's standard library logging module, including handlers not in the standard library and backports of newer Python logging features to older versions.
No. The package is abandoned (last release 2017-06-24), carries high install friction, and its compatibility with modern Python versions is unspecified. Modern Python versions include many of the logging enhancements this package backported. Use only if you have a specific legacy handler requirement and can verify compatibility with your Python version.
Install
logutils on PyPI
pip
pip install logutilsuv
uv add logutilspoetry
poetry add logutilsInstalling logutils
Before you install
High install friction due to source-only distribution. Package is abandoned since 2017-06-24 with no updates since; maintenance status poses risk for long-term use or compatibility with modern Python versions.
License in practice
Permissive BSD license (Copyright 2010-2017 Vinay Sajip) allows use, modification, and distribution with minimal restrictions, suitable for both open-source and proprietary projects.
Quickstart
pip install logutils
import logging
from logutils.queue import QueueHandler
handler = QueueHandler(queue.Queue())
Source-only distribution requires a C compiler and build tools; Python version compatibility unspecified and untested against modern Python releases.
Verify before relying
- Whether handlers remain compatible with current Python versions or logging module API changes
- Which specific handlers are included and their use cases beyond standard library offerings
- Whether the package is maintained elsewhere despite PyPI abandonment status
Package facts
| License | Copyright (C) 2010-2017 by Vinay Sajip. All Rights Reserved. See LICENSE.txt for license. (permissive) |
| Python support | not specified |
| Install friction | high — source build required |
| Runtime dependencies | none |
| Maintenance | abandoned — 3,338 days since the last release |
| First released | |
| Downloads | 128,202/month — #11,717 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: logutils-0.3.5.tar.gz
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
configparserProvides an updated ConfigParser implementation…
permissive · top 5,000 on PyPI
contextlib2contextlib2 backports the Python standard…
permissive · top 5,000 on PyPI
typingProvides type hints and annotations for Python…
permissive · top 5,000 on PyPI
pickle5Backports the pickle 5 protocol (PEP 574) and…
permissive · top 15,000 on PyPI
configparser2Backport of Python 3's configparser module to…
permissive · top 15,000 on PyPI
importlib-metadataProvides third-party access to Python package…
permissive · top 100 on PyPI
backports.tempfileProvides the TemporaryDirectory context manager…
permissive · top 5,000 on PyPI
traceback2Provides a backport of Python's traceback…
permissive · top 5,000 on PyPI
eval-type-backportEnables newer Python typing syntax (like `X |…
permissive · top 1,000 on PyPI