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.23.tar.gz
(11.3 kB
view details)
Built Distribution
pylogg-0.1.23-py3-none-any.whl
(10.5 kB
view details)
File details
Details for the file pylogg-0.1.23.tar.gz
.
File metadata
- Download URL: pylogg-0.1.23.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f45e3283920bc0bd4b6fbfac7a5c7c4e3e5e10ae5071f17d4b4e04d2d4aa930 |
|
MD5 | 4b6e880645e122b7167c7d1b8ff9683e |
|
BLAKE2b-256 | ef6c6e9991177d9c733df2fcf6ebce923795f442b526b0b6c277b54fb8fd664e |
File details
Details for the file pylogg-0.1.23-py3-none-any.whl
.
File metadata
- Download URL: pylogg-0.1.23-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 | 5d1c571175546e1493da7a56db1099b80f8aaadd6bdd4a24df3db404bb60e707 |
|
MD5 | 0819d4ff18c3e10990d68b99f015615c |
|
BLAKE2b-256 | e40c283dd4c5dba7d21ae5a6b05c283ae03b7841a89ec98b8d55df54ab19d726 |