Answer the question
In order to leave comments, you need to log in
BeautifulSoup output is not HTML, how can I fix it?
import requests
from bs4 import BeautifulSoup
url = ' https://www.avito.ru/samara/avtomobili?p=1&q=gazel... '
respons = requests.get(url)
item = BeautifulSoup(respons.text, "html .parser")
print(item)
all_links = item.findAll('a', class_='iva-item-titleStep-_CxvN')
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question