Metadata-Version: 2.1
Name: EximHandler
Version: 1.1.0
Summary: A logging handler class which sends an email using exim
Home-page: https://github.com/danmichaelo/eximhandler
Author: Dan Michael O. Heggø
Author-email: danmichaelo@gmail.com
License: UNKNOWN
Description: # eximhandler
        
        A simple logging handler class which sends an email using exim.
        
        Available on PyPI for install:
        
            pip install eximhandler
        
        ## Usage
        
        ```python
        import logging
        from eximhandler import EximHandler
        
        exim_handler = EximHandler('me@mydomain.com', 'Hello world')
        exim_handler.setLevel(logging.ERROR)
        
        logger = logging.getLogger()
        logger.addHandler(exim_handler)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
