Metadata-Version: 2.1
Name: LatoLog
Version: 0.1.2
Summary: A package that makes customizing logs easier than expected
Home-page: https://github.com/fabioqcorreia/LatoLog
Author: Fábio Correia
License: MIT
Description: # Latolog
        
        Simple customizable logging.
        > Only JSON mode is supported at the moment. XML is WIP
        
        ## Installation
        
            pip install LatoLog
        
        ## Usage example
        
            from latolog.main import LatoLog
        
            my_content = { "a": 1, "b", 2 }
        
            latolog = LatoLog()
        
            latolog.print_log(my_content)
        
            >>> {"timestamp": "04-12-2019 16:43:49", "a": 1, "b": 2 }
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
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
