mirror of
https://github.com/KUlishevgeniy/c22712.git
synced 2026-09-24 08:00:22 +00:00
36 lines
1.5 KiB
Python
36 lines
1.5 KiB
Python
from bs4 import BeautifulSoup
|
|
from selenium import webdriver
|
|
from selenium.webdriver.chrome.service import Service
|
|
import psycopg2
|
|
import wget
|
|
|
|
browser = webdriver.Chrome(service=Service('C:\\Users\\Yekaterina\\Downloads\\chromedriver_win32.zip\\chromedriver.exe'))
|
|
browser.get('https://msk.sushi-market.com/menu/rolly')
|
|
soup = BeautifulSoup(browser.page_source, "lxml")
|
|
|
|
Name = soup.find_all(attrs={"class": "goodsBlockName device-show"})
|
|
Info = soup.find_all(attrs={"class": "goodsBlockWeight"})
|
|
Des = soup.find_all(attrs={"class": "cardsList_text"})
|
|
Price = soup.find_all(attrs={"class": "goodsBlockPrice"})
|
|
Image = soup.find_all(attrs={"class": "cardsList_img add-to-cart__img"})
|
|
|
|
connection = psycopg2.connect(host='localhost', dbname='dbdata', user='postgres', password='Q1w2e3r4')
|
|
cursor = connection.cursor()
|
|
create_q = '''CREATE TABLE Food (ID serial primary key, Name varchar(5000), Info varchar(5000), Des varchar(10000), Price varchar(6000), src varchar(1000))'''
|
|
cursor.execute(create_q)
|
|
connection.commit()
|
|
|
|
for j in range(25):
|
|
url = Image[j].find('img').attrs['src']
|
|
tempf = f"img\\food{j}.jpg"
|
|
wget.download(url, tempf)
|
|
insert_query = f'''INSERT into public.Food(Name, Info, Des, Price, src) values ('{Name[j].text}','{Info[j].text}','{Des[j].text}', '{Price[j].text}', '{tempf}') '''
|
|
cursor.execute(insert_query)
|
|
connection.commit()
|
|
|
|
cursor.execute("SELECT * from Food")
|
|
print(cursor.fetchall())
|
|
|
|
cursor.close()
|
|
connection.close()
|