lingxingapi 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of lingxingapi might be problematic. Click here for more details.
- lingxingapi/__init__.py +7 -0
- lingxingapi/ads/__init__.py +0 -0
- lingxingapi/ads/api.py +5946 -0
- lingxingapi/ads/param.py +192 -0
- lingxingapi/ads/route.py +134 -0
- lingxingapi/ads/schema.py +2615 -0
- lingxingapi/api.py +443 -0
- lingxingapi/base/__init__.py +0 -0
- lingxingapi/base/api.py +409 -0
- lingxingapi/base/param.py +59 -0
- lingxingapi/base/route.py +11 -0
- lingxingapi/base/schema.py +198 -0
- lingxingapi/basic/__init__.py +0 -0
- lingxingapi/basic/api.py +466 -0
- lingxingapi/basic/param.py +72 -0
- lingxingapi/basic/route.py +20 -0
- lingxingapi/basic/schema.py +212 -0
- lingxingapi/errors.py +143 -0
- lingxingapi/fba/__init__.py +0 -0
- lingxingapi/fba/api.py +1691 -0
- lingxingapi/fba/param.py +250 -0
- lingxingapi/fba/route.py +30 -0
- lingxingapi/fba/schema.py +987 -0
- lingxingapi/fields.py +50 -0
- lingxingapi/finance/__init__.py +0 -0
- lingxingapi/finance/api.py +3091 -0
- lingxingapi/finance/param.py +616 -0
- lingxingapi/finance/route.py +44 -0
- lingxingapi/finance/schema.py +1243 -0
- lingxingapi/product/__init__.py +0 -0
- lingxingapi/product/api.py +2643 -0
- lingxingapi/product/param.py +934 -0
- lingxingapi/product/route.py +49 -0
- lingxingapi/product/schema.py +1004 -0
- lingxingapi/purchase/__init__.py +0 -0
- lingxingapi/purchase/api.py +496 -0
- lingxingapi/purchase/param.py +126 -0
- lingxingapi/purchase/route.py +11 -0
- lingxingapi/purchase/schema.py +215 -0
- lingxingapi/sales/__init__.py +0 -0
- lingxingapi/sales/api.py +3200 -0
- lingxingapi/sales/param.py +723 -0
- lingxingapi/sales/route.py +70 -0
- lingxingapi/sales/schema.py +1718 -0
- lingxingapi/source/__init__.py +0 -0
- lingxingapi/source/api.py +1799 -0
- lingxingapi/source/param.py +176 -0
- lingxingapi/source/route.py +38 -0
- lingxingapi/source/schema.py +1011 -0
- lingxingapi/tools/__init__.py +0 -0
- lingxingapi/tools/api.py +291 -0
- lingxingapi/tools/param.py +73 -0
- lingxingapi/tools/route.py +8 -0
- lingxingapi/tools/schema.py +169 -0
- lingxingapi/utils.py +411 -0
- lingxingapi/warehourse/__init__.py +0 -0
- lingxingapi/warehourse/api.py +1778 -0
- lingxingapi/warehourse/param.py +506 -0
- lingxingapi/warehourse/route.py +28 -0
- lingxingapi/warehourse/schema.py +926 -0
- lingxingapi-1.0.0.dist-info/METADATA +67 -0
- lingxingapi-1.0.0.dist-info/RECORD +65 -0
- lingxingapi-1.0.0.dist-info/WHEEL +5 -0
- lingxingapi-1.0.0.dist-info/licenses/LICENSE +22 -0
- lingxingapi-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
# 产品 --------------------------------------------------------------------------------------------------------------------------
|
|
4
|
+
# https://apidoc.lingxing.com/#/docs/Product/ProductLists
|
|
5
|
+
PRODUCTS: str = "/erp/sc/routing/data/local_inventory/productList"
|
|
6
|
+
# https://apidoc.lingxing.com/#/docs/Product/batchGetProductInfo
|
|
7
|
+
PRODUCT_DETAILS: str = "/erp/sc/routing/data/local_inventory/batchGetProductInfo"
|
|
8
|
+
# https://apidoc.lingxing.com/#/docs/Product/productOperateBatch
|
|
9
|
+
ENABLE_DISABLE_PRODUCTS: str = "/basicOpen/product/productManager/product/operate/batch"
|
|
10
|
+
# https://apidoc.lingxing.com/#/docs/Product/SetProduct
|
|
11
|
+
EDIT_PRODUCT: str = "/erp/sc/routing/storage/product/set"
|
|
12
|
+
# https://apidoc.lingxing.com/#/docs/Product/spuList
|
|
13
|
+
SPU_PRODUCTS: str = "/erp/sc/routing/storage/spu/spuList"
|
|
14
|
+
# https://apidoc.lingxing.com/#/docs/Product/spuInfo
|
|
15
|
+
SPU_PRODUCT_DETAIL: str = "/erp/sc/routing/storage/spu/info"
|
|
16
|
+
# https://apidoc.lingxing.com/#/docs/Product/spuSet
|
|
17
|
+
EDIT_SPU_PRODUCT: str = "/erp/sc/routing/storage/spu/set"
|
|
18
|
+
# https://apidoc.lingxing.com/#/docs/Product/bundledProductList
|
|
19
|
+
BUNDLE_PRODUCTS: str = "/erp/sc/routing/data/local_inventory/bundledProductList"
|
|
20
|
+
# https://apidoc.lingxing.com/#/docs/Product/SetBundled
|
|
21
|
+
EDIT_BUNDLE_PRODUCT: str = "/erp/sc/routing/storage/product/setBundled"
|
|
22
|
+
# https://apidoc.lingxing.com/#/docs/Product/productAuxList
|
|
23
|
+
AUXILIARY_MATERIALS: str = "/erp/sc/routing/data/local_inventory/productAuxList"
|
|
24
|
+
# https://apidoc.lingxing.com/#/docs/Product/setAux
|
|
25
|
+
EDIT_AUXILIARY_MATERIAL: str = "/erp/sc/routing/storage/product/setAux"
|
|
26
|
+
# https://apidoc.lingxing.com/#/docs/Product/UpcList
|
|
27
|
+
PRODUCT_CODES: str = "/listing/publish/api/upc/upcList"
|
|
28
|
+
# https://apidoc.lingxing.com/#/docs/Product/AddCommodityCode
|
|
29
|
+
CREATE_PRODUCT_CODE: str = "/listing/publish/api/upc/addCommodityCode"
|
|
30
|
+
# https://apidoc.lingxing.com/#/docs/Product/GetProductTag
|
|
31
|
+
PRODUCT_GLOBAL_TAGS: str = "/label/operation/v1/label/product/list"
|
|
32
|
+
# https://apidoc.lingxing.com/#/docs/Product/CreateProductTag
|
|
33
|
+
CREATE_PRODUCT_GLOBAL_TAG: str = "/label/operation/v1/label/product/create"
|
|
34
|
+
# https://apidoc.lingxing.com/#/docs/Product/SetProductTag
|
|
35
|
+
SET_PRODUCT_TAG: str = "/label/operation/v1/label/product/mark"
|
|
36
|
+
# https://apidoc.lingxing.com/#/docs/Product/DelProductTag
|
|
37
|
+
UNSET_PRODUCT_TAG: str = "/label/operation/v1/label/product/unmarkLabel"
|
|
38
|
+
# https://apidoc.lingxing.com/#/docs/Product/attributeList
|
|
39
|
+
PRODUCT_GLOBAL_ATTRIBUTES: str = "/erp/sc/routing/storage/attribute/attributeList"
|
|
40
|
+
# https://apidoc.lingxing.com/#/docs/Product/attributeSet
|
|
41
|
+
EDIT_PRODUCT_GLOBAL_ATTRIBUTE: str = "/erp/sc/routing/storage/attribute/set"
|
|
42
|
+
# https://apidoc.lingxing.com/#/docs/Product/Brand
|
|
43
|
+
PRODUCT_BRANDS: str = "/erp/sc/data/local_inventory/brand"
|
|
44
|
+
# https://apidoc.lingxing.com/#/docs/Product/SetBrand
|
|
45
|
+
EDIT_PRODUCT_BRANDS: str = "/erp/sc/storage/brand/set"
|
|
46
|
+
# https://apidoc.lingxing.com/#/docs/Product/Category
|
|
47
|
+
PRODUCT_CATEGORIES: str = "/erp/sc/routing/data/local_inventory/category"
|
|
48
|
+
# https://apidoc.lingxing.com/#/docs/Product/SetCategory
|
|
49
|
+
EDIT_PRODUCT_CATEGORIES: str = "/erp/sc/routing/storage/category/set"
|