--- id: minilog version: "2.3.1" license: MIT license_treatment: permissive maintenance: aging --- # minilog — Minimalistic wrapper for Python logging. License: permissive · Maintenance: aging · Downloads: 141.2K/mo ## What it is and what it does Minilog is a thin wrapper around Python's standard logging module designed to reduce boilerplate for simple logging use cases. Instead of importing logging, calling getLogger(__name__), and manually configuring basicConfig in each module, you import minilog and call its init() method once. It produces standard library logging records behind the scenes with automatic formatting for non-strings, so the output is compatible with existing logging infrastructure. The package targets developers who want logging in their projects but find the standard library's setup overhead excessive for straightforward cases. It supports Python 3.8 through 3.12 and has been stable since its initial release, though development has slowed (last release 720 days ago). With no runtime dependencies, it installs cleanly and integrates into any Python project. Use it for: - Quick scripts and CLI tools where full logging configuration feels like overkill but you want structured output. - Small libraries or modules that need logging without forcing users to configure the logging module themselves. - Educational projects or examples where you want to teach logging best practices without drowning in setup code. - Rapid prototyping where you want to add logging quickly without boilerplate ceremony. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Minilog wraps Python's standard logging module to eliminate boilerplate, letting you call logging methods directly without manual logger setup or basicConfig calls. Yes, if you want to reduce logging boilerplate in simple projects. The package is stable, permissively licensed, has zero dependencies, and works across modern Python versions. The aging maintenance status (last release 720 days ago) is not a blocker for a mature, low-complexity tool, but it signals this is a stable utility unlikely to gain new features. Install it for convenience in small scripts and libraries; skip it if you need active development or advanced logging features. ## Install pip install minilog uv add minilog poetry add minilog ## Installing minilog Before you install: Low install friction with no runtime dependencies. Maintenance is aging—last release was 720 days ago, though the repository remains active with a recent commit on 2025-10-06. Suitable for stable, low-change use. License in practice: MIT license (permissive) means you can use, modify, and distribute minilog freely in commercial and private projects with minimal restrictions. Quickstart: pip install minilog import minilog minilog.init() minilog.info("Hello, %s!", "world") Verify before relying: - Whether automatic formatting for non-strings covers all common data types or has edge cases. - Performance characteristics compared to direct logging module use in high-volume scenarios. - Exact API surface and available logging methods beyond info() and debug(). ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: low - Maintenance: aging - Downloads: 141.2K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags simple logging wrapper, reduce logging boilerplate, easy python logging, minimal logger setup, logging without configuration, quick logging module, logging, boilerplate-reduction [View on SkillFed](https://skillfed.io/packages/minilog) · [View on PyPI](https://pypi.org/project/minilog/)