Смотрите я писал код по туториалу на ютубе. Все переписал правильно 5 раз перепроверял. В туториале когда закидываеш
python файл в консоль, должна открыться в отдельном окне прога в которой показывает погоду. Но когда я закидываю файл в консоль 0 реакции ничего не запускает и в консоли пишет C:\Users\Андрей> и все. Вот код.
import eel
import pyowm
owm = pyowm.OWM("c2cc62c73be48c67c12706cde1c47a29")
@eel.expose
def get_weather(place):
mgr = owm.weather_manager()
observation = mgr.weather_at_place(city)
w = observation.weather
temp = w.temperature('celsius')['temp']
return "В городе " + city + " сейчас " +str(temp) + " градусов! "
eel.init("web")
eel.start("main.html" , size=(700,700))
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Погода</title>
<script scr="eel.js"></script>
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
</head>
<body>
<input id="location" type="text" placeholder="Bведите название страны и города..." required="" value="Нью-Йорк, США">
<button id="show">Узнать погоду</button>
<div class="info"></div>
<script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<script type="text/javascript">
//
async function display_weather() {
let place = document.getElementById('location').value;
let res = await eel.get_weather(place)();
document.getElementById('info').innerHTML = res;
}
jQuery('#show').on('click', fuction() {
display_weather();
});
</script>
</body>
</html>
<code lang="css">
* {
font-family: "Roboto", sans-serif;
}
body {
background: #00d2ff;
background: -webkit-linear-gradient(to right, #FFC371, #FF5F60);
background: linear-gradient(to right,#FFC371, #FF5F60);
color: white;
}
#location {
display: block;
border: none;
background: rgba(255, 255, 255, .5);
border-radius: 10px;
padding: 20px;
color: white;
outline: none;
width: 100%;
font-size: 25px;
font-weight: 300;
}
#location::placeholder {
color: rgba(255, 255, 255, .5);
}
#show {
display: block;
border: none;
margin-top: 15px;
background: #16BFFD;
background: -webkit-linear-gradient(to right, #CB3066);
background: linear-gradient(to right,#CB3066, #16BFFD);
border-radius: 20px;
padding: 20px;
color: white;
outline: none;
width: 100%;
font-size: 20px;
text-transform: uppercase;
font-weight: bold;
cursor: pointer;
}
#show:hover {
opacity: .9;
}
</code>