-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParsing.py
573 lines (488 loc) · 21.4 KB
/
Parsing.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
import codecs
import functools
import inspect
import os
import pathlib
import shutil
import time
import urllib.parse
import PIL.Image
import PIL.ImageDraw
import PIL.ImageFont
import bs4
import fake_useragent
import html2text
import requests
import selenium.webdriver
import urllib3
import Category
import CompareImages
import GlobalFunctions
import Product
import Sw
import SwPrint
from GlobalFunctions import print
_parsing_web_driver = None
def check_sku(sku, url, good_symbols=' .-+/'):
if not sku:
print(f'=== no sku {url}')
return False
if len(sku) > 21: print(f'=== длинный артикул {sku} {url}')
for each in sku:
if each.isalpha() or each.isdecimal() or each in good_symbols:
continue
else:
print(f'=== спец.символы в артикуле {sku} {url}')
return False
return True
def create_simple_product(sku, addon, brand, lieferant, name, lang, imgs,
category_ids, price, am_shipping_type, country, websites, good_symbols=' .-+/'):
sku = Sw.clr(sku).strip(' .,')
if not check_sku(sku, url='simple_product', good_symbols=good_symbols): return None
addon = Sw.clr(addon).upper()
brand = Sw.clr(brand, start_with_big=True)
name = Sw.clr(name, start_with_big=True).strip(' .,')
data = {}
data['url'] = 'simple_product'
data['sku'] = f'{addon} {sku}' if addon else sku
data['herstellernummer'] = sku
data['manufacturer'] = brand
data['lieferant'] = lieferant
data['name'] = Sw.clr(f"{brand} {sku}. {name}").strip(' .,')
data['short_description'] = name
data['description'] = name
download_imgs(data, imgs=imgs, path='images')
data['category_ids'] = category_ids
for each_category in category_ids.split('||'):
create_product_and_category(data['sku'], each_category)
data['price'] = Sw.get_float(price, ndigits=2) if price else 0
data['am_shipping_type'] = am_shipping_type if lang != 'ru' else ''
# 306-Paket 1225-Versand per Spedition 4320-BR
data['country_of_manufacture'] = country # DE #US #ES #JP
data['websites'] = websites # 'base'
same_for_all(data, lang)
# minimalka(data)
# additional
# data['special_price'] = ''
# data['weight'] = ''
# data['ean'] = ''
# data['delivery_time'] = ''
# data['relation'] = '' # через ||
return data
def same_for_all(data, lang):
brand = Sw.transliterate(data['manufacturer'])
sku = Sw.transliterate(data['herstellernummer'])
url_key = f"{brand}_{sku}".strip('_').lower()
url_key = url_key.replace('/', '-').replace('\\', '-').replace(' ', '-').replace('+', '-').replace('.', '-')
data['url_key'] = urllib.parse.quote(url_key)
data['status'] = 1
data['qty'] = 1000
data['is_in_stock'] = 1
data['tax_class_id'] = 'Vollbesteuerte Artikel' if lang != 'ru' else ''
data['attribute_set_name'] = 'Default'
def create_simple_product_m2(url, sku, msku, addon, brand, supplier, name, lang, imgs,
categories, price, country, websites, good_symbols):
sku = Sw.fuck_rus_letters(Sw.clr(sku).strip(' .,'))
msku = Sw.clr(msku)
if not check_sku(sku, url=url, good_symbols=good_symbols): return None
addon = Sw.clr(addon).upper()
brand = Sw.clr(brand, start_with_big=True)
name = Sw.clr(name, start_with_big=True).strip(' .,-;')
if name == name.upper(): name = name.title()
url_key = f"{brand}_{sku}".strip('_').lower()
url_key = url_key.replace('/', '-').replace('\\', '-').replace(' ', '-').replace('+', '-').replace('.', '-')
new_data = {}
new_data['sku'] = f'{addon} {sku}' if addon else sku
new_data['store_view_code'] = ''
new_data['attribute_set_code'] = 'Default'
new_data['product_type'] = 'simple'
create_product_and_category(new_data['sku'], categories)
new_data['categories'] = categories.replace(',', '.').replace('||', ',').replace('/', '-').replace('|', '/')
new_data['product_websites'] = websites
new_data['name'] = Sw.clr(f"{brand} {sku}. {name}").strip(' .,')
new_data['description'] = name
new_data['short_description'] = name
new_data['weight'] = ''
new_data['product_online'] = '1'
new_data['tax_class_name'] = 'Taxable Goods'
new_data['visibility'] = 'Catalog, Search'
new_data['price'] = Sw.get_float_or_null(price)
new_data['special_price'] = ''
new_data['special_price_from_date'] = ''
new_data['special_price_to_date'] = ''
new_data['url_key'] = urllib.parse.quote(url_key)
new_data[
'meta_title'] = f"Купить {new_data['name']} - цена, описание товара, технические характеристики, каталог производителя"[
0:255]
new_data['meta_keywords'] = new_data['name'][0:255]
new_data['meta_description'] = Sw.clr(html2text.html2text(new_data['short_description']))[0:255]
download_imgs_m2(new_data, imgs=imgs, path='images')
new_data['created_at'] = ''
new_data['updated_at'] = ''
new_data['new_from_date'] = ''
new_data['new_to_date'] = ''
new_data['display_product_options_in'] = 'Block after Info Column'
new_data['map_price'] = ''
new_data['msrp_price'] = ''
new_data['map_enabled'] = ''
new_data['gift_message_available'] = 'Use config'
new_data['custom_design'] = ''
new_data['custom_design_from'] = ''
new_data['custom_design_to'] = ''
new_data['custom_layout_update'] = ''
new_data['page_layout'] = ''
new_data['product_options_container'] = ''
new_data['msrp_display_actual_price_type'] = 'Use config'
new_data['country_of_manufacture'] = country
new_data['additional_attributes'] = ''
new_data['qty'] = '9999'
new_data['out_of_stock_qty'] = '0'
new_data['use_config_min_qty'] = '1'
new_data['is_qty_decimal'] = '1'
new_data['allow_backorders'] = '1'
new_data['use_config_backorders'] = '1'
new_data['min_cart_qty'] = '1'
new_data['use_config_min_sale_qty'] = '1'
new_data['max_cart_qty'] = '10000'
new_data['use_config_max_sale_qty'] = '1'
new_data['is_in_stock'] = '1'
new_data['notify_on_stock_below'] = '1'
new_data['use_config_notify_stock_qty'] = '1'
new_data['manage_stock'] = '0'
new_data['use_config_manage_stock'] = '1'
new_data['use_config_qty_increments'] = '1'
new_data['qty_increments'] = '1'
new_data['use_config_enable_qty_inc'] = '1'
new_data['enable_qty_increments'] = '0'
new_data['is_decimal_divided'] = '0'
new_data['website_id'] = '0'
new_data['deferred_stock_update'] = '0'
new_data['use_config_deferred_stock_update'] = '1'
new_data['related_skus'] = ''
# new_data['related_position'] = ''
new_data['crosssell_skus'] = ''
new_data['upsell_skus'] = ''
new_data['hide_from_product_page'] = ''
new_data['custom_options'] = ''
new_data['associated_skus'] = ''
# new_data['configurable_variations'] = ''
# new_data['configurable_variation_labels'] = ''
new_data['manufacturer'] = brand
# new attrs
new_data['ean'] = ''
new_data['manufacturer_sku'] = msku
new_data['price_base'] = new_data['price']
new_data['price_currency'] = 'EUR'
new_data['price_discount'] = 0
new_data['special_price_discount'] = 0
new_data['supplier'] = supplier
new_data['dist_store'] = 'Поставка под заказ'
new_data['category_ids'] = '2'
return new_data
def create_product_and_category(sku, category_path):
category = Category.Category.create_category(category_path, None)
category.add_product(Product.Product.create_product(sku))
def get_good_html(text):
if text == '': return ''
return Sw.clr(bs4.BeautifulSoup(str(text), 'lxml').body)[6:-7]
def minimalka(data):
min_count = int(data.get('qty_increments', 1))
data['enable_qty_increments'] = 1 if min_count > 1 else 0
data['use_config_enable_qty_inc'] = 0 if min_count > 1 else 1
data['qty_increments'] = min_count
data['use_config_qty_increments'] = 0 if min_count > 1 else 1
def reorganize_categories(products, lang, col=1):
Category.Category.reorganize_categories(lang, col)
for product in products.values():
product['categories'] = Product.Product.export_categories(
product['sku']).replace(',', '.').replace('||', ',').replace('/', '-').replace('|', '/')
Category.Category.clear()
Product.Product.clear()
def get_htmls_from_web(url, simple=False, additional_func=None):
result = []
file_name = Sw.get_cache_path(url, html=True)
if os.path.exists(file_name):
print(f'use exist {url}', only_debug=True)
result.append(read_file(file_name))
i = 1
while True:
file_name_dop = f'{file_name}_{i + 1}.html'
if not os.path.exists(file_name_dop): break
print(f'use exist dop {file_name_dop}', only_debug=True)
result.append(read_file(file_name_dop))
i += 1
else:
print(f'download {url}')
if simple:
result.append(get_simple_html(url, file_name))
else:
result.append(get_htmls_from_webdriver(url, file_name, additional_func))
return result
def _create_web_driver(url):
global _parsing_web_driver
chrome_options = selenium.webdriver.ChromeOptions()
chrome_options.add_argument("--start-maximized")
prefs = {"profile.managed_default_content_settings.images": 2}
# prefs = {}
chrome_options.add_experimental_option("prefs", prefs)
_parsing_web_driver = selenium.webdriver.Chrome(
'C:\\Users\\Administrator\\Documents\\_python\\webdriver\\chromedriver.exe',
options=chrome_options)
_parsing_web_driver.implicitly_wait(10)
_parsing_web_driver.get(url)
input('продолжить?')
print('дальше')
def read_file(file_name):
with codecs.open(file_name, 'r', 'utf-8') as file:
return file.read()
def save_text_to_file(file_name, text):
if '\\' in file_name: pathlib.Path(file_name[:file_name.rfind('\\')]).mkdir(parents=True, exist_ok=True)
with codecs.open(file_name, 'w', 'utf-8') as f:
f.write(text)
def download(url):
try:
page = requests.get(url, headers={'User-Agent': fake_useragent.UserAgent().chrome})
except:
time.sleep(1)
try:
page = requests.get(url, headers={'User-Agent': fake_useragent.UserAgent().chrome})
except:
print(f'=== download error {url}')
return None
if page.status_code != 200:
print(f'=== page status code {page.status_code} for {url}')
return None
return page
def get_simple_html(url, file_name):
page = download(url)
if page is None: return ''
page.encoding = 'utf-8'
save_text_to_file(file_name, page.text)
return page.text
def get_driver():
global _parsing_web_driver
return _parsing_web_driver
def get_htmls_from_webdriver(url, file_name, additional_func=None):
global _parsing_web_driver
if not _parsing_web_driver: _create_web_driver(url)
try:
_parsing_web_driver.get(url)
except:
try:
_parsing_web_driver.get(url)
except:
print(f'=== ошибка скачивания {url}')
return ''
time.sleep(2)
html_text = _parsing_web_driver.page_source
# if '404 - File or directory not found.' in html_text:
# print(f'=== code 404 {url}')
# return ''
if additional_func is not None:
additional_func(_parsing_web_driver)
html_text = _parsing_web_driver.page_source
save_text_to_file(file_name, html_text)
return html_text
def download_file_from_web(url, name, path='images'):
if not name: name = urllib.parse.unquote(url[url.rfind('/') + 1:url.rfind('.')])
name = Sw.good_name(name)
cache_path = Sw.get_cache_path(url)
right_part = url[url.rfind('/') + 1:]
if '?' in right_part: right_part = right_part[:right_part.rfind('?')]
file_type = right_part[right_part.rfind('.'):].lower() if '.' in right_part else ''
if file_type == '.jpeg': file_type = '.jpg'
if 'treston' in path and not file_type: file_type = '.pdf'
if len(file_type) > 4 or not file_type:
print(f'=== bad file_type "{file_type}" in url {url}')
return ''
# raise ValueError
new_path = f'{path}\\{name}{file_type}'
if os.path.exists(cache_path) and os.path.exists(new_path):
if os.stat(cache_path).st_size == os.stat(new_path).st_size:
print(f'do nothing {url}', only_debug=True)
else:
# print(f'st_size: {os.stat(cache_path).st_size} != {os.stat(new_path).st_size}')
if _copyfile(url, cache_path, new_path, file_type, path) is None: return ''
elif os.path.exists(cache_path) and not os.path.exists(new_path):
if _copyfile(url, cache_path, new_path, file_type, path) is None: return ''
else:
print(f'download file {url}')
urllib3.disable_warnings()
page = download(url)
if page is None: return ''
if '\\' in cache_path: pathlib.Path(cache_path[:cache_path.rfind('\\')]).mkdir(parents=True, exist_ok=True)
with open(cache_path, 'wb') as file:
file.write(page.content)
if _copyfile(url, cache_path, new_path, file_type, path) is None: return ''
return new_path.replace(f'{path}\\', '').lower()
def _copyfile(url, cache_path, new_path, file_type, path):
if os.stat(cache_path).st_size == 0: return None # Todo try to download one more time
if 'images' in path and file_type in ['.jpg', '.png', '.gif']:
img = PIL.Image.open(cache_path)
if (img.size[0] + img.size[1]) < 200: return None
print(f'copy file {url}', only_debug=True)
pathlib.Path(path).mkdir(parents=True, exist_ok=True)
shutil.copyfile(cache_path, new_path)
return True
def download_imgs(data, imgs, path='images'):
i = 1
brand = Sw.transliterate(data['manufacturer'])
sku = Sw.transliterate(data['herstellernummer'])
for link in imgs:
if not data.get('image'):
data['image'] = __change_file_type(download_file_from_web(link, f'{brand}_{sku}', path), 'jpg')
if not data['image']: continue
data['small_image'] = data['image']
data['thumbnail'] = data['image']
data['media_gallery'] = data['image']
else:
file_name = download_file_from_web(link, f'{brand}_{sku}_{i + 1}', path)
if not file_name: continue
i += 1
data['media_gallery'] += f"|{__change_file_type(file_name, 'jpg')}"
if not data.get('image'): get_logo_with_sku(data, f'{path}_logos')
def download_imgs_m2(new_data, imgs, path='images'):
i = 1
brand_sku = new_data['name'].split('. ')[0]
for link in imgs:
if not new_data.get('base_image'):
new_data['base_image'] = __change_file_type(download_file_from_web(link, f'{brand_sku}', path), 'jpg')
if not new_data['base_image']: continue
if check_image_for_bad(new_data['base_image']): # Todo
new_data['base_image'] = ''
continue
new_data['base_image_label'] = new_data['name']
new_data['small_image'] = new_data['base_image']
new_data['small_image_label'] = new_data['name']
new_data['thumbnail_image'] = new_data['base_image']
new_data['thumbnail_image_label'] = new_data['name']
new_data['swatch_image'] = new_data['base_image']
new_data['swatch_image_label'] = new_data['name']
new_data['additional_images'] = new_data['base_image']
new_data['additional_image_labels'] = new_data['name']
else:
file_name = download_file_from_web(link, f'{brand_sku}_{i + 1}', path)
if not file_name: continue
if check_image_for_bad(file_name): continue # Todo
i += 1
new_data['additional_images'] += f",{__change_file_type(file_name, 'jpg')}"
if not new_data.get('base_image'): get_logo_with_sku_m2(new_data, f'{path}_logos')
def check_image_for_bad(file_name):
try:
if CompareImages.get_hash(f"images\\{file_name}", 'bad.jpg') != 0: return False
except:
return True
pathlib.Path('images_bad').mkdir(parents=True, exist_ok=True)
shutil.copyfile(f"images\\{file_name}", f"images_bad\\{file_name}")
os.remove(f"images\\{file_name}")
return True
def __change_file_type(file_name, file_type):
if '.' in file_name:
file_name = file_name.replace(file_name[file_name.rfind('.'):], f'.{file_type}')
else:
print(f'=== download_imgs error - no file type {file_name}')
return file_name
def get_logo_with_sku(data, path='images'):
brand = Sw.transliterate(data['manufacturer'])
sku = Sw.transliterate(data['herstellernummer'])
data['image'] = generate_img(sku, f'{brand}_{sku}', f'{path}')
data['small_image'] = data['image']
data['thumbnail'] = data['image']
data['media_gallery'] = data['image']
data['logo'] = 'x'
def get_logo_with_sku_m2(new_data, path='images'):
brand_sku = new_data['name'].split('. ')[0]
new_data['base_image'] = generate_img(new_data['sku'], f'{brand_sku}', f'{path}')
new_data['base_image_label'] = new_data['name']
new_data['small_image'] = new_data['base_image']
new_data['small_image_label'] = new_data['name']
new_data['thumbnail_image'] = new_data['base_image']
new_data['thumbnail_image_label'] = new_data['name']
new_data['swatch_image'] = new_data['base_image']
new_data['swatch_image_label'] = new_data['name']
new_data['additional_images'] = new_data['base_image']
new_data['additional_image_labels'] = new_data['name']
new_data['logo'] = 'Yes'
def generate_img(sku, name, path='images', brand='logo'):
file_name = f'{Sw.good_name(Sw.transliterate(name))}.jpg'
full_path = f'{path}\\{file_name}'
if os.path.exists(full_path): return file_name
print(f'generate img {full_path}')
fnt = PIL.ImageFont.truetype('C:\Windows\Fonts\Arial.ttf', 60)
img = PIL.Image.open(f'{brand.lower().replace(" ", "_")}.png').convert('RGB')
d = PIL.ImageDraw.Draw(img)
d.text((60, 880), sku, fill=0, font=fnt)
pathlib.Path(path).mkdir(parents=True, exist_ok=True)
img.save(full_path, quality=100, optimize=True, progressive=True)
return file_name
def delete_file(url):
file_name = Sw.get_cache_path(url)
if os.path.exists(file_name):
os.remove(file_name)
print(f'=== delete file {url}')
else:
print(f'=== file not found {url}')
def start_stop_decorator(debug=False):
def wrapper1(func):
@functools.wraps(func)
def wrapper2(*args, **kwargs):
start_time = time.time()
start_file_name = inspect.getfile(func)
if '/' in start_file_name: start_file_name = start_file_name[start_file_name.rfind('/') + 1:]
if '\\' in start_file_name: start_file_name = start_file_name[start_file_name.rfind('\\') + 1:]
SwPrint.SwPrint(debug=debug, prj_name=start_file_name)
print('start')
result = func(*args, **kwargs)
global _parsing_web_driver
if _parsing_web_driver: _parsing_web_driver.quit()
print(f'done in {GlobalFunctions.generate_time_string(time.time() - start_time)}')
print(f'end')
SwPrint.SwPrint.save_log_to_file()
return result
return wrapper2
return wrapper1
def unwrap_links(soup):
for tag in soup.find_all('a'):
# href = tag.get('href', '')
# print(f'link unwrapped {href}')
tag.unwrap()
def get_images(soup, source_url='', target_url='', path='imgs'):
for tag in soup.find_all('img'):
src = urllib.parse.urljoin(source_url, tag.get('src', ''))
# print(f'got image {source_url} {src}')
filename = download_file_from_web(src, name='', path=path)
if 'svg' not in filename: tag.attrs.clear()
tag.attrs['src'] = f'{target_url}{filename}'
def get_images_from_links(soup, source_url='', target_url='', path='imgs'):
for tag in soup.find_all('a'):
src = urllib.parse.urljoin(source_url, tag.get('href', ''))
if not src.endswith('.jpg') and not src.endswith('.pdf'): continue
filename = download_file_from_web(src, name='', path=path)
tag.attrs.clear()
tag.attrs['href'] = f'{target_url}{filename}'
tag.attrs['target'] = '_blank'
def correct_images_sources(soup, source_url=''):
for tag in soup.find_all('img'):
src = urllib.parse.urljoin(source_url, tag.get('src'))
print(f'got image {src}')
tag.attrs.clear()
tag.attrs['src'] = src
def summ(file_de, file_en):
import LoadDictFromFile
import SaveDictToFile
if file_de and file_en:
file_de = LoadDictFromFile.load(file_de)
file_en = LoadDictFromFile.load(file_en)
for each in file_de.values():
if each['sku'] in file_en:
each['name_en'] = file_en[each['sku']].get('name', '')
each['short_description_en'] = file_en[each['sku']].get('short_description', '')
each['description_en'] = file_en[each['sku']].get('description', '')
each['category_ids_en'] = file_en[each['sku']].get('category_ids', '')
else:
each['no_en'] = 'x'
SaveDictToFile.save_to_xlsx(
file_de,
filename=f'products',
fieldnames=SaveDictToFile._param_list_extend(),
optimize=True)