This commit is contained in:
ada-dmitry
2023-03-27 22:50:23 +03:00
parent a0e99cb827
commit 1e69e53e91
13 changed files with 272 additions and 8 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ creat_qwery = """ create table Parser
cursor.execute(creat_qwery)
connection.commit()
driver = Service('D:\teach\Prog\chromedriver.exe')
driver = Service('D:\\teach\Prog\chromedriver.exe')
browser = webdriver.Chrome(service=driver)
browser.get('https://amwine.ru/catalog/igristoe_vino_i_shampanskoe/igristoe_vino/')
html_code = browser.page_source
+43
View File
@@ -0,0 +1,43 @@
from bs4 import BeautifulSoup
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
import psycopg2
import wget
# connection = psycopg2.connect(host='localhost', dbname='dbdata', user='postgres', password='Q1w2e3r4')
# cursor = connection.cursor()
s = Service('D:\Games\data\chromedriver.exe')
browser = webdriver.Chrome(service=s)
browser.get('https://www.volkswagen.ru/polo/')
html_text = browser.page_source
soup = BeautifulSoup(html_text, 'lxml')
# creat_table = """ create table Cars_volks
# (id serial primary key, car_name varchar(20),
# price varchar(15), adress varchar(40),
# scr varchar(100)) """
#cursor.execute(creat_table)
# connection.commit()
car_names = soup.find_all('div', class_='avn001-2_name')
prices = soup.find_all('div', class_='avn001-2_price-container')
adresses = soup.find_all('div', class_='avn001-2_dealer-link__text')
pictures = soup.find_all('div', class_='avn001-2_image image__container')
#for car_name, adress, price in zip(car_names, adresses, prices):
# print(f"Название машины:{car_name.text} | Адрес диллера: {adress.text} | Цена: {price.text} рублей")
for i in range(4):
url = pictures[i].find('img').attrs['src']
filename = f"Programming\\other\\img\\img{i}.jpg"
print(filename)
wget.download(url, filename)
# insert_qwery = f"""INSERT INTO public.Cars_volks(car_name, price, adress, scr)
# VALUES ('{car_names[i].text}', '{prices[i].text}', '{adresses[i].text}', '{filename}')""";
# cursor.execute(insert_qwery)
# connection.commit()
# cursor.close()
# connection.close()
Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB