Metadata-Version: 2.1
Name: pyprintplus
Version: 1.0.3
Summary: A better way of printing logs in Python.
Home-page: https://github.com/marcoEDU/PyPrintPlus
Author: Marco
License: UNKNOWN
Description: ![PyPrintPlus](https://raw.githubusercontent.com/marcoEDU/PyPrintPlus/master/images/headerimage.jpg "PyPrintPlus")
        
        A better way of printing logs in Python.
        
        Want to support the development and stay updated?
        
        <a href="https://www.patreon.com/bePatron?u=24983231"><img alt="Become a Patreon" src="https://raw.githubusercontent.com/marcoEDU/PyPrintPlus/master/images/patreon_button.svg"></a> <a href="https://liberapay.com/glowingkitty/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a>
        
        
        ## Installation
        ```
        pip install pyprintplus
        ```
        
        ## Functions
        
        ### print()
        
        Print a message together with the current file and time (or runtime).
        
        #### Example:
        ```
        from pyprintplus import Log
        
        Log().print(text='Email sent',filename='send_email.py')
        ```
        
        #### Input options:
        text = str
        filename = str (default: None)
        script_started_time = int (UNIXtime, default: None)
        
        
        ### show_message()
        
        Show a message in a speech bubble, making it more engaging for real humans.
        
        #### Example:
        ```
        from pyprintplus import Log
        
        Log().show_message(text='Hello! Lets setup your new website!')
        ```
        
        #### Input options:
        text = str
        
        
        ### show_messages()
        
        Show one or multiple messages automatically in a speech bubble, one after the other, after a few seconds delay. 
        
        #### Example:
        ```
        from pyprintplus import Log
        
        Log().show_messages(list_messages=['Email was sent.','What do you want to do next?'])
        ```
        
        #### Input options:
        list_messages = list
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
