привет, я пытаюсь следовать этому руководству , чтобы взять Python open weather api
вот пример кода manula:
import openweather
from datetime import datetime
# create client
ow = openweather.OpenWeather()
# find weather stations near me
stations = ow.find_stations_near(
7.0, # longitude
50.0, # latitude
100 # kilometer radius
)
# iterate results
for station in stations:
print station
но это не работает, япринять это сообщение об ошибке:
OpenWeather.do_request(): No connection. (1. attempt)
OpenWeather.do_request(): No connection. (2. attempt)
OpenWeather.do_request(): No connection. (3. attempt)
есть идеи, почему?