mirror of
https://github.com/KUlishevgeniy/c22712.git
synced 2026-09-24 08:00:22 +00:00
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
import psycopg2
|
|
import wget
|
|
from bs4 import BeautifulSoup
|
|
from selenium import webdriver
|
|
from selenium.webdriver.chrome.service import Service
|
|
connection = psycopg2.connect(host='localhost', dbname='dbdata', user='postgres', password='Q1w2e3r4')
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cr_qwery = """ create table Parser
|
|
(id serial primary key, name varchar(100), sale varchar(30), price varchar(10), rate varchar(10), picture varchar(100))"""
|
|
|
|
#cursor.execute(cr_qwery)
|
|
connection.commit()
|
|
|
|
driver = Service('D:\GOGdriver\chromedriver.exe')
|
|
browser = webdriver.Chrome(service=driver)
|
|
browser.get('https://www.perekrestok.ru/cat/promo/10')
|
|
html_code = browser.page_source
|
|
soup = BeautifulSoup(html_code, 'lxml')
|
|
|
|
name = soup.find_all('div', class_="product-card__title")
|
|
sale = soup.find_all('div', class_="sc-kYrlTI ciSrDA product-card__badge")
|
|
price = soup.find_all('div', class_="price-new")
|
|
rate = soup.find_all('div', class_="rating-value")
|
|
picture = soup.find_all('div', class_="product-card__image-wrapper")
|
|
|
|
for i in range(15):
|
|
url = picture[i].find('img').attrs['src']
|
|
filename = f"C:\\Users\\71332\PycharmProjects\pythonProject1\\venv\Pictures\{i}.jpg"
|
|
wget.download(url, filename)
|
|
ins_qwery = f"""insert into public.Parser(name, sale, price, rate, picture) values ('{name[i].text}', '{sale[i].text}', '{price[i].text}', '{rate[i].text}', '{filename}')"""
|
|
cursor.execute(ins_qwery)
|
|
connection.commit()
|
|
|
|
|
|
|
|
|
|
cursor.close()
|
|
|
|
connection.close() |