This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
'display_type_id': 5, | |
display_type_name: 'pulse', | |
data : [ | |
{ | |
id: 1, | |
body: 'Hey <a href="/brad.whitcomb/">Brad Whitcomb</a>, how are you?', | |
created: '2012-11-02T04:19:19.327122+00:00', | |
modified: '2012-11-02T04:19:19.327122+00:00', | |
user: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import redis | |
import logging | |
class RedisLogHandler: | |
"""Log handler for logging logs in some redis list | |
""" | |
def __init__(self, host = None, port = None, db = 0, log_key = 'log_key'): | |
self._formatter = logging.Formatter() | |
self._redis = redis.Redis(host = host or 'localhost', port = port or 6379, db = db) | |
self._redis_list_key = log_key |