Initial commit: split dlp-io library out of DataPacker
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
from ._api import configure, open, shutdown
|
||||
from ._config import DlpConfig
|
||||
from ._errors import (
|
||||
DlpConfigurationError,
|
||||
DlpHelperStartError,
|
||||
DlpIoError,
|
||||
DlpProtocolError,
|
||||
DlpSessionBusyError,
|
||||
DlpTransportError,
|
||||
)
|
||||
from ._session import DlpSession
|
||||
from ._patch import install_open_patch, install_reader_patch, uninstall_open_patch
|
||||
|
||||
__version__ = "0.1.0"
|
||||
|
||||
__all__ = [
|
||||
"DlpConfig",
|
||||
"DlpConfigurationError",
|
||||
"DlpHelperStartError",
|
||||
"DlpIoError",
|
||||
"DlpProtocolError",
|
||||
"DlpSession",
|
||||
"DlpSessionBusyError",
|
||||
"DlpTransportError",
|
||||
"configure",
|
||||
"install_open_patch",
|
||||
"install_reader_patch",
|
||||
"open",
|
||||
"shutdown",
|
||||
"uninstall_open_patch",
|
||||
]
|
||||
Reference in New Issue
Block a user