qrpa 1.1.37__tar.gz → 1.1.38__tar.gz
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 qrpa might be problematic. Click here for more details.
- {qrpa-1.1.37 → qrpa-1.1.38}/PKG-INFO +1 -1
- {qrpa-1.1.37 → qrpa-1.1.38}/pyproject.toml +1 -1
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/mysql_module/new_product_analysis_model.py +11 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa.egg-info/PKG-INFO +1 -1
- {qrpa-1.1.37 → qrpa-1.1.38}/README.md +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/RateLimitedSender.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/__init__.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/db_migrator.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/feishu_bot_app.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/feishu_client.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/feishu_logic.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/fun_base.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/fun_excel.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/fun_file.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/fun_web.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/fun_win.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/mysql_module/__init__.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/mysql_module/shein_ledger_model.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/mysql_module/shein_product_model.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/mysql_module/shein_return_order_model.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/mysql_module/shein_store_model.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/shein_daily_report_model.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/shein_excel.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/shein_lib.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/shein_mysql.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/shein_sqlite.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/shein_ziniao.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/temu_chrome.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/temu_excel.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/temu_lib.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/time_utils.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/time_utils_example.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa/wxwork.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa.egg-info/SOURCES.txt +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa.egg-info/dependency_links.txt +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/qrpa.egg-info/top_level.txt +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/setup.cfg +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/setup.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/tests/test_db_migrator.py +0 -0
- {qrpa-1.1.37 → qrpa-1.1.38}/tests/test_wxwork.py +0 -0
|
@@ -36,6 +36,13 @@ class SheinNewProductAnalysis(Base):
|
|
|
36
36
|
skc = Column(String(100), nullable=False, comment='平台SKC')
|
|
37
37
|
sku_supplier_no = Column(String(100), nullable=True, comment='商家SKC')
|
|
38
38
|
layer_nm = Column(String(100), nullable=True, comment='商品层级')
|
|
39
|
+
|
|
40
|
+
# 品类信息
|
|
41
|
+
new_cate1_nm = Column(String(200), nullable=True, comment='一级品类名称')
|
|
42
|
+
new_cate2_nm = Column(String(200), nullable=True, comment='二级品类名称')
|
|
43
|
+
new_cate3_nm = Column(String(200), nullable=True, comment='三级品类名称')
|
|
44
|
+
new_cate4_nm = Column(String(200), nullable=True, comment='四级品类名称')
|
|
45
|
+
|
|
39
46
|
goods_name = Column(String(500), nullable=True, comment='商品标题')
|
|
40
47
|
img_url = Column(String(500), nullable=True, comment='SKC图片URL')
|
|
41
48
|
|
|
@@ -339,6 +346,10 @@ class NewProductAnalysisManager:
|
|
|
339
346
|
'skc' : skc,
|
|
340
347
|
'sku_supplier_no' : item.get('skuSupplierNo'),
|
|
341
348
|
'layer_nm' : item.get('layerNm'),
|
|
349
|
+
'new_cate1_nm' : item.get('newCate1Nm'),
|
|
350
|
+
'new_cate2_nm' : item.get('newCate2Nm'),
|
|
351
|
+
'new_cate3_nm' : item.get('newCate3Nm'),
|
|
352
|
+
'new_cate4_nm' : item.get('newCate4Nm'),
|
|
342
353
|
'goods_name' : item.get('goodsName'),
|
|
343
354
|
'img_url' : item.get('imgUrl'),
|
|
344
355
|
'onsale_flag' : int(item.get('onsaleFlag', 0)),
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|