2026-08-04 17:47:58 +08:00
|
|
|
"""拼多多链接的受限打开、只读取证与经取证的规格面板选择。
|
2026-08-04 09:26:37 +08:00
|
|
|
|
2026-08-04 17:47:58 +08:00
|
|
|
此包不提供通用页面选择器、输入、滑动或任何订单动作。
|
2026-08-04 09:26:37 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from .product_open import ProductOpenCapturer, ProductOpenResult
|
|
|
|
|
from .product_url import ProductUrl, ProductUrlError, parse_product_url
|
2026-08-04 17:47:58 +08:00
|
|
|
from .sku_selection import SkuSelection, SkuSelectionError, SkuSelectionFlow
|
|
|
|
|
from .sku_selection_runner import SkuSelectionRunError, SkuSelectionRunResult, SkuSelectionRunner
|
2026-08-04 09:26:37 +08:00
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
"ProductOpenCapturer",
|
|
|
|
|
"ProductOpenResult",
|
|
|
|
|
"ProductUrl",
|
|
|
|
|
"ProductUrlError",
|
2026-08-04 17:47:58 +08:00
|
|
|
"SkuSelection",
|
|
|
|
|
"SkuSelectionError",
|
|
|
|
|
"SkuSelectionFlow",
|
|
|
|
|
"SkuSelectionRunError",
|
|
|
|
|
"SkuSelectionRunResult",
|
|
|
|
|
"SkuSelectionRunner",
|
2026-08-04 09:26:37 +08:00
|
|
|
"parse_product_url",
|
|
|
|
|
]
|