spacepaste

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
>>> import logbook
>>> import sys
>>> import logbook.notifiers
>>> a = logbook.notifiers
>>> a = logbook.notifiers.create_notification_handler('kenneth')
>>> with a:
...     logbook.warn('oh no')
...     
... 
>>>