Итак, веб-сайт, с которого я пытаюсь разобраться: https // viewyourdeal-gabrielsimone.com '
Названия продуктов и цены указаны в каждом разделе div class = "info-wrapper", который я могу извлечьцена без проблем, однако, когда я пытаюсь извлечь название продукта, он не может преобразовать его в текст, как ссылку href.Каждое название продукта находится под классом div под href.Итак, мой вопрос, как мне очистить название продукта?
import json
from bs4 import BeautifulSoup
import requests
import csv
from datetime import datetime
url = 'https://viewyourdeal-gabrielsimone.com'
gmaInfo=[]
response = requests.get(url, timeout=5)
content = BeautifulSoup(response.content, "html.parser")
for info in content.findAll('div', attrs={"class" : "wrapper ease-animation"}):
gridObject = {
"title" : info.find('div', attrs={"class" : "title animation allgrey"}),
"price" : info.find('span', attrs={"class":"red-price"}).text
}
print(gridObject)
with open('index.csv', 'w') as csv_file:
writer = csv.writer(csv_file)
writer.writerow([gridObject])