A parser for BSD syslog protocol (RFC 3164) messages
Project Description
A parser for BSD syslog protocol (RFC 3164) messages
This library was extracted from syslog2IRC.
Requirements
- Python 2.7+ or 3.3+
- enum34 (on Python versions before 3.4)
Installation
Install this package via pip:
$ pip install syslogmp
On Python versions before 3.4, the enum34 package should be installed automatically.
Usage
To parse a syslog message:
from syslogmp import parse # Parse data (usually received via network). message = parse(data) # Let's see what we've got here. print(message.facility) print(message.facility.description) print(message.severity) print(message.timestamp) print(message.hostname) print(message.message)
Further Reading
For more information, see RFC 3164, “The BSD syslog Protocol”.
Please note that there is RFC 5424, “The Syslog Protocol”, which obsoletes RFC 3164. This package, however, only implements the latter.
Copyright: | 2007-2016 Jochen Kupperschmidt |
---|---|
Date: | 01-Mar-2016 |
License: | MIT, see LICENSE for details. |
Version: | 0.2.2 |
Release history Release notifications
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size & hash SHA256 hash help | File type | Python version | Upload date |
---|---|---|---|
syslogmp-0.2.2-py2.py3-none-any.whl (8.6 kB) Copy SHA256 hash SHA256 | Wheel | 3.4 | Mar 1, 2016 |
syslogmp-0.2.2.tar.gz (7.9 kB) Copy SHA256 hash SHA256 | Source | None | Mar 1, 2016 |