Все работает на моем локальном компьютере, но когда я загружаю свой проект на сервер, я получаю эту ошибку во второй строке «если»:пробелы в отступе
def scrape_weather(request):
if request.method == 'POST':
old_weather = Weather.objects.all()
old_weather.delete()
api_adress = "http://api.openweathermap.org/data/2.5/weather?q="
api_key = "***"
city = request.POST.get("city")
url = api_adress + city + api_key
if url == (api_adress + api_key):
url = api_adress + "warsaw" + api_key
json_data = requests.get(url).json()
new_weather = json_data['weather'][0]['main']
degree_kelvin = int(json_data['main']['temp'])
degree = degree_kelvin-273
pressure = json_data['main']['pressure']
new_weather = Weather()
new_weather.degree = degree
new_weather.pressure = pressure
new_weather.weather = new_weather
new_weather.save()
return redirect('/home/')