Metadata-Version: 1.1
Name: pynsca
Version: 1.6
Summary: Simple Python interface to Nagios Service Check Architecture
Home-page: http://github.com/djmitche/pynsca
Author: Dustin J. Mitchell
Author-email: dustin@mozilla.com
License: MPL-1.1
Description-Content-Type: UNKNOWN
Description: A very simple module to allow nagios service check results to be submitted via
        NSCA.
        
        Usage
        =====
        
         >>> import pynsca
         >>> from pynsca import NSCANotifier
         >>> notif = NSCANotifier("nagios")
         >>> notif.svc_result("host", "service", pynsca.OK, "Looks Good!")
         
        Prebuild RPM packages
        =====================
         
        The Bareos project builds (using open build server) and publishes python-pynsca RPM packages for a 
        variety of RPM based Linux distribution, you can directly install from the repository:
        http://download.bareos.org/bareos/contrib/
        
        Debian / Ubuntu packages may follow later.
        
        Requirements
        ============
        
        * Python 2.4 or higher
        * python-mcrypt, if using AES encryption
        * pycrypto, if using 3DES encryption
        * No other libraries required
        
        Issues
        ======
        
        Please file any bugs or feature requests at
          https://github.com/djmitche/pynsca/issues
        
        Changes
        =======
        
        1.6 (Unreleased)
        ----------------
        
        * Debian package updated.
        * spec file to generate a RPM package.
        
        1.5
        ---
        
        PyCrypto is only required when using 3DES encryption (mode 3).
        
        1.4
        ---
        
        The library now supports 3DES encryption (mode 3).  This adds the requirement
        for PyCrypto.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: System :: Networking :: Monitoring
Classifier: Topic :: Software Development :: Libraries :: Python Modules
