1
0
forked from tdwojak/Python2017
Python2017/labs03/task04.py
2017-12-10 15:12:51 +01:00

16 lines
319 B
Python

from weather import Weather
weather = Weather()
lookup = weather.lookup_by_location("Poznan")
astronomy = lookup.astronomy()
atmosphere = lookup.atmosphere()
condition = lookup.condition()
units = lookup.units()
wind = lookup.wind()
print(astronomy)
print(atmosphere)
print(condition.text())
print(units)
print(wind)