Flexible factory for Icecream debuggers.
Project description
🍦 Flavorful Debugging - A Python library which enhances the powerful and well-known icecream package with flavored traces, configuration hierarchies, customized outputs, ready-made recipes, and more.
Key Features ⭐
🍒 Debugger Flavors: Numeric trace depths to control level of debugging detail (0 to 9) or custom named flavors for specific subsystems (e.g., io, reporting), traditional logging levels (e.g., info, error), or whatever else you can imagine.
🌳 Module Hierarchy: Global and per-module configs with inheritance for precise control over output prefixes, formatters, custom flavors, etc….
🖨️ Printer Factory: Dyanamically associate output functions with debugger objects based on module name, flavor, etc…. Swap in customized print, logging, or other sinks as desired.
📚 Library-Friendly: Non-intrusive registration for libraries without stepping on application debugger/logging configuration.
🚦 Disabled by Default: Can leave in production code and explicitly activate portions as needed. (Performance and security considerations notwithstanding.)
Installation 📦
Method: Install Python Package
Install via uv pip command:
uv pip install icecream-truck
Or, install via pip:
pip install icecream-truck
Examples 💡
Please see the examples directory for greater detail.
Universal Availability
Install an icecream truck as a Python builtin (default alias, ictr) and then use anywhere in your codebase:
from ictruck import install
install( trace_levels = 3 ) # Enable TRACE0 to TRACE3
message = "Hello, debug world!"
ictr( 1 )( message ) # Prints: TRACE1| message: 'Hello, debug world!'
Library Registration
Libraries can register their own configurations without overriding those of the application or other libraries. By default, the name of the calling module is used to register a default configuration:
from ictruck import register_module
register_module( ) # Can pass custom configuration.
When install is called, any module configurations that were previously registered via register_module are added to the installed icecream truck. This allows an application to setup output after libraries have already registered their flavors, giving lots of initialization-time and runtime flexibility.
Recipes for Customization
Please see the package documentation for available recipes.
E.g., integrate icecream-based introspection and formatting with the logging module in the Python standard library:
import logging
from ictruck.recipes.logging import produce_truck
logging.basicConfig( level = logging.INFO )
truck = produce_truck( )
admonition = "Careful now!"
answer = 42
truck( 'warning' )( admonition ) # Logs: WARNING:__main__:ic| admonition: 'Careful now!'
truck( 'info' )( answer ) # Logs: INFO:__main__:ic| answer: 42
## Note: Module name will be from whatever module calls the truck.
Motivation 🚚
Why icecream-truck?
There is nothing wrong with the icecream or logging packages. However, there are times that the author of icecream-truck has wanted, for various reasons, more than these packages inherently offer:
Coexistence: Application and libraries can coexist without configuration clashes.
Library developers are strongly advised not to create custom levels in logging.
Library developers are advised on how to avoid polluting stderr in logging, when an application has not supplied a configuration.
Loggers propagate upwards by default in logging. This means that libraries must explicitly opt-out of propagation if their authors want to be good citizens and not contribute to noise pollution / signal obfuscation.
Granularity: Control of debug output by depth threshold and subsystem.
Only one default debugging level (DEBUG) with logging. Libraries cannot safely extend this. (See point about coexistence).
No concept of debugging level with ic builtin. Need to orchestrate multiple icecream.IceCreamDebugger instances to support this. (In fact, this is what icecream-truck does.)
While logger hierarchies in logging do support the notion of software subsystems, hierarchies are not always the most convenient or abbreviated way of representing subsystems which span parts or entireties of modules.
Signal: Prevention of undesirable library chatter.
The logging root logger will log all messages, at its current log level or higher, which propagate up to it. Many Python libraries have opt-out rather than opt-in logging, so you see all of their DEBUG and INFO spam unless you surgically manipulate their loggers or squelch the overall log level.
Use of the ic builtin is only recommended for temporary debugging. It cannot be left in production code without spamming. While the enabled flag on the ic builtin can be set to false, it is easy to forget and also applies to every place where ic is used in the code. (See point about granularity.)
Extensibility: More natural integration with packages like rich via robust recipes.
While it is not difficult to change the argToStringFunction on ic to be rich.pretty.pretty_repr, there is some repetitive code involved in each project which wants to do this. And, from a safety perspective, there should be a fallback if rich fails to import.
Similarly, one can add a rich.logging.RichHandler instance to a logger instance with minimal effort. However, depending on the the target output stream, one may also need to build a rich.console.Console first and pass that to the handler. This handler will also compete with whatever handler has been set on the root logger. So, some care must be taken to prevent propagation. Again, this is repetitive code across projects and there are import safety fallbacks to consider.
Contribution 🤝
Contribution to this project is welcome! However, it must follow the code of conduct for the project.
Please file bug reports and feature requests in the issue tracker or submit pull requests to improve the source code or documentation.
For development guidance and standards, please see the development guide.
More Flair
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file icecream_truck-1.5.tar.gz.
File metadata
- Download URL: icecream_truck-1.5.tar.gz
- Upload date:
- Size: 27.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41d08977c243e83b1001dc36b9437ccb00d53195a9000089f2f39e626859df9c
|
|
| MD5 |
e48511070d0b53353f6530866b09f6a7
|
|
| BLAKE2b-256 |
b546636a1aac55002817aa0ff90c644bc213d2a76ce6804ae8c47d88eabf34cb
|
Provenance
The following attestation bundles were made for icecream_truck-1.5.tar.gz:
Publisher:
releaser.yaml on emcd/python-icecream-truck
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
icecream_truck-1.5.tar.gz -
Subject digest:
41d08977c243e83b1001dc36b9437ccb00d53195a9000089f2f39e626859df9c - Sigstore transparency entry: 264227265
- Sigstore integration time:
-
Permalink:
emcd/python-icecream-truck@ecdf652f8b9faa8a642e521c304f5db988fad49d -
Branch / Tag:
refs/tags/v1.5 - Owner: https://github.com/emcd
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
releaser.yaml@ecdf652f8b9faa8a642e521c304f5db988fad49d -
Trigger Event:
push
-
Statement type:
File details
Details for the file icecream_truck-1.5-py3-none-any.whl.
File metadata
- Download URL: icecream_truck-1.5-py3-none-any.whl
- Upload date:
- Size: 36.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5c27e5931d253aa5e46543f3e1e64d997fbff0d8c573b78cff31020bc5d29df
|
|
| MD5 |
107b203b5cf2618aea9fe2bca68c3730
|
|
| BLAKE2b-256 |
dc6cd04fe3a2ae248351300d22a1dfabd9ee0ce5397c55199fd688907ebadb0d
|
Provenance
The following attestation bundles were made for icecream_truck-1.5-py3-none-any.whl:
Publisher:
releaser.yaml on emcd/python-icecream-truck
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
icecream_truck-1.5-py3-none-any.whl -
Subject digest:
c5c27e5931d253aa5e46543f3e1e64d997fbff0d8c573b78cff31020bc5d29df - Sigstore transparency entry: 264227267
- Sigstore integration time:
-
Permalink:
emcd/python-icecream-truck@ecdf652f8b9faa8a642e521c304f5db988fad49d -
Branch / Tag:
refs/tags/v1.5 - Owner: https://github.com/emcd
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
releaser.yaml@ecdf652f8b9faa8a642e521c304f5db988fad49d -
Trigger Event:
push
-
Statement type: