mirror of
https://github.com/KUlishevgeniy/c22712.git
synced 2026-09-24 08:00:22 +00:00
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
import wget
|
|
import psycopg2
|
|
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(60),
|
|
price varchar(15),
|
|
picture varchar(100))"""
|
|
try:
|
|
cursor.execute(cr_qwery)
|
|
connection.commit()
|
|
except psycopg2.errors.DuplicateTable:
|
|
print("duplicate of the table")
|
|
|
|
|
|
s = Service('C:\Desktop\exe\chromedriver.exe')
|
|
browser = webdriver.Chrome(service=s)
|
|
browser.get('https://www.hellride.ru/catalog/zapchasti-dlya-tryukovyh-samokatov/deki')
|
|
html_code = browser.page_source
|
|
soup = BeautifulSoup(html_code, 'lxml')
|
|
name = soup.find_all('span', class_='product-card__title')
|
|
price = soup.find_all('span', class_='product-card__price')
|
|
picture = soup.find_all('img', class_='product-slider__slide-img swiper-lazy swiper-lazy-loaded')
|
|
|
|
for prices, names in zip(price, name,):
|
|
print(f" название {names.text} ; цена: {prices.text} ")
|
|
for i in range(len(name)):
|
|
url = picture[i].attrs['src']
|
|
filename = f"Pictures/{i}.jpg"
|
|
wget.download(url, filename)
|
|
ins_qwery = f"""insert into public.Parser(name, price, picture)
|
|
values ('{name[i].text}', '{price[i].text}', '{filename}')"""
|
|
cursor.execute(ins_qwery)
|
|
connection.commit()
|
|
|
|
cursor.close()
|
|
|
|
connection.close()
|
|
|
|
|
|
|
|
|
|
|