Initial commit: split dlp-io library out of DataPacker

This commit is contained in:
2026-07-31 14:58:37 +08:00
commit 3b0c81fd9d
22 changed files with 2509 additions and 0 deletions
+31
View File
@@ -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",
]