Advertisement
RyuuzakiJulio

Weather

Jan 3rd, 2016
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.21 KB | None | 0 0
  1. --http.request("http://api.openweathermap.org/data/2.5/weather?lat=34.66&lon=135.46&appid=2de143494c0b295cca9337e1e96b00e0")
  2.  
  3.  
  4.  --http.request("http://api.openweathermap.org/data/2.5/weather?lat=34.663818&lon=135.460693&mode=xml&appid=2de143494c0b295cca9337e1e96b00e0")
  5.  
  6.  http.request("http://api.openweathermap.org/data/2.5/weather?lat=28.72&lon=-100.56&units=metric&appid=2de143494c0b295cca9337e1e96b00e0")
  7.  
  8.  
  9.  local requesting = true
  10.  
  11.  while requesting do
  12.  
  13.   local event, url, sourceText = os.pullEvent()
  14.   if event == "http_success" then
  15.   print("Server Responce:")
  16.   local respondedText = sourceText.readAll()
  17.   print(respondedText)
  18.  
  19.   --textutils.serialize(respondedText)
  20.  
  21.   n1 = string.find(respondedText, "name")
  22.   n2 = string.find(respondedText, "cod")
  23.  
  24.   locationName = string.sub(respondedText, n1+7, n2-4)
  25.  
  26.  
  27.   print("The weather in " .. locationName .. " is:")
  28.  
  29.  
  30.   p = string.find(respondedText, "main")
  31.   e = string.find(respondedText, "description")
  32.   weather = string.sub(respondedText, p+7, e-4)
  33.  
  34.  
  35.  
  36.   print(weather)
  37.  
  38.   r = string.find(respondedText, "icon")
  39.  
  40.   desc = string.sub(respondedText, e+14, r-4)
  41.  
  42.   print(desc)
  43.   --break;
  44.   end
  45.  
  46.  
  47.  end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement