Thanks.
I was able to retrieve the data:
#The CSV format is in following way:-
#First row contains the current weather condition. If for any reason we do not have current condition it will have 'Not Available'.
#The current weather condition data is laid in the following way:-
#observation_time,temp_C,temp_F,weatherCode,weatherIconUrl,weatherDesc,windspeedMiles,windspeedKmph,winddirDegree,winddir16Point,precipMM,humidity,visibilityKm,pressureMB,cloudcover
#
#The day information is available in following format:-
#date,maxtempC,maxtempF,mintempC,mintempF,sunrise,sunset,moonrise,moonset,moon_phase,moon_illumination
#
#Hourly information follows below the day in the following way:-
#date,time,tempC,tempF,windspeedMiles,windspeedKmph,winddirdegree,winddir16point,weatherCode,weatherIconUrl,weatherDesc,precipMM,humidity,visibilityKm,pressureMB,cloudcover,HeatIndexC,HeatIndexF,DewPointC,DewPointF,WindChillC,WindChillF,WindGustMiles,WindGustKmph,FeelsLikeC,FeelsLikeF,chanceofrain,chanceofremdry,chanceofwindy,chanceofovercast,chanceofsunshine,chanceoffrost,chanceofhightemp,chanceoffog,chanceofsnow,chanceofthunder
#
07:57 AM,12,54,116,
http://cdn.worldweatheronline.net/image ... png,Partly cloudy,4,7,130,SE,7.0,100,16,1023,50
2018-06-20,21,70,10,50,05:31 AM,08:30 PM,01:17 PM,01:16 AM,First Quarter,34
2018-06-20,0,12,54,3,5,357,N,356,
http://cdn.worldweatheronline.net/image ... g,Moderate or heavy rain shower,7.0,96,16,1016,86,13,55,12,54,13,55,7,11,13,55,96,0,0,90,0,0,0,0,0,90
2018-06-20,300,11,52,5,8,273,W,299,
http://cdn.worldweatheronline.net/image ... g,Moderate rain at times,0.7,95,19,1016,77,12,54,11,52,12,54,9,15,12,54,66,0,0,87,0,0,0,0,0,7
2018-06-20,600,10,50,4,6,278,W,299,
http://cdn.worldweatheronline.net/image ... g,Moderate rain at times,0.7,94,18,1016,74,11,52,11,52,11,52,8,13,11,52,68,0,0,94,0,0,0,0,0,0
2018-06-20,900,15,59,5,8,323,NW,116,
http://cdn.worldweatheronline.net/image ... png,Partly cloudy,0.0,77,20,1016,5,16,61,12,54,16,61,7,12,16,61,0,89,0,44,77,0,0,0,0,0
2018-06-20,1200,19,67,10,15,30,NNE,116,
http://cdn.worldweatheronline.net/image ... png,Partly cloudy,0.0,47,20,1015,8,20,68,9,48,20,68,12,19,20,68,0,83,0,43,80,0,0,0,0,0
2018-06-20,1500,21,70,10,16,19,NNE,116,
http://cdn.worldweatheronline.net/image ... png,Partly cloudy,0.0,46,20,1013,7,22,72,9,48,22,72,12,19,22,72,0,89,0,42,77,0,16,0,0,0
2018-06-20,1800,20,68,11,18,13,NNE,116,
http://cdn.worldweatheronline.net/image ... png,Partly cloudy,0.0,40,20,1014,12,21,70,7,45,21,70,18,28,21,70,0,80,0,31,79,0,0,0,0,0
2018-06-20,2100,16,61,9,14,11,N,116,
http://cdn.worldweatheronline.net/image ... png,Partly cloudy,0.0,67,19,1014,12,17,63,11,52,17,63,10,17,17,63,0,84,0,35,86,0,0,0,0,0
I only need the time, max temp *F, and the sky condition .png
How would I go about retrieving only those?