mdbq 4.0.78__tar.gz → 4.0.80__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.
- {mdbq-4.0.78 → mdbq-4.0.80}/PKG-INFO +2 -2
- mdbq-4.0.80/mdbq/__version__.py +1 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq.egg-info/PKG-INFO +2 -2
- mdbq-4.0.78/mdbq/__version__.py +0 -1
- {mdbq-4.0.78 → mdbq-4.0.80}/README.txt +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/__init__.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/log/__init__.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/log/mylogger.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/myconf/__init__.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/myconf/myconf.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/mysql/__init__.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/mysql/deduplicator.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/mysql/mysql.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/mysql/s_query.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/mysql/unique_.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/mysql/uploader.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/other/__init__.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/other/download_sku_picture.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/other/error_handler.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/other/otk.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/other/pov_city.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/other/ua_sj.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/pbix/__init__.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/pbix/pbix_refresh.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/pbix/refresh_all.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/redis/__init__.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/redis/getredis.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/selenium/__init__.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/selenium/get_driver.py +5 -5
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq/spider/__init__.py +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq.egg-info/SOURCES.txt +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq.egg-info/dependency_links.txt +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/mdbq.egg-info/top_level.txt +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/setup.cfg +0 -0
- {mdbq-4.0.78 → mdbq-4.0.80}/setup.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
VERSION = '4.0.80'
|
mdbq-4.0.78/mdbq/__version__.py
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
VERSION = '4.0.78'
|
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
|
@@ -297,30 +297,30 @@ class GetDriver:
|
|
297
297
|
if sys_platform == 'windows':
|
298
298
|
if not chrome_path:
|
299
299
|
chrome_path_candidates = [
|
300
|
-
'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe', # 正式版
|
301
300
|
os.path.join(f'C:\\Users\\{getpass.getuser()}', 'chrome\\chrome_win64\\chrome.exe'), # 测试版
|
301
|
+
'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe', # 正式版
|
302
302
|
]
|
303
303
|
if not chromedriver_path:
|
304
304
|
chromedriver_path_candidates = [
|
305
|
-
os.path.join(f'C:\\Users\\{getpass.getuser()}', 'chrome\\chromedriver.exe'),
|
306
305
|
os.path.join(f'C:\\Users\\{getpass.getuser()}', 'chrome\\chrome_win64\\chromedriver.exe'),
|
306
|
+
os.path.join(f'C:\\Users\\{getpass.getuser()}', 'chrome\\chromedriver.exe'),
|
307
307
|
]
|
308
308
|
elif sys_platform == 'linux':
|
309
309
|
if not chrome_path:
|
310
310
|
chrome_path_candidates = [
|
311
|
-
'/usr/bin/google-chrome', # 正式版
|
312
311
|
'/usr/bin/chrome/chrome', # 测试版
|
312
|
+
'/usr/bin/google-chrome', # 正式版
|
313
313
|
]
|
314
314
|
if not chromedriver_path:
|
315
315
|
chromedriver_path_candidates = [
|
316
|
-
'/usr/local/bin/chromedriver',
|
317
316
|
'/usr/bin/chromedriver',
|
317
|
+
'/usr/local/bin/chromedriver',
|
318
318
|
]
|
319
319
|
elif sys_platform == 'darwin':
|
320
320
|
if not chrome_path:
|
321
321
|
chrome_path_candidates = [
|
322
|
-
'/Applications/Google Chrome.app/Contents/MacOS/Google Chrome', # 正式版
|
323
322
|
'/usr/local/chrome/Google Chrome for Testing.app/Contents/MacOS/Google Chrome for Testing', # 测试版
|
323
|
+
'/Applications/Google Chrome.app/Contents/MacOS/Google Chrome', # 正式版
|
324
324
|
]
|
325
325
|
if not chromedriver_path:
|
326
326
|
chromedriver_path_candidates = [
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|