Получение данных о погоде с сайта Яндекс - Python

Узнай цену своей работы

Формулировка задачи:

У меня есть скрипт, который должен получать информацию о погоде с сайта Яндекс погода. Но скрипт почему то получается информации только за 1 день. Проблема в том, что class в коде яндекс погоды одинаковые. Как получить данные о разных днях.
Листинг программы
  1. import urllib.request
  2. from bs4 import BeautifulSoup
  3. def get_html(url):
  4. response = urllib.request.urlopen(url)
  5. return response.read()
  6. def parse(html):
  7. soup = BeautifulSoup(html, "html.parser")
  8. temp = soup.find('div', class_='current-weather__thermometer current-weather__thermometer_type_now').get_text().encode('utf-8').decode('utf-8', 'ignore')
  9. return temp
  10. def parsing(html):
  11. soup = BeautifulSoup(html, "html.parser")
  12. next_temp = soup.find('div', class_='forecast-brief__item-temp-day').get_text().encode('utf-8').decode('utf-8', 'ignore')
  13. return next_temp
  14. def thursday(html):
  15. soup = BeautifulSoup(html, "html.parser")
  16. thursday_temp = soup.find('div', class_='forecast-brief__item-temp-day').get_text().encode('utf-8').decode('utf-8', 'ignore')
  17. return thursday_temp
  18. def friday(html):
  19. soup = BeautifulSoup(html, "html.parser")
  20. friday_temp = soup.find('div', class_='forecast-brief__item-temp-day').get_text().encode('utf-8').decode('utf-8', 'ignore')
  21. return friday_temp
  22. def saturday(html):
  23. soup = BeautifulSoup(html, "html.parser")
  24. saturday_temp = soup.find('div', class_='forecast-brief__item-temp-day').get_text().encode('utf-8').decode('utf-8','ignore')
  25. return saturday_temp
  26. def sunday(html):
  27. soup = BeautifulSoup(html, "html.parser")
  28. sunday_temp = soup.find('div', class_='forecast-brief__item-temp-day').get_text().encode('utf-8').decode('utf-8','ignore')
  29. return sunday_temp
  30. def main():
  31. temp = parse(get_html('https://yandex.ru/pogoda/moscow'))
  32. print("Текущая температура: ", temp)
  33. next_temp = parsing(get_html('https://yandex.ru/pogoda/moscow'))
  34. print("Температура на завтра : ", next_temp)
  35. thursday_temp = thursday(get_html('https://yandex.ru/pogoda/moscow'))
  36. print ("Температура на четверг : ", thursday_temp)
  37. friday_temp = friday(get_html('https://yandex.ru/pogoda/moscow'))
  38. print("Температура на пятницу : ", friday_temp)
  39. saturday_temp = saturday(get_html('https://yandex.ru/pogoda/moscow'))
  40. print("Температура на субботу : ", saturday_temp)
  41. sunday_temp = sunday(get_html('https://yandex.ru/pogoda/moscow'))
  42. print("Температура на воскресение : ", sunday_temp)
  43. if __name__ == '__main__':
  44. main()

Решение задачи: «Получение данных о погоде с сайта Яндекс»

textual
Листинг программы
  1. # -*- coding: utf-8 -*-
  2. import http.client, re, time
  3. conn = http.client.HTTPSConnection("yandex.ru")
  4. conn.request("GET", "/pogoda/moscow")
  5. response = conn.getresponse()
  6. str_resp = response.read().decode("utf-8")
  7. for i in range(1, 9):
  8.     day1Html = re.search(r'<li class="forecast-brief__item day-anchor i-bem" data-bem="{"day-anchor":{"anchor":\d*?,"dayIndex":'+str(i)+'}}">(.+)<\/li>',str_resp).group(1)
  9.     day1Day = re.search(r'<span class="forecast-brief__item-day-name">(.+?)</span>',day1Html).group(1)
  10.     day1Result = re.search(r'<div class="forecast-brief__item-temp-day" title="Максимальная температура днём">(.+?)<\/div>', day1Html).group(1)
  11.     print(day1Day,day1Result)

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

12   голосов , оценка 4.333 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы