Skip to main content

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


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.30.tar.gz (15.3 kB view details)

Uploaded Source

Built Distribution

pylogg-0.1.30-py3-none-any.whl (14.6 kB view details)

Uploaded Python 3

File details

Details for the file pylogg-0.1.30.tar.gz.

File metadata

  • Download URL: pylogg-0.1.30.tar.gz
  • Upload date:
  • Size: 15.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for pylogg-0.1.30.tar.gz
Algorithm Hash digest
SHA256 5b10e88b6c7ace6890d8c9774880ed9804f64f697d5c4d4fdf3a9575ff80d681
MD5 6f96fe340be66375e111aacc40113237
BLAKE2b-256 94d28ede7e0d355e9cf213fc2fd83d7d514f2debecf0eb169df1e01ca45ca2d1

See more details on using hashes here.

File details

Details for the file pylogg-0.1.30-py3-none-any.whl.

File metadata

  • Download URL: pylogg-0.1.30-py3-none-any.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for pylogg-0.1.30-py3-none-any.whl
Algorithm Hash digest
SHA256 148d7a3a53a2a385f39f83857ebdc6eed0ef5e3c8a9a9e78d42da8f5c908d202
MD5 138b9006a378d7f64abfbded943c6fa6
BLAKE2b-256 b9b5f5387b8665eadebd475295b9c4e953d8f3034e24d5fc159b7f294488eacd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page