Metadata-Version: 2.1
Name: logthon
Version: 1.2.1
Summary: A simple logger for Python
Home-page: https://github.com/mastrobirraio/logthon
Author: Giuseppe "mastrobirraio" Matranga
Author-email: matrangagiuseppe99@gmail.com
License: GPLv3
Description: # Logthon
        
        A simple logger for Python
        
        ## Getting Started
        
        These instructions will install the logger to your machine.
        
        ### Prerequisites
        
        * Python3
        * PIP3
        
        ### Installation
        
        ```
        pip3 install logthon
        ```
        
        ## Usage
        
        ### Import
        
        ```
        from logthon.logthon import Logthon as Logger
        
        Logthon = Logger()
        ```
        
        ### Info level
        
        ```
        Logthon.info('This is an info log')
        ```
        
        ### Warn level
        
        ```
        Logthon.warn('This is a warn log')
        ```
        
        ### Error level
        
        ```
        Logthon.error('This is an error log')
        ```
        
        ### Success level
        
        ```
        Logthon.info('This is a success log')
        ```
        
        ## Contributing
        
        Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on code of conduct, and the process for submitting pull requests.
        
        ## License
        
        This project is licensed under the GNU General Public License v3 (GPLv3), read [LICENSE](LICENSE) for details 
        
        ## Author
        
        * **Giuseppe "mastrobirraio" Matranga** - *Initial work* - [Github](https://github.com/mastrobirraio)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Description-Content-Type: text/markdown
