26 lines
488 B
Python
26 lines
488 B
Python
"""顺运宝 ERP 客户端。"""
|
|
|
|
from .client import ERPClient
|
|
from .errors import (
|
|
ERPAPIError,
|
|
ERPAuthenticationError,
|
|
ERPError,
|
|
ERPNotFoundError,
|
|
ERPProtocolError,
|
|
ERPTransportError,
|
|
)
|
|
from .normalizer import normalize_freight_result
|
|
|
|
__all__ = [
|
|
"ERPClient",
|
|
"ERPError",
|
|
"ERPTransportError",
|
|
"ERPProtocolError",
|
|
"ERPAPIError",
|
|
"ERPAuthenticationError",
|
|
"ERPNotFoundError",
|
|
"normalize_freight_result",
|
|
]
|
|
|
|
__version__ = "0.1.0"
|