1일 파이썬 빌드: 북극의 날씨는 어떻습니까?
3033 단어 pythonanviladventofcodewebdev
북극의 날씨는 어떻습니까?
This blog post is part of Anvil's Advent Calendar, a project where we build 24 apps in 24 days, and blog about it! That means this app was built in only a few hours; read on to see what our 8th of December app is.
북극에 있는 산타클로스와 그의 엘프들에게는 기상 조건이 꽤 가혹할 수 있습니다. 오늘의 강림절 캘린더 앱을 사용하면 산타에게 날씨가 나쁜지 좋은지 확인할 수 있습니다.
https://north-pole-weather.anvil.app
물론 이 앱은 Python만으로 제작되었습니다!
작동 방식은 다음과 같습니다.
AccuWeather은 주어진 위치에서 current weather conditions을 가져오기 위한 간단한 무료 API를 제공합니다. 우리가 해야 할 일은 API에 요청을 보내고 우리가 원하는 정보를 표시하기 위한 프런트 엔드를 구축하는 것입니다.
원하는 날씨 정보를 표시하기 위해 Labels 과 같은 구성 요소를 끌어다 놓아 앱의 UI를 빌드하는 것으로 시작할 수 있습니다.
그런 다음 앱에서 get an API key 및 store it as a secret만 있으면 됩니다. 그런 다음 send the HTTP request에 대한 서버 함수를 만들고 날씨 데이터를 다시 가져올 수 있습니다.
`@anvil.server.callable
def get_north_pole_weather():
resp = anvil.http.request(f"http://dataservice.accuweather.com/currentconditions/v1/336714?apikey={anvil.secrets.get_secret('accuweather_key')}", json=True)
return resp[0]
그런 다음 client-side Python에서 레이블의 표시 텍스트와 같은 각 프런트 엔드 구성 요소의 속성을 설정하여 날씨 데이터를 표시할 수 있습니다.
...
self.weather_description.text = weather_data['WeatherText']
self.temperature_celsius.text = str(weather_data['Temperature']['Metric']['Value']) + "°C"
...
그게 전부입니다! 이제 북극의 날씨를 확인할 수 있는 앱이 생겼습니다.
출처 보기
소스코드를 직접 확인해보세요!
Clone Link
Reference
이 문제에 관하여(1일 파이썬 빌드: 북극의 날씨는 어떻습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/codingwithryan/1-day-python-build-whats-the-weather-at-the-north-pole-2f31
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
This blog post is part of Anvil's Advent Calendar, a project where we build 24 apps in 24 days, and blog about it! That means this app was built in only a few hours; read on to see what our 8th of December app is.
`@anvil.server.callable
def get_north_pole_weather():
resp = anvil.http.request(f"http://dataservice.accuweather.com/currentconditions/v1/336714?apikey={anvil.secrets.get_secret('accuweather_key')}", json=True)
return resp[0]
...
self.weather_description.text = weather_data['WeatherText']
self.temperature_celsius.text = str(weather_data['Temperature']['Metric']['Value']) + "°C"
...
Reference
이 문제에 관하여(1일 파이썬 빌드: 북극의 날씨는 어떻습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codingwithryan/1-day-python-build-whats-the-weather-at-the-north-pole-2f31텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)