Logging and YAML-based configuration modules in Python.
Project description
PyLogg
Logging and YAML-based configuration modules in Python.
Installation
You can install this package from PyPI with pip
.
pip install -U pylogg
Usage
Set up the logger in the main script.
import pylogg
pylogg.init(pylogg.Level.TRACE, colored=False)
pylogg.info("Hello world.")
Update individual settings if needed. These settings will override the settings set using pylogg.get()
instances.
import pylogg as log
# Set output file
log.setFile(open("test.log", "w+"))
# Show date and times on console
log.setConsoleTimes(show=True)
# Save date and times to file
log.setFileTimes(show=True)
# Set global logging level
log.setLevel(log.DEBUG)
# Override the level of a named sub-logger
log.setLoggerLevel('module', log.INFO)
# Use
log.info("Hello world")
# Close the log file
log.close()
Use sub-logger from the modules.
import time
import pylogg
# Create or get a named sub-logger.
log = pylogg.get(__name__)
# Use
def run():
log.Trace("Running module ...")
# Support for f strings.
log.Debug("2 + 2 = {} ({answer})", 2 + 2, answer=True)
def timing():
# Get the timer instance
t1 = log.Info("Started process ...")
# long process
time.sleep(2)
# Call timer.done() to log elapsed time.
t1.done("Process completed.")
Note: Full logg package must be imported. Use import pylogg
,
do not use from pylogg import get
.
See the examples for more details.
Development
# Create a fork and clone the git repo.
git clone https://github.com/akhlakm/python-logg.git
cd python-logg
# Install dev requirements.
pip install -e .[dev]
# Install pre-commit git hooks.
pre-commit install
# Make changes and commit.
# Publish new tag.
./make.sh publish
About
LICENSE MIT Copyright 2024 Akhlak Mahmood
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
pylogg-0.1.25.tar.gz
(11.5 kB
view details)
Built Distribution
pylogg-0.1.25-py3-none-any.whl
(10.5 kB
view details)
File details
Details for the file pylogg-0.1.25.tar.gz
.
File metadata
- Download URL: pylogg-0.1.25.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c37b78c7e6b3bcde5718de3fa0d8382e2b1e932681758932ac43510066b2ee9f |
|
MD5 | 13df0f7a3b794640f8a0c7e97672cbe5 |
|
BLAKE2b-256 | 525ef9a8eaa3410a5ccb83577ec77521ef1026cb76fca25bee7f8ca32054ae71 |
File details
Details for the file pylogg-0.1.25-py3-none-any.whl
.
File metadata
- Download URL: pylogg-0.1.25-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 775dc47ee80a8d339d2e9d03292224b76bfbd3bd7d8167aa86cee723a793be1b |
|
MD5 | 18e5824c4b55a5fc610ecd3a83236118 |
|
BLAKE2b-256 | 262e67902f5a5ab4e078ecc901a4983d53c0a1d8ef8c431a9b393ecd01829e1a |