14 lines
442 B
Python
14 lines
442 B
Python
from elog.logbook import Logbook
|
|
from elog.logbook import LogbookError, LogbookAuthenticationError, LogbookServerProblem, LogbookMessageRejected, \
|
|
LogbookInvalidMessageID, LogbookInvalidAttachmentType
|
|
|
|
|
|
def open(*args, **kwargs):
|
|
"""
|
|
Will return a Logbook object. All arguments are passed to the logbook constructor.
|
|
:param args:
|
|
:param kwargs:
|
|
:return: Logbook() instance
|
|
"""
|
|
return Logbook(*args, **kwargs)
|