Helper library to configure logging for python
Project description
Logging for Data Pipelines
This library simplifies the logging setup process for new data pipelines, eliminating the need to repeatedly look up logger configurations.
Installation
Install the library via pip:
pip install log4data
Usage
To start using the library, simply import it in your script, and use the default configuration if you don't want to manually configure the logger.
import src.log4data.main as l4d
import logging as lg
if __name__ == "__main__":
l4d.default_setup_logger()
lg.info("Setup complete")
With just a few lines of code, you can set up effective logging. This will generate a log like this:
2024-07-03 00:00:00,000 - root - INFO - We are logging!
A more advanced use of the library is parametrize the file name or the logging level like this:
# main.py
import log4data as l4d
import logging as lg
if __name__ == "__main__":
args = l4d.set_log_args(return_args=True)
l4d.setup_logger(args)
lg.info("Setup complete")
And then call python:
python main.py -lglv debug -lgfn etl.log
Finally, @inject_logger
is a decorator to automatically add a logger to a function, named after that function. This is used like this:
# main.py
import argparse
import logging as lg
import log4data as l4d
@l4d.inject_logger
def my_data_processing_function(data, logger=None):
logger.info(f"Processing data: {data}")
print(data)
return data
if __name__ == "__main__":
# parse arguments
parser = argparse.ArgumentParser()
parser.add_argument("-d", "--data", type=str, default="sample data")
l4d.set_log_args(parser)
args = parser.parse_args()
# Configure logging
l4d.setup_logger(args)
# Call the function without providing the logger manually
my_data_processing_function(args.data)
Then, calling this:
python main.py -d "Hello log for data."
Results in this log:
2024-07-03 00:00:00,000 - my_data_processing_function - INFO - Processing data: Hello log for data.
Contributing
This is a small project developed for my team and me, and while major upgrades are not planned, we welcome pull requests. If you encounter bugs or wish to suggest new features, please initiate a discussion by opening an issue.
License
This repository is under the MIT license.
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
File details
Details for the file log4data-0.1.1.tar.gz
.
File metadata
- Download URL: log4data-0.1.1.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9690e114d2d3153ed3dd32645286740e62682ecf3562799435e731bdd2c3e72 |
|
MD5 | b3e20a60daad9617ae30173ae4688d5f |
|
BLAKE2b-256 | 10a1d6e0340fa3c950f5478df5873446465800d661a3bb1beac393d28f464e6b |
File details
Details for the file log4data-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: log4data-0.1.1-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f1c62458adc7b97aed4d694447ab7e92fbe20e927ad4a18173524b6d449c47f |
|
MD5 | a3984824bef64731141580f3a8845d91 |
|
BLAKE2b-256 | f0d949a3d5a02b96b855bf20fc4a98e44284ddfb7f212caa941f3c77161c883e |