Changeset 895cd87 for phonelux_scrappers/scrappers/setec_scrapper.py
- Timestamp:
- 10/01/22 22:55:27 (2 years ago)
- Branches:
- master
- Children:
- fd5b100
- Parents:
- 48f3030
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
phonelux_scrappers/scrappers/setec_scrapper.py
r48f3030 r895cd87 1 import json 1 2 import unicodedata 2 3 from datetime import datetime 3 4 4 import psycopg2 5 5 import config_read 6 6 from bs4 import BeautifulSoup 7 7 import requests 8 import sys 8 9 9 import sys 10 from classes.phoneoffer import PhoneOffer 10 11 11 12 file_path = 'outputfile.txt' 12 13 sys.stdout = open(file_path, "w") 13 14 # Call to read the configuration file and connect to database15 cinfo = config_read.get_databaseconfig("../postgresdb.config")16 db_connection = psycopg2.connect(17 database=cinfo[0],18 host=cinfo[1],19 user=cinfo[2],20 password=cinfo[3]21 )22 cur = db_connection.cursor()23 14 24 15 offer_shop = "Setec" # offer shop … … 26 17 is_validated = False 27 18 28 for i in range(1, 7): 29 setec_url = 'https://setec.mk/index.php?route=product/category&path=10066_10067&page='+str(i) 19 # Setec phone offers that are already in database 20 21 offers = json.loads(unicodedata.normalize('NFKD', requests.get('http://localhost:8080/phoneoffer/shop/setec').text)) 22 23 database_offers = [] 24 25 for offer in offers: 26 phoneOffer = PhoneOffer(offer['id'], offer['offer_shop'], offer['offer_name'], offer['price'], 27 offer['ram_memory'], 28 offer['rom_memory'], offer['color'], offer['front_camera'], offer['back_camera'], 29 offer['chipset'], offer['battery'], offer['operating_system'], offer['cpu'], 30 offer['image_url'], 31 offer['offer_url'], offer['last_updated'], offer['is_validated'], 32 offer['offer_description'], 33 offer['offer_shop_code']) 34 database_offers.append(phoneOffer) 35 36 new_offers = [] 37 38 for i in range(1, 9): 39 setec_url = 'https://setec.mk/index.php?route=product/category&path=10066_10067&page=' + str(i) 30 40 31 41 response1 = requests.get(setec_url) … … 41 51 brand = offer_name.split(' ')[0] 42 52 53 back_camera = None 54 operating_system = None 55 chipset = None 56 battery = None 57 ram_memory = None 58 rom_memory = None 59 cpu = None 60 front_camera = None 61 color = None 62 43 63 if 'Cable' in offer_name or 'AirTag' in offer_name: 44 64 continue … … 49 69 offer_shop_code = phone.find('div', {'class': 'right'}) \ 50 70 .find('div', {'class': 'shifra'}).get_text().replace('Шифра:', '').strip() 51 price = int(phone.find('div', {'class': 'right'}).find('div', {'class': 'price'}). \ 52 find('div', {'class': 'category-price-redovna'}).find('span', {'class': 'price-old-new'}) \ 53 .get_text().replace('Ден.', '').replace(',', '').strip()) 71 72 price_tag = phone.find('div', {'class': 'right'}).find('div', {'class': 'price'}). \ 73 find('div', {'class': 'category-price-redovna'}).find('span', {'class': 'price-old-new'}) 74 75 if price_tag is None: 76 price_tag = phone.find('div', {'class': 'right'}).find('div', {'class': 'price'}). \ 77 find('div', {'class': 'category-price-redovna'}).find('span', {'class': 'cena_za_kesh'}) 78 79 price = int(price_tag.get_text().replace('Ден.', '').replace(',', '').strip()) 54 80 55 81 response2 = requests.get(offer_url) … … 58 84 offer_description = soup2.find('div', {'id': 'tab-description'}).get_text(separator='\n') 59 85 60 insert_script = 'INSERT INTO phone_offers (offer_shop, brand, offer_name , price, image_url, offer_url,' \ 61 'offer_shop_code, offer_description, last_updated, is_validated)' \ 62 ' VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s);' 63 insert_value = (offer_shop, brand, offer_name, price, image_url, offer_url, 64 offer_shop_code, offer_description, last_updated, is_validated) 65 cur.execute(insert_script, insert_value) 66 db_connection.commit() 86 new_offers.append(PhoneOffer(offer_shop, offer_name, price, ram_memory, rom_memory, 87 color, front_camera, back_camera, chipset, battery, operating_system, cpu, 88 image_url, 89 offer_url, last_updated, is_validated, offer_description, offer_shop_code)) 67 90 68 cur.close() 69 db_connection.close() 91 for new_offer in new_offers: 92 flag = False 93 flag_price = False 94 offer_id = None 95 96 for old_offer in database_offers: 97 98 if new_offer.offer_shop_code == old_offer.offer_shop_code: 99 flag = True 100 if new_offer.price != old_offer.price: 101 flag_price = True 102 offer_id = old_offer.offer_id 103 104 if flag: 105 # print('ALREADY IN DATABASE') 106 # print(new_offer) 107 # if it's already in database, check PRICE and if it's changed, change it !!!!!! 108 if flag_price: 109 print('PRICE CHANGED!') # CHANGE PRICE 110 print('offer id: ' + str(offer_id)) 111 headers = {'Content-type': 'application/json'} 112 requests.put('http://localhost:8080/phoneoffer/' + str(offer_id) + '/changeprice/' + str(new_offer.price), 113 headers=headers) 114 else: 115 print('ADDED') # ADD OFFER 116 print(new_offer) 117 headers = {'Content-type': 'application/json'} 118 requests.post('http://localhost:8080/phoneoffer/addoffer', 119 headers=headers, data=json.dumps(new_offer.__dict__, default=str)) 120 121 print('------------------------------------') 122 123 for old_offer in database_offers: 124 flag = False 125 for new_offer in new_offers: 126 if old_offer.offer_shop_code == new_offer.offer_shop_code: 127 flag = True 128 129 if not flag: 130 print('OFFER DELETED') 131 print(old_offer) 132 # DELETE OFFER 133 requests.delete('http://localhost:8080/phoneoffer/deleteoffer/' + str(old_offer.offer_id))
Note:
See TracChangeset
for help on using the changeset viewer.