Metadata-Version: 1.2
Name: usyslog
Version: 0.16
Summary: Simple remote syslog sender
Home-page: https://bitbucket.org/licface/usyslog
Author: cumulus13 Team
Author-email: cumulus13@gmail.com
License: BSD
Description-Content-Type: UNKNOWN
Description: usyslog
        ==================
        
        Simple remote syslog sender 
        
        
        Installing
        ------------
        
        Install and update using `pip`_:
        
        .. code-block:: text
        
            $ pip install usyslog
        
        usyslog supports Python 2 and newer, Python 3 and newer, and PyPy.
        
        .. _pip: https://pip.pypa.io/en/stable/quickstart/
        
        
        A Simple Example
        -----------------
        
        What does it look like? Here is an example of a simple usyslog program:
        
        .. code-block:: python
        
            from usyslog import syslog
        
            message = "This is an error"
            
            syslog(message, level=LEVEL['error'], facility=FACILITY['daemon'],
        	host='localhost', port=514)
        	# default host = 'localhost'
        	# default port = 514
        	# or
        	
        	syslog(message, 3, 3, '192.168.0.1')
        
        
        Support
        --------
        
        *   Python 2.7 +, Python 3.x
        *   Windows, Linux
        
        Links
        -------
        
        *   License: `BSD <https://bitbucket.org/licface/usyslog/src/LICENSE.rst>`_
        *   Code: https://bitbucket.org/licface/usyslog
        *   Issue tracker: https://bitbucket.org/licface/make_color/issues
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
