import json import sys import unicodedata from datetime import datetime import psycopg2 import config_read from bs4 import BeautifulSoup import requests # import sys from classes.phoneoffer import PhoneOffer file_path = 'outputfile.txt' sys.stdout = open(file_path, "w") offer_shop = "Mobelix" # offer shop last_updated = datetime.now().date() is_validated = False # Mobelix phone offers that are already in database offers = json.loads(unicodedata.normalize('NFKD', requests.get('http://localhost:8080/phoneoffer/shop/mobelix').text)) database_offers = [] for offer in offers: phoneOffer = PhoneOffer(offer['id'], offer['offer_shop'], offer['offer_name'], offer['price'], offer['ram_memory'], offer['rom_memory'], offer['color'], offer['front_camera'], offer['back_camera'], offer['chipset'], offer['battery'], offer['operating_system'], offer['cpu'], offer['image_url'], offer['offer_url'], offer['last_updated'], offer['is_validated'], offer['offer_description'], offer['offer_shop_code']) database_offers.append(phoneOffer) new_offers = [] for i in range(1, 17): mobelix_url = "https://mobelix.com.mk/mk/mobilni-telefoni?page=" + str(i) response1 = requests.get(mobelix_url) soup1 = BeautifulSoup(response1.content, 'html.parser') phones = soup1.find_all('div', {'class': 'p-2 rounded text-dark bg-white d-flex w-100'}) for phone in phones: offer_url = phone.find('a').get('href') image_url = phone.find_all('div', {'class': 'col-12'})[0].find('img').get('src') brand = phone.find_all('div', {'class': 'col-12'})[1].find('h5', {'class': 'mb-0'}).get_text().strip() offer_name = phone.find_all('div', {'class': 'col-12'})[1] \ .find('h3', {'class': 'h5 font-weight-normal'}).get_text().strip() if 'Watch' in offer_name or 'Pad' in offer_name or 'Tab' in offer_name or 'Pods' in offer_name or 'Buds' in offer_name or 'HomePod' in offer_name: continue if brand not in offer_name: offer_name = brand + " " + offer_name temp_prices = phone.find_all('div', {'class': 'col-12'})[1] \ .find('p', {'class': 'h5 price'}).get_text(separator='/').strip() if len(temp_prices.split('/')) > 1: price = int(float(temp_prices.split('/')[1].replace(',', '').replace('ден', '').strip())) else: price = int(float(temp_prices.split('/')[0].replace(',', '').replace('ден', '').strip())) response2 = requests.get(offer_url) soup2 = BeautifulSoup(response2.content, 'html.parser') colors_divs = soup2.find('div', {'class': 'color-wrapper mt-2 mb-1'}) \ .find_all('div', {'class': 'color-box d-inline-block'}) # color div tags temp_colors = [] for div in colors_divs: temp_colors.append(div.get('title')) color = ",".join(temp_colors) # available colors for offer tables = soup2.find('div', {'class': 'mobelix-specs table-white bordered-table'}).find_all('table') operating_system = None chipset = None battery = None ram_memory = None rom_memory = None front_camera = '' back_camera = '' cpu = None offer_shop_code = None offer_description = None for table in tables: for cell in table.find_all('td'): if cell.get('data-spec') is None: continue if cell.get('data-spec') == 'os': operating_system = unicodedata.normalize('NFKD', cell.get_text().strip()) if cell.get('data-spec') == 'chipset': chipset = unicodedata.normalize('NFKD', cell.get_text().strip()) if cell.get('data-spec') == 'cpu': cpu = unicodedata.normalize('NFKD', cell.get_text().strip()) if cell.get('data-spec') == 'internalmemory': temp_rom = [] temp_ram = [] temp_internalmemory = unicodedata.normalize('NFKD', cell.get_text().strip()) for internalmemory in temp_internalmemory.split(','): temp_rom.append(internalmemory.strip().split(' ')[0]) if len(internalmemory.strip().split(' ')) > 1: temp_ram.append(internalmemory.strip().split(' ')[1]) rom_memory = ','.join(temp_rom) ram_memory = ','.join(temp_ram) if cell.get('data-spec') == 'cam1modules' or cell.get('data-spec') == 'cam1features' or cell.get( 'data-spec') == 'cam1video': back_camera += unicodedata.normalize('NFKD', cell.get_text().strip()) + '\n' if cell.get('data-spec') == 'cam2modules' or cell.get('data-spec') == 'cam2features' or cell.get( 'data-spec') == 'cam2video': front_camera += unicodedata.normalize('NFKD', cell.get_text().strip()) + '\n' if cell.get('data-spec') == 'batdescription1': battery = unicodedata.normalize('NFKD', cell.get_text().strip()) if front_camera == 'No': front_camera = None if back_camera == 'No': back_camera = None new_offers.append(PhoneOffer(offer_shop, offer_name, price, ram_memory, rom_memory, color, front_camera, back_camera, chipset, battery, operating_system, cpu, image_url, offer_url, last_updated, is_validated, offer_description, offer_shop_code)) for new_offer in new_offers: flag = False flag_price = False offer_id = None for old_offer in database_offers: if new_offer.offer_name == old_offer.offer_name: flag = True if new_offer.price != old_offer.price: flag_price = True offer_id = old_offer.offer_id if flag: # print('ALREADY IN DATABASE') # print(new_offer) # if it's already in database, check PRICE and if it's changed, change it !!!!!! if flag_price: print('PRICE CHANGED!') # CHANGE PRICE print('offer id: ' + str(offer_id)) headers = {'Content-type': 'application/json'} requests.put('http://localhost:8080/phoneoffer/' + str(offer_id) + '/changeprice/' + str(new_offer.price), headers=headers) else: print('ADDED') # ADD OFFER print(new_offer) headers = {'Content-type': 'application/json'} requests.post('http://localhost:8080/phoneoffer/addoffer', headers=headers, data=json.dumps(new_offer.__dict__, default=str)) print('------------------------------------') for old_offer in database_offers: flag = False for new_offer in new_offers: if old_offer.offer_name == new_offer.offer_name: flag = True if not flag: print('OFFER DELETED') print(old_offer) # DELETE OFFER requests.delete('http://localhost:8080/phoneoffer/deleteoffer/' + str(old_offer.offer_id))