Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --http.request("http://api.openweathermap.org/data/2.5/weather?lat=34.66&lon=135.46&appid=2de143494c0b295cca9337e1e96b00e0")
- --http.request("http://api.openweathermap.org/data/2.5/weather?lat=34.663818&lon=135.460693&mode=xml&appid=2de143494c0b295cca9337e1e96b00e0")
- http.request("http://api.openweathermap.org/data/2.5/weather?lat=28.72&lon=-100.56&units=metric&appid=2de143494c0b295cca9337e1e96b00e0")
- local requesting = true
- while requesting do
- local event, url, sourceText = os.pullEvent()
- if event == "http_success" then
- print("Server Responce:")
- local respondedText = sourceText.readAll()
- print(respondedText)
- --textutils.serialize(respondedText)
- n1 = string.find(respondedText, "name")
- n2 = string.find(respondedText, "cod")
- locationName = string.sub(respondedText, n1+7, n2-4)
- print("The weather in " .. locationName .. " is:")
- p = string.find(respondedText, "main")
- e = string.find(respondedText, "description")
- weather = string.sub(respondedText, p+7, e-4)
- print(weather)
- r = string.find(respondedText, "icon")
- desc = string.sub(respondedText, e+14, r-4)
- print(desc)
- --break;
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement