added 3rd party packages, elog, bigtree

This commit is contained in:
2024-02-27 15:40:00 +01:00
parent 277c22f800
commit 6b59fe16ce
69 changed files with 17449 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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)