mdbq 4.0.61__tar.gz → 4.0.62__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.
Files changed (33) hide show
  1. {mdbq-4.0.61 → mdbq-4.0.62}/PKG-INFO +1 -1
  2. mdbq-4.0.62/mdbq/__version__.py +1 -0
  3. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/mysql/uploader.py +3 -3
  4. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq.egg-info/PKG-INFO +1 -1
  5. mdbq-4.0.61/mdbq/__version__.py +0 -1
  6. {mdbq-4.0.61 → mdbq-4.0.62}/README.txt +0 -0
  7. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/__init__.py +0 -0
  8. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/log/__init__.py +0 -0
  9. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/log/mylogger.py +0 -0
  10. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/myconf/__init__.py +0 -0
  11. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/myconf/myconf.py +0 -0
  12. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/mysql/__init__.py +0 -0
  13. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/mysql/deduplicator.py +0 -0
  14. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/mysql/mysql.py +0 -0
  15. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/mysql/s_query.py +0 -0
  16. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/mysql/unique_.py +0 -0
  17. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/other/__init__.py +0 -0
  18. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/other/download_sku_picture.py +0 -0
  19. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/other/error_handler.py +0 -0
  20. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/other/otk.py +0 -0
  21. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/other/pov_city.py +0 -0
  22. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/other/ua_sj.py +0 -0
  23. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/pbix/__init__.py +0 -0
  24. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/pbix/pbix_refresh.py +0 -0
  25. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/pbix/refresh_all.py +0 -0
  26. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/redis/__init__.py +0 -0
  27. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/redis/getredis.py +0 -0
  28. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq/spider/__init__.py +0 -0
  29. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq.egg-info/SOURCES.txt +0 -0
  30. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq.egg-info/dependency_links.txt +0 -0
  31. {mdbq-4.0.61 → mdbq-4.0.62}/mdbq.egg-info/top_level.txt +0 -0
  32. {mdbq-4.0.61 → mdbq-4.0.62}/setup.cfg +0 -0
  33. {mdbq-4.0.61 → mdbq-4.0.62}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mdbq
3
- Version: 4.0.61
3
+ Version: 4.0.62
4
4
  Home-page: https://pypi.org/project/mdbq
5
5
  Author: xigua,
6
6
  Author-email: 2587125111@qq.com
@@ -0,0 +1 @@
1
+ VERSION = '4.0.62'
@@ -2094,7 +2094,7 @@ class MySQLUploader:
2094
2094
 
2095
2095
  # 检查是否为空列表
2096
2096
  if len(unique_keys) == 0:
2097
- logger.warning('unique_keys为空列表,将忽略此参数', {'库': db_name, '表': table_name})
2097
+ logger.debug('unique_keys为空列表,将忽略此参数', {'库': db_name, '表': table_name})
2098
2098
  return None
2099
2099
 
2100
2100
  validated_keys = []
@@ -2177,7 +2177,7 @@ class MySQLUploader:
2177
2177
 
2178
2178
  # 检查是否为空列表
2179
2179
  if len(indexes) == 0:
2180
- logger.warning('indexes为空列表,将忽略此参数', {'库': db_name, '表': table_name})
2180
+ logger.debug('indexes为空列表,将忽略此参数', {'库': db_name, '表': table_name})
2181
2181
  return None
2182
2182
 
2183
2183
  validated_indexes = []
@@ -2242,7 +2242,7 @@ class MySQLUploader:
2242
2242
 
2243
2243
  # 检查是否为空列表
2244
2244
  if len(primary_keys) == 0:
2245
- logger.warning('primary_keys为空列表,将忽略此参数', {'库': db_name, '表': table_name})
2245
+ logger.debug('primary_keys为空列表,将忽略此参数', {'库': db_name, '表': table_name})
2246
2246
  return None
2247
2247
 
2248
2248
  validated_keys = []
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mdbq
3
- Version: 4.0.61
3
+ Version: 4.0.62
4
4
  Home-page: https://pypi.org/project/mdbq
5
5
  Author: xigua,
6
6
  Author-email: 2587125111@qq.com
@@ -1 +0,0 @@
1
- VERSION = '4.0.61'
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