added 3rd party packages, elog, bigtree
This commit is contained in:
13
python310/packages/elog/__init__.py
Normal file
13
python310/packages/elog/__init__.py
Normal 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)
|
||||
Reference in New Issue
Block a user