Logpunch is a lightweight Python package providing a customizable colored logger and enhanced exception handling with detailed error tracking — designed to streamline logging and debugging in data science and machine learning projects.
Project description
Logpunch
A lightweight Python package for Data Science and Machine Learning projects, offering a customizable colored logger and an advanced exception tracking system.
Overview
logpunch is designed to streamline debugging and logging in data science and machine learning workflows. It provides:
- A customizable logger with colored terminal output and file-based logging, configurable for different log levels (DEBUG, INFO, WARNING, ERROR, CRITICAL).
- A tracked exception class that automatically captures the file name, function name, and line number of errors, simplifying debugging.
Whether you're building ML pipelines or analyzing data, logpunch enhances traceability and monitoring with minimal setup.
Features
- Flexible Logging: Log to both terminal and files with customizable formats and colors.
- Automatic Error Tracking: Capture detailed context (file, function, line number) for exceptions.
- Lightweight: Minimal dependencies for easy integration into any Python project.
- Configurable: Adjust log levels and directories to suit your needs.
Requirements
- Python 3.7 or higher
- Pydantic
- Colorama
Installation
Install logpunch via PyPI:
pip install logpunch
Usage
Setting Up the Logger
Configure and initialize the logger with a few lines of code:
from logpunch.customlogger import CustomLogger, LoggerConfig
# Define logger configuration
config = LoggerConfig(
log_dir="logs", # Directory for log files
log_level="INFO" # Options: DEBUG, INFO, WARNING, ERROR, CRITICAL
)
# Initialize logger
logger = CustomLogger(config).get_logger()
# Log messages
logger.debug("Debug message: useful for development.")
logger.info("Info message: pipeline started successfully.")
logger.warning("Warning message: disk space low.")
logger.error("Error message: file not found.")
logger.critical("Critical message: system crash!")
Log files are saved in the specified log_dir (e.g., logs/) with timestamps for easy tracking.
Using the Custom Exception
The TrackedException class enhances error handling by automatically capturing the context of where the error occurred:
from logpunch.customlogger import CustomLogger, LoggerConfig
from logpunch.customexception import TrackedException
# Logger setup
config = LoggerConfig(log_dir="logs", log_level="ERROR")
logger = CustomLogger(config).get_logger()
# Function with intentional error
def divide(a, b):
if b == 0:
raise TrackedException("Division by zero is not allowed.")
return a / b
# Handle the exception
try:
result = divide(10, 0)
except TrackedException as e:
logger.error(str(e))
The logged error will include details like the file name, function name, and line number, e.g.:
ERROR: Division by zero is not allowed. (File: example.py, Function: divide, Line: 10)
Why Use logpunch?
- Enhanced Debugging: Pinpoint errors quickly with detailed exception context.
- Clear Logging: Colored logs improve readability during development and debugging.
- Lightweight and Simple: Integrate into any project without heavy dependencies.
- Customizable: Tailor logging behavior to your project’s needs.
Contributing
We welcome contributions! To get started:
- Fork the repository on GitHub.
- Clone your fork and create a new branch:
git checkout -b feature-name. - Make your changes and commit them:
git commit -m "Add feature-name". - Push to your fork:
git push origin feature-name. - Open a pull request with a clear description of your changes.
Please ensure your code follows PEP 8 guidelines and includes tests where applicable.
License
logpunch is licensed under the MIT License.
Contact
For questions or support, open an issue on GitHub or contact the maintainers at grvgulia007@gmail.com.
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 logpunch-1.0.0.tar.gz.
File metadata
- Download URL: logpunch-1.0.0.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f48888b77fddcdb02f983ddaea2a992b870ac5c8f54772c0a17e0cf5508acb6c
|
|
| MD5 |
7e900b3ddd0e8df9d9ec859c6788153f
|
|
| BLAKE2b-256 |
0961699252d282cbf88bafcf95a4c3a64a448ea5d4ea134b31424d8c62ef4f62
|
File details
Details for the file logpunch-1.0.0-py3-none-any.whl.
File metadata
- Download URL: logpunch-1.0.0-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
998aec2777344d80fcbe63e7314bf38e54b4fcc96de699a0b9f335928198817c
|
|
| MD5 |
91bdfc89c19eba20d33fe752dca95fec
|
|
| BLAKE2b-256 |
61292d72f47f2f16a58de688f8eecaaa5a8d72d1a3e24c086d9462a33979c1aa
|