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

Uploaded Source

Built Distribution

pylogg-0.1.28-py3-none-any.whl (14.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pylogg-0.1.28.tar.gz
  • Upload date:
  • Size: 14.8 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.28.tar.gz
Algorithm Hash digest
SHA256 35f88d9266e40b27e0181f8efa8d8598fe66c7615d2d50d84d4ac6a2e4562021
MD5 ef5ee3f1b9d1e718c0040ac2dfbd9deb
BLAKE2b-256 6a828cdac24675150c0868d41b27c93ac8e5883ffe3557bb86fc9f284323c00d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pylogg-0.1.28-py3-none-any.whl
  • Upload date:
  • Size: 14.4 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.28-py3-none-any.whl
Algorithm Hash digest
SHA256 cc6ccfc126a27f3c0a0c35038f58f8e8ed293135b9f75069cb0a5ffe9f3c9f4f
MD5 42d6f112b59aee500c9bcd70aad0f5dc
BLAKE2b-256 77f933e3b42240fa8b56992fb08cc815e98da55574e60ee58cbae39f0ced5129

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