利用google天氣api獲取最近的天氣

2021-06-02 16:44:57 字數 1132 閱讀 1549

weather = ""

dim url,xml,xmldom,oitem,link,title,dateandtime,ncontent

url="ig/api?hl=zh-cn&weather=seoul"

'microsoft.xmlhttp物件,能夠完成從資料報到request物件的轉換以及傳送任務

'利用microsoft.xmldom物件對獲取到的xml物件進行分析。

set xmldom = server.createobject("microsoft.xmldom")

xmldom.async=false

xmldom.validateonparse=false

xmldom.load(xml.respon***ml)

'response.write(xmldom.readystate)

if xmldom.readystate>2 then

set oitem=xmldom.getelementsbytagname("forecast_conditions")

for i=0 to 2

low_data = oitem(i).childnodes(1).attributes.item(0).text

high_data = oitem(i).childnodes(2).attributes.item(0).text

icon_data = weather&oitem(i).childnodes(3).attributes.item(0).text

condition = oitem(i).childnodes(4).attributes.item(0).text

select case i  

case "0"

showday = "今天"

case "1"

showday = "明天"

case "2"

showday = "後天"  

end select

%>

next

end if

%>

Python呼叫API獲取天氣

此程式需要easygui模組,請使用pip install easygui 已知天氣 獲取天氣介面為 城市名,你知道 咋寫嗎?匯入包 from requests import get from easygui import enterbox,msgbox 獲取今天天氣的函式 defgettoday ...

天氣api介面

api位址 get引數 引數型別 必填備註 version string 是介面標識,固定值 v6 cityid string 否城市id,請參考 城市id列表 city string 否城市名稱,不要帶市和區 如 青島,微山 ipstring 否ip所在城市天氣,預設返回當前ip地區天氣 call...

免費天氣API

中國天氣網 包含實時氣溫,感冒指數,未來七天天氣 風力,風向,高低溫,時間 空氣質素指數 有的城市沒有 城市名稱 北京通過城市名字獲得天氣資料,json資料 通過城市id獲得天氣資料,json資料 包含實時天氣,日出日落,空氣質素 某些城市可能不存在 天氣預警 預警時存在 昨日天氣 分白天黑夜 未來...