Home > twitterlog

twitterlog

Twitterlog is a project mainly written in Python, based on the View license.

A Python log handler that logs to Twitter

TwitterLog



Implements a log handler that can log to a Twitter stream.

Usage:

    import logging
    from twitterlog import TwitterHandler

    twitter = TwitterHandler('username', 'password')
    twitter.setLevel(logging.ERROR)
    logger = logging.getLogger('yourlogger')
    logger.addHandler(twitter)
Previous:vitesse