Получение данных о погоде с сайта Яндекс - Python
Формулировка задачи:
У меня есть скрипт, который должен получать информацию о погоде с сайта Яндекс погода. Но скрипт почему то получается информации только за 1 день. Проблема в том, что class в коде яндекс погоды одинаковые. Как получить данные о разных днях.
Листинг программы
- import urllib.request
- from bs4 import BeautifulSoup
- def get_html(url):
- response = urllib.request.urlopen(url)
- return response.read()
- def parse(html):
- soup = BeautifulSoup(html, "html.parser")
- temp = soup.find('div', class_='current-weather__thermometer current-weather__thermometer_type_now').get_text().encode('utf-8').decode('utf-8', 'ignore')
- return temp
- def parsing(html):
- soup = BeautifulSoup(html, "html.parser")
- next_temp = soup.find('div', class_='forecast-brief__item-temp-day').get_text().encode('utf-8').decode('utf-8', 'ignore')
- return next_temp
- def thursday(html):
- soup = BeautifulSoup(html, "html.parser")
- thursday_temp = soup.find('div', class_='forecast-brief__item-temp-day').get_text().encode('utf-8').decode('utf-8', 'ignore')
- return thursday_temp
- def friday(html):
- soup = BeautifulSoup(html, "html.parser")
- friday_temp = soup.find('div', class_='forecast-brief__item-temp-day').get_text().encode('utf-8').decode('utf-8', 'ignore')
- return friday_temp
- def saturday(html):
- soup = BeautifulSoup(html, "html.parser")
- saturday_temp = soup.find('div', class_='forecast-brief__item-temp-day').get_text().encode('utf-8').decode('utf-8','ignore')
- return saturday_temp
- def sunday(html):
- soup = BeautifulSoup(html, "html.parser")
- sunday_temp = soup.find('div', class_='forecast-brief__item-temp-day').get_text().encode('utf-8').decode('utf-8','ignore')
- return sunday_temp
- def main():
- temp = parse(get_html('https://yandex.ru/pogoda/moscow'))
- print("Текущая температура: ", temp)
- next_temp = parsing(get_html('https://yandex.ru/pogoda/moscow'))
- print("Температура на завтра : ", next_temp)
- thursday_temp = thursday(get_html('https://yandex.ru/pogoda/moscow'))
- print ("Температура на четверг : ", thursday_temp)
- friday_temp = friday(get_html('https://yandex.ru/pogoda/moscow'))
- print("Температура на пятницу : ", friday_temp)
- saturday_temp = saturday(get_html('https://yandex.ru/pogoda/moscow'))
- print("Температура на субботу : ", saturday_temp)
- sunday_temp = sunday(get_html('https://yandex.ru/pogoda/moscow'))
- print("Температура на воскресение : ", sunday_temp)
- if __name__ == '__main__':
- main()
Решение задачи: «Получение данных о погоде с сайта Яндекс»
textual
Листинг программы
- # -*- coding: utf-8 -*-
- import http.client, re, time
- conn = http.client.HTTPSConnection("yandex.ru")
- conn.request("GET", "/pogoda/moscow")
- response = conn.getresponse()
- str_resp = response.read().decode("utf-8")
- for i in range(1, 9):
- 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)
- day1Day = re.search(r'<span class="forecast-brief__item-day-name">(.+?)</span>',day1Html).group(1)
- day1Result = re.search(r'<div class="forecast-brief__item-temp-day" title="Максимальная температура днём">(.+?)<\/div>', day1Html).group(1)
- print(day1Day,day1Result)
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д