24 lines
767 B
Python
24 lines
767 B
Python
"""拼多多链接的受限打开、只读取证与经取证的规格面板选择。
|
|
|
|
此包不提供通用页面选择器、输入、滑动或任何订单动作。
|
|
"""
|
|
|
|
from .product_open import ProductOpenCapturer, ProductOpenResult
|
|
from .product_url import ProductUrl, ProductUrlError, parse_product_url
|
|
from .sku_selection import SkuSelection, SkuSelectionError, SkuSelectionFlow
|
|
from .sku_selection_runner import SkuSelectionRunError, SkuSelectionRunResult, SkuSelectionRunner
|
|
|
|
__all__ = [
|
|
"ProductOpenCapturer",
|
|
"ProductOpenResult",
|
|
"ProductUrl",
|
|
"ProductUrlError",
|
|
"SkuSelection",
|
|
"SkuSelectionError",
|
|
"SkuSelectionFlow",
|
|
"SkuSelectionRunError",
|
|
"SkuSelectionRunResult",
|
|
"SkuSelectionRunner",
|
|
"parse_product_url",
|
|
]
|