Skip to main content

A console logging/debugging framework inspired by ECMAScript

Project description

consolejs

A console logger / debugger for Python CLI programs

Currently consolejs only support functions. support for classes will be added later.

Installation

$ pip install consolejs

Getting Started

# Create a Conlog from the constructor.
consolejs = Conlog.create("main")

# Set the required logging level
consolejs.level = Conlog.DEBUG

# To use on the `main` module
console = consolejs.get_console()

####  in module2.py

@Conlog.fn
def say_hi(name):
	console = Conlog.get_console("main")
	console.debug("args {name=}")
	print(f"Hi {name}"

How it works.

console.debug supports expr debug expressions introduced in Python 3.8. It dynamically rewrites the function in Python 3.8 and uses a beautiful way to support it in < 3.7

See tests/ for samples.

License


Copyright (c) 2019 Cswl Coldwind

consolejs is distributed under the terms

  • MIT License <https://choosealicense.com/licenses/mit>_

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

consolejs-1.0.9.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

consolejs-1.0.9-py3-none-any.whl (7.8 kB view hashes)

Uploaded Python 3

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