Skip to main content

Universal log files for Python

Project description


Pylogfile provides a better method for implementing logging in your Python scripts.

Core features:

  • automatically includes metadata such as timestamps.
  • supports optional detail strings to supplement the main log message.
  • integrated markdown makes it easy to highlight parts of log messages with color.
  • easily read and write logs to binary files for better efficiency, or JSON and TXT for best readability.
  • standardized format makes it easy to read previous log files, simplifying sorting and analysis.
  • script lumberjack makes viewing, sorting and analyzing log files quick and easy.

Pylogfile is designed to be a better option than the Python standard logging module for simple to intermediate-complexity logging tasks. For professional applications in which you want to add custom logging handlers, the standard module is the better choice. However, for the majority of scripts, especially in the scientific, engineering and data analysis domains, pylogfile offers loads of capability and a much faster way of setting up proper logging than the standard module. With pylogfile, your application has access to efficient data management and display through the addition of detailed messages, integrated markdown, and log search functions through the lumberjack script.

Installation

Pylogfile can be installed via pip using

pip install pylogfile

Example usage

In this example, we create a simple program that sends two log messages and saves them to disk. Here we show how to save to both binary and plain text formats. The HDF file format is binary, allowing logs to be saved faster and while using less space on disk. We also show how to save to a JSON file, for those who prefer the simplicity of plain text files.

from pylogfile import *

log = LogPile()
log.info("Something happened. Emphasize >this<.")
log.error("Something bad happened!")

log.save_hdf("example.log.hdf")
log.save_json("example.log.json")

With the corresponding output:

Lumberjack

Lumberjack is a command line interface (CLI) script included with pylogfile that allows log files to quickly be viewed, sorted, and analyzed. A log file can be opened in lumberjack with:

lumber example.log.hdf

and the first few logs displayed with the SHOW command:

Basic information about the log file can be displayed with the INFO command.

Logs can also be sorted by applying flags to the SHOW command. Here the --index flag is used to search based on the index of the log entry, the --contains flag is used to search for the keyword or phrase 'RF' while specifying a max of 5 logs should be displayed using the --num flag, and the log level is filter by applying the --min and --max flags.

Lumberjack has lots of other search functions, commands, and features. You can learn more about it from its integrated help menu which can list all available commands and provide detailed information on how to use them.

Documentation

Todo

Requirements

Todo

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

pylogfile-0.2.2.tar.gz (13.6 kB view details)

Uploaded Source

Built Distribution

pylogfile-0.2.2-py3-none-any.whl (14.4 kB view details)

Uploaded Python 3

File details

Details for the file pylogfile-0.2.2.tar.gz.

File metadata

  • Download URL: pylogfile-0.2.2.tar.gz
  • Upload date:
  • Size: 13.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.4

File hashes

Hashes for pylogfile-0.2.2.tar.gz
Algorithm Hash digest
SHA256 290067a2aa7df02345f709ea698b66ff84bead7a3ceb9f4b4296d9c888917636
MD5 4d7d865776f092cdacf6acb1c6623868
BLAKE2b-256 6a7d0265ad7e42a459367e5f55c212e61efe3975e9a5bb1dc91eed4a791cac06

See more details on using hashes here.

File details

Details for the file pylogfile-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: pylogfile-0.2.2-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.10.4

File hashes

Hashes for pylogfile-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0bbde58e14541dc372c3ac6c5c6bb45ee8cdb1b8f6aead0a66d32304f884060d
MD5 bc13ff1c7bf701f7530304ee8908ee1c
BLAKE2b-256 213fab5ae073a83002cc109e93a0363fd30047501eb9b24a52fa33602de931cc

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