url = f'https://www.avito.ru/samara?q={in_text}'
count = 0
urls = []
driver.get(url)
links = driver.find_elements(By.XPATH, '//a[@data-marker="item-title"]')
titles = driver.find_elements(By.XPATH, '//h3[@itemprop="name"]')
prices = driver.find_elements(By.XPATH, '//meta[@itemprop="price"]')
dates = driver.find_elements(By.XPATH, '//div[@data-marker="item-date"]')
for link in links:
link = link.get_attribute('href')
urls.append(link)
print('Выполняю запрос..')
finaly = []
os.system('clear')
pool_size = len(links)
for _ in range(pool_size):
link = links[int(count)].get_attribute('href')
title = titles[int(count)].text
price = prices[int(count)].get_attribute('content')
date = dates[int(count)].text
line = f'{link}\nНазвание: {title} - {price}р.\nДата публикации: {date}\n'
#os.system(f'echo "{line}" >> output') <-- Тут езё всё окей
finaly.append(f'Ссылка: {link}\nНазвание: {title}\nЦена: {price}\nДата публикации: {date}')
count += 1
for _ in finaly:
if 'samara' in _:
os.system(f'echo "{_}\n" >> output') <-- Тут информация дублируется
else:
pass
Так ты файнали обруляешь до у кла, а в файл выводишь в цикле. Сперва 1 строку, потом 1 и 2, потом 1, 2 и 3...
Обсуждают сегодня