Metadata-Version: 1.0
Name: amonpy
Version: 0.2.4
Summary: Python client for the Amon API
Home-page: https://github.com/martinrusev/amon-clients/python/amonpy
Author: Martin Rusev
Author-email: martin@amon.cx
License: BSD
Description: ==================
        amonpy
        ==================
        
        Amonpy is the Python client for Amon
        
        ===============
         Installation
        ===============
        
        
        1. Install the package with ``pip install amonpy`` or alternatively you can  
        download the tarball and run ``python setup.py install``
        
        
        =========
         Usage 
        =========
        
        ::
            
            import amonpy
            
            # Accepted levels - 'warning', 'error', 'info', 'critical', 'debug'
            amonpy.log(message, level=level)
        
        
        
            data = {
                'exception_class': '',
                'url': '',
                'backtrace': '',
                'enviroment': '',
                'data': ''
        
            }
            
            amonpy.exception(data)
        
        
        ===============
         Requirements
        ===============
        
        
        Python 2.5+
        
        requests
        
        
Keywords: amon,monitoring,logging,exception logging
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: Web Environment
