Skip to main content

This is a simple logging tool to help devs focus on writing code instead of writing logs.

Project description

EZlogR for Python!

Overview

This module helps developers focus on writing code and less time worrying about writing logs.

How it works

EZlogR gives a standardized way for developers to write logs, and creates these logs in JSON format. JSON is easily digestable by a multitude of programs and databases. This lets the developer have the option to easily pull the logs into something like MongoDB, a JSON viewing tool, or still be easily human readable due to the simplified and flat nature of the JSON packing.

Installation

install EZlogR using pip or pip3:
pip install ezlogr
or
pip3 install ezlogr

Usage

Here is a simple python file that shows EZlogR in action.
Filename: simple_sample.py

#!/usr/bin/env python3
#Step 1: Import ezlogr
import ezlogr

#Step 2: Set some tags
tags = ["Very cool app", "non-prod"]

#Step 3: Set the filename for your logs. (This will automatically append .log to the .py filename like this: 'myfile.py.log')
filename = __file__

#Step 4: Make your logger instance.
logger = ezlogr.Ezlogr(filename=filename, tags=tags)

#Step 5: Now write your code with EZlogR!
import time
logger.info("Here I go writin' logs!")
time.sleep(1)
logger.info("I'm doing it again!")

Output

After using EZlogR, you will see logs like this:
Filename: simple_sample.py.log

{'filename': '/Users/jeremy/simple_sample.py', 'log_level': 'info', 'hrtimestamp': 'Wed Jun 17 10:07:23 2020', 'datestamp': '17062020', 'timestamp': '100723.921712', 'log_msg': "Here I go writin' logs!", 'tags': '["Very cool app", "non-prod"]'}
{'filename': '/Users/jeremy/simple_sample.py', 'log_level': 'info', 'hrtimestamp': 'Wed Jun 17 10:07:24 2020', 'datestamp': '17062020', 'timestamp': '100724.926889', 'log_msg': "I'm doing it again!", 'tags': '["Very cool app", "non-prod"]'}

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

EZlogR-0.1.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

EZlogR-0.1-py3-none-any.whl (3.0 kB view details)

Uploaded Python 3

File details

Details for the file EZlogR-0.1.tar.gz.

File metadata

  • Download URL: EZlogR-0.1.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for EZlogR-0.1.tar.gz
Algorithm Hash digest
SHA256 ed3c57f0d069aa21f27941f57dc83dcdd5d0f79ab66ad7be87f66e17d38b6c16
MD5 c83693da473cb9c3b9c54d23b8d6ef8b
BLAKE2b-256 cc52cd9b81a2095c5383cb98e94f0bf28ce8c761136891552dbd44b0c8909b86

See more details on using hashes here.

File details

Details for the file EZlogR-0.1-py3-none-any.whl.

File metadata

  • Download URL: EZlogR-0.1-py3-none-any.whl
  • Upload date:
  • Size: 3.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.3.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3

File hashes

Hashes for EZlogR-0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 db925ba4cea14a602b3673a51b67c68581e6fa72ef2ced79f50e22da60e972e2
MD5 a66fecc0d9489f74ebbd45a5b60f7bc2
BLAKE2b-256 0d73a4db04e122bc0c0520ce6a9f609730c806ce0d683b7823866118b61f179a

See more details on using hashes here.

Supported by

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