A better way of printing logs in Python.
Want to support the development and stay updated?
pip install pyprintplus
Print a message together with the current file and time (or runtime).
from pyprintplus import Log
Log().print(text='Email sent',filename='send_email.py')
text = str filename = str (default: None) script_started_time = int (UNIXtime, default: None)
Show a message in a speech bubble, making it more engaging for real humans.
from pyprintplus import Log
Log().show_message(text='Hello! Lets setup your new website!')
text = str
Show one or multiple messages automatically in a speech bubble, one after the other, after a few seconds delay.
from pyprintplus import Log
Log().show_messages(list_messages=['Email was sent.','What do you want to do next?'])
list_messages = list