Metadata-Version: 2.1
Name: splogger
Version: 0.1.4
Summary: Simple Python Logger
Home-page: https://github.com/WIN32GG/python-simple-logger
Author: win32gg
Author-email: gregor.jouet@laposte.net
License: MIT
Description: 
        # Simple Python Logger
        
        A simple tool to have nicer console output
        
        ## Features
        - Easy to use success/warning/error/debug comphrensive output
        - Easy to use current task information spinner
        
        ## Usage
        
        To mark a function as 'output worthy' use the @spinner decorator
        ```python
            import logger
            from time import sleep
        
            @logger.spinner("Printing OK")
            def wait_and_print_ok():
                sleep(4)
                logger.success("OK")
                print('Normal log')
        
            wait_and_print_ok() 
        ```
Platform: UNKNOWN
Requires-Python: >=3.4, <4
Description-Content-Type: text/markdown
