Skip to main content

This module helps to print messages in different colours on terminal & various python IDEs using rich module.

Project description

console-messenger

Downloads Downloads/Week Downloads/Month MIT License Latest PyPI version Supported Python versions

About

This package displays success, warning and info messages and errors on console with different colours using rich module. It also prints any error type without passing it as a parameter.

Requirements

 python>=3.0

Dependencies

 rich>=9.0.0

Installation

 pip install console-messenger

Usage

 >>> from ConsoleMessenger import ConsoleMessage
 >>> console = ConsoleMessage()

Print an error

 try:
     a = 5/0
 except Exception as e:
     console.danger(e)

Output :-

Broken Image

Display a custom error

 console.danger("this is a custom error", err_type="My Error")

Output :-

Broken Image

Print a success message

 console.success("Success", "success method worked!")

Output :-

Broken Image

Display a warning

 console.warning("Warning", "You are using pip version 20.2.4; however, version 20.3 is available.")

Output :-

Broken Image

Display a info message

 console.info("INFO", "Hello User!")

Output :-

Broken Image

Display a dark message

 console.dark("Dark", "This is a dark message!")

Output :-

Broken Image

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

console-messenger-0.0.2.tar.gz (46.4 kB view hashes)

Uploaded Source

Built Distribution

console_messenger-0.0.2-py3-none-any.whl (3.5 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