Размещено 3 года назад по предмету
Информатика
от nikop09888
Здравствуйте! Пиши программу на Python (приложение показывает погоду). Столкнулся с проблемой Traceback (most recent call last):
File "main.py", line 7, in
owm = pyowm.owm("cc6450a19ebb3ea19e68638e02961a54")
TypeError: 'module' object is not callable
observation = mgr.weather_at_place(city)
w = observation.weather
temp = w.temperature('celsius')['temp']
print("В Городе " +city + "сейчас" + str(temp)+ "градусов!")
eel.init("web") # EEL initialization
@eel.expose
def binary(number):
"""This function converts the entered number from the decimal system to binary"""
return bin(int(number)).replace("0b", "")
eel.start("main.html", size=(700, 400)) # Starting the App