Randomly select at least 1000 unique (non-repeat) cities based on latitude and longitude. And perform a weather check on each of the cities using a series of successive API calls
First we’ll create a empty set to hold our city names, python sets do not accept duplicate datapoints which means we don’t have to check for duplicates later. longitude ranges from -180 to 180 while latitude ranges from -90 to 90. We use the random library’s uniform function to randomly pick pairings of lat and long values to put into the citipy function. The outputed city names and country codes will be inserted into the set. These same city name, country code pairs are sent to the OpenWeatherMaps API and if a city’s weather report is found, (https status code 200) it’ll be stored in the weather list. We’ll put this all under a while loop to keep on generating coordinates and cities until we fill up our weather list with 1000 unique values.
from citipy import citipy
from random import uniform # Draw samples from a uniform distribution
import requests
from pprint import pprint
from config import key
url = 'http://api.openweathermap.org/data/2.5/weather?'
cities = list()
weather = list()
duplicate_cities = list()
weatherless_cities = set()
while len(weather) < 1001:
# generate a 1000 unique latitude and longitude values
long = round(uniform(-180,180), 3) #longitude ranges from -180 to 180
lat = round(uniform(-90, 90), 3) #latitude ranges from -90 to 90
#feed into citipy the lat, long coordinates to return as city object
city = citipy.nearest_city(lat, long)
city_name = city.city_name
country_code = city.country_code
# add the city and it's country code to the cities set
city_entry = f"{city_name},{country_code}"
if city_entry not in cities:
cities.add(city_entry)
print(f"city generated: {city_entry}")
payload = url + f"{city}"
keyed_payload = url + "appid=" + key + "&q=" + city_entry + "?" + "&units=metric"
print(f"processing request for {payload}")
response = requests.get(keyed_payload)
weather_json = response.json()
print("associated weather data: \n")
pprint(weather_json)
if weather_json['cod'] == 200:
weather.append(weather_json)
elif weather_json['cod'] == 404:
weatherless_cities.add(city_entry)
else:
pass
else:
print(f"duplicate city: {city_entry}")
duplicate_cities.append(city_entry)
city generated: thompson,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BCC128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 55.74, 'lon': -97.86},
'dt': 1520398800,
'id': 6165406,
'main': {'humidity': 71,
'pressure': 1025,
'temp': -14,
'temp_max': -14,
'temp_min': -14},
'name': 'Thompson',
'sys': {'country': 'CA',
'id': 3406,
'message': 0.0033,
'sunrise': 1520427985,
'sunset': 1520468359,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 50, 'speed': 1}}
city generated: castro,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C23898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -42.48, 'lon': -73.76},
'dt': 1520400018,
'id': 3896218,
'main': {'grnd_level': 1012.16,
'humidity': 96,
'pressure': 1012.16,
'sea_level': 1026.65,
'temp': 10.48,
'temp_max': 10.48,
'temp_min': 10.48},
'name': 'Castro',
'sys': {'country': 'CL',
'message': 0.0034,
'sunrise': 1520419357,
'sunset': 1520465309},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 230.001, 'speed': 1.51}}
city generated: kodiak,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CBA90>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 39.95, 'lon': -94.76},
'dt': 1520394780,
'id': 4407665,
'main': {'humidity': 61,
'pressure': 1021,
'temp': 0,
'temp_max': 0,
'temp_min': 0},
'name': 'Kodiak',
'sys': {'country': 'US',
'id': 1664,
'message': 0.0369,
'sunrise': 1520426563,
'sunset': 1520468266,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 320, 'speed': 8.2}}
city generated: rikitea,pf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9DFEF0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: busselton,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199521D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': -33.64, 'lon': 115.35},
'dt': 1520400020,
'id': 2075265,
'main': {'grnd_level': 1025.69,
'humidity': 80,
'pressure': 1025.69,
'sea_level': 1026.89,
'temp': 24.98,
'temp_max': 24.98,
'temp_min': 24.98},
'name': 'Busselton',
'sys': {'country': 'AU',
'message': 0.0034,
'sunrise': 1520374286,
'sunset': 1520419636},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 229.501, 'speed': 4.66}}
city generated: niamtougou,tg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B19F978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 9.77, 'lon': 1.11},
'dt': 1520400020,
'id': 2364812,
'main': {'grnd_level': 980.14,
'humidity': 73,
'pressure': 980.14,
'sea_level': 1022.79,
'temp': 23.48,
'temp_max': 23.48,
'temp_min': 23.48},
'name': 'Niamtougou',
'sys': {'country': 'TG',
'message': 0.0057,
'sunrise': 1520402806,
'sunset': 1520445983},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 198.501, 'speed': 2.86}}
city generated: hilo,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B36B1D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 19.71, 'lon': -155.08},
'dt': 1520398560,
'id': 5855927,
'main': {'humidity': 88,
'pressure': 1016,
'temp': 15.63,
'temp_max': 20,
'temp_min': 12},
'name': 'Hilo',
'sys': {'country': 'US',
'id': 818,
'message': 0.0036,
'sunrise': 1520440494,
'sunset': 1520483263,
'type': 1},
'visibility': 11265,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 300, 'speed': 4.1}}
duplicate city: busselton,au
city generated: belushya guba,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AED96D8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: bengkulu,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A255240>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: lompoc,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2FB3C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 34.64, 'lon': -120.46},
'dt': 1520398680,
'id': 5367788,
'main': {'humidity': 57,
'pressure': 1018,
'temp': 10.86,
'temp_max': 12,
'temp_min': 9},
'name': 'Lompoc',
'sys': {'country': 'US',
'id': 410,
'message': 0.0037,
'sunrise': 1520432564,
'sunset': 1520474593,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 80, 'speed': 1.5}}
city generated: punta arenas,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C2A160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -53.16, 'lon': -70.91},
'dt': 1520395200,
'id': 3874787,
'main': {'humidity': 81,
'pressure': 990,
'temp': 12,
'temp_max': 12,
'temp_min': 12},
'name': 'Punta Arenas',
'sys': {'country': 'CL',
'id': 4642,
'message': 0.0037,
'sunrise': 1520418088,
'sunset': 1520465188,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 300, 'speed': 8.7}}
city generated: ranau,my
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8D20F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 5.95, 'lon': 116.67},
'dt': 1520400022,
'id': 1733502,
'main': {'grnd_level': 935.88,
'humidity': 53,
'pressure': 935.88,
'sea_level': 1020.97,
'temp': 28.68,
'temp_max': 28.68,
'temp_min': 28.68},
'name': 'Ranau',
'sys': {'country': 'MY',
'message': 0.0031,
'sunrise': 1520374996,
'sunset': 1520418330},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 267.501, 'speed': 0.51}}
city generated: pangoa,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9CD4A8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: hermanus,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6C1470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -34.42, 'lon': 19.24},
'dt': 1520400023,
'id': 3366880,
'main': {'grnd_level': 987.68,
'humidity': 95,
'pressure': 987.68,
'sea_level': 1027.13,
'temp': 17.2,
'temp_max': 17.2,
'temp_min': 17.2},
'name': 'Hermanus',
'rain': {'3h': 0.305},
'sys': {'country': 'ZA',
'message': 0.0038,
'sunrise': 1520397338,
'sunset': 1520442708},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 131.501, 'speed': 1.76}}
city generated: longyearbyen,sj
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B158B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 78.22, 'lon': 15.63},
'dt': 1520398200,
'id': 2729907,
'main': {'humidity': 65,
'pressure': 1026,
'temp': -15,
'temp_max': -15,
'temp_min': -15},
'name': 'Longyearbyen',
'sys': {'country': 'NO',
'id': 5326,
'message': 0.005,
'sunrise': 1520404432,
'sunset': 1520437566,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 110, 'speed': 6.2}}
city generated: souillac,mu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7BCEB8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 45.6, 'lon': -0.6},
'dt': 1520398800,
'id': 3026644,
'main': {'humidity': 93,
'pressure': 998,
'temp': 5,
'temp_max': 5,
'temp_min': 5},
'name': 'Souillac',
'sys': {'country': 'FR',
'id': 5528,
'message': 0.0037,
'sunrise': 1520404194,
'sunset': 1520445454,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 180, 'speed': 5.7}}
city generated: hobart,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19958588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -42.88, 'lon': 147.33},
'dt': 1520398800,
'id': 2163355,
'main': {'humidity': 64,
'pressure': 1026,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'Hobart',
'sys': {'country': 'AU',
'id': 8195,
'message': 0.0045,
'sunrise': 1520366233,
'sunset': 1520412328,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 170, 'speed': 7.2}}
city generated: faanui,pf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9DDC50>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: bredasdorp,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6BD198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': -34.53, 'lon': 20.04},
'dt': 1520398800,
'id': 1015776,
'main': {'humidity': 83,
'pressure': 1013,
'temp': 21,
'temp_max': 21,
'temp_min': 21},
'name': 'Bredasdorp',
'sys': {'country': 'ZA',
'id': 6591,
'message': 0.0043,
'sunrise': 1520397142,
'sunset': 1520442520,
'type': 1},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 220, 'speed': 2.6}}
city generated: geraldton,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B89E10>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 49.72, 'lon': -86.95},
'dt': 1520398800,
'id': 5960603,
'main': {'humidity': 77,
'pressure': 1018,
'temp': -14,
'temp_max': -14,
'temp_min': -14},
'name': 'Geraldton',
'sys': {'country': 'CA',
'id': 3656,
'message': 0.0034,
'sunrise': 1520425063,
'sunset': 1520466033,
'type': 1},
'visibility': 4828,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 20, 'gust': 7.7, 'speed': 5.1}}
city generated: port hedland,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199627F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -20.31, 'lon': 118.58},
'dt': 1520398800,
'id': 2063042,
'main': {'humidity': 28,
'pressure': 1005,
'temp': 40,
'temp_max': 40,
'temp_min': 40},
'name': 'Port Hedland',
'sys': {'country': 'AU',
'id': 8219,
'message': 0.0034,
'sunrise': 1520373917,
'sunset': 1520418470,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 20, 'speed': 5.1}}
city generated: ancud,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C1EC50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -41.87, 'lon': -73.83},
'dt': 1520400026,
'id': 3899695,
'main': {'grnd_level': 1018.72,
'humidity': 89,
'pressure': 1018.72,
'sea_level': 1026.28,
'temp': 12.4,
'temp_max': 12.4,
'temp_min': 12.4},
'name': 'Ancud',
'sys': {'country': 'CL',
'message': 0.0037,
'sunrise': 1520419401,
'sunset': 1520465300},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 214.501, 'speed': 1.26}}
city generated: kijang,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A267C88>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
city generated: yialos,gr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A143C50>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: saint-joseph,re
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACE8EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 43.56, 'lon': 6.97},
'dt': 1520398800,
'id': 3037456,
'main': {'humidity': 61,
'pressure': 996,
'temp': 7.65,
'temp_max': 8,
'temp_min': 7},
'name': 'Saint-Joseph',
'sys': {'country': 'FR',
'id': 5579,
'message': 0.0044,
'sunrise': 1520402301,
'sunset': 1520443711,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'speed': 1.5}}
city generated: kruisfontein,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6C6240>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: atuona,pf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9DDA58>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: thompson,ca
duplicate city: atuona,pf
city generated: verkhnevilyuysk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0E84A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 63.45, 'lon': 120.31},
'dt': 1520400029,
'id': 2013639,
'main': {'grnd_level': 1024.07,
'humidity': 56,
'pressure': 1024.07,
'sea_level': 1042.78,
'temp': -20.78,
'temp_max': -20.78,
'temp_min': -20.78},
'name': 'Verkhnevilyuysk',
'sys': {'country': 'RU',
'message': 0.0029,
'sunrise': 1520376310,
'sunset': 1520415351},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 299.501, 'speed': 2.06}}
city generated: samusu,ws
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6B3278>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: vaini,to
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1DD780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 15.34, 'lon': 74.49},
'dt': 1520400030,
'id': 1273574,
'main': {'grnd_level': 959.87,
'humidity': 29,
'pressure': 959.87,
'sea_level': 1024.17,
'temp': 32.28,
'temp_max': 32.28,
'temp_min': 32.28},
'name': 'Vaini',
'sys': {'country': 'IN',
'message': 0.0028,
'sunrise': 1520385326,
'sunset': 1520428251},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 145.501, 'speed': 2.06}}
city generated: sydney mines,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BC87F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
city generated: kapaa,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B36B5F8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: atuona,pf
city generated: georgetown,sh
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1493C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 6.8, 'lon': -58.16},
'dt': 1520395200,
'id': 3378644,
'main': {'humidity': 94,
'pressure': 1013,
'temp': 25,
'temp_max': 25,
'temp_min': 25},
'name': 'Georgetown',
'sys': {'country': 'GY',
'id': 4343,
'message': 0.0033,
'sunrise': 1520416962,
'sunset': 1520460270,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 70, 'speed': 2.1}}
city generated: tabou,ci
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C1E390>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 4.42, 'lon': -7.36},
'dt': 1520400031,
'id': 2281120,
'main': {'grnd_level': 1022.69,
'humidity': 97,
'pressure': 1022.69,
'sea_level': 1023.77,
'temp': 27.2,
'temp_max': 27.2,
'temp_min': 27.2},
'name': 'Tabou',
'sys': {'country': 'CI',
'message': 0.0031,
'sunrise': 1520404722,
'sunset': 1520448128},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 189.501, 'speed': 3.21}}
city generated: solnechnyy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B08B940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 50.72, 'lon': 136.64},
'dt': 1520400032,
'id': 2016307,
'main': {'grnd_level': 1017.59,
'humidity': 51,
'pressure': 1017.59,
'sea_level': 1039.98,
'temp': -9.98,
'temp_max': -9.98,
'temp_min': -9.98},
'name': 'Solnechnyy',
'sys': {'country': 'RU',
'message': 0.0034,
'sunrise': 1520371527,
'sunset': 1520412265},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 271.001, 'speed': 4.01}}
city generated: chuy,uy
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6E3A58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -33.69, 'lon': -53.46},
'dt': 1520400032,
'id': 3443061,
'main': {'grnd_level': 1025.69,
'humidity': 83,
'pressure': 1025.69,
'sea_level': 1027.29,
'temp': 18.65,
'temp_max': 18.65,
'temp_min': 18.65},
'name': 'Chuy',
'sys': {'country': 'UY',
'message': 0.0033,
'sunrise': 1520414822,
'sunset': 1520460115},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 207.501, 'speed': 4.76}}
city generated: cape town,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6BD780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -33.93, 'lon': 18.42},
'dt': 1520395200,
'id': 3369157,
'main': {'humidity': 88,
'pressure': 1012,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'Cape Town',
'sys': {'country': 'ZA',
'id': 6529,
'message': 0.0036,
'sunrise': 1520397553,
'sunset': 1520442888,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 190, 'speed': 7.7}}
city generated: cabadiangan,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AA556A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 10.45, 'lon': 123.98},
'dt': 1520395200,
'id': 1717512,
'main': {'humidity': 55,
'pressure': 1010,
'temp': 31,
'temp_max': 31,
'temp_min': 31},
'name': 'Cabadiangan',
'sys': {'country': 'PH',
'id': 7737,
'message': 0.0037,
'sunrise': 1520373343,
'sunset': 1520416479,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 40, 'speed': 5.7}}
city generated: lorengau,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E5BA8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: butaritari,ki
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A717400>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: mataura,pf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9DF5C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -46.19, 'lon': 168.86},
'dt': 1520400034,
'id': 6201424,
'main': {'grnd_level': 1016.21,
'humidity': 71,
'pressure': 1016.21,
'sea_level': 1031.27,
'temp': 15.05,
'temp_max': 15.05,
'temp_min': 15.05},
'name': 'Mataura',
'sys': {'country': 'NZ',
'message': 0.0037,
'sunrise': 1520360896,
'sunset': 1520407325},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 238.001, 'speed': 4.81}}
city generated: avera,pf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9DDB70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 33.19, 'lon': -82.53},
'dt': 1520398500,
'id': 4231997,
'main': {'humidity': 100,
'pressure': 1011,
'temp': 10.41,
'temp_max': 13,
'temp_min': 9},
'name': 'Avera',
'sys': {'country': 'US',
'id': 783,
'message': 0.0036,
'sunrise': 1520423428,
'sunset': 1520465524,
'type': 1},
'visibility': 402,
'weather': [{'description': 'fog', 'icon': '50n', 'id': 741, 'main': 'Fog'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 284.001, 'speed': 3.31}}
duplicate city: mataura,pf
city generated: karaul,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF55BA8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: anito,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9FD5F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 12.45, 'lon': 125.29},
'dt': 1520400035,
'id': 1730622,
'main': {'grnd_level': 1021.8,
'humidity': 95,
'pressure': 1021.8,
'sea_level': 1022.67,
'temp': 28.4,
'temp_max': 28.4,
'temp_min': 28.4},
'name': 'Anito',
'sys': {'country': 'PH',
'message': 0.0035,
'sunrise': 1520373074,
'sunset': 1520416121},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 59.5009, 'speed': 6.91}}
city generated: clyde river,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B7DCC0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
city generated: khatanga,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF62DD8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 71.98, 'lon': 102.47},
'dt': 1520400036,
'id': 2022572,
'main': {'grnd_level': 1036.96,
'humidity': 70,
'pressure': 1036.96,
'sea_level': 1042.37,
'temp': -30.7,
'temp_max': -30.7,
'temp_min': -30.7},
'name': 'Khatanga',
'sys': {'country': 'RU',
'message': 0.0035,
'sunrise': 1520381768,
'sunset': 1520418495},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 65.0009, 'speed': 4.21}}
duplicate city: busselton,au
city generated: albany,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1994CC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 42.65, 'lon': -73.75},
'dt': 1520398440,
'id': 5106834,
'main': {'humidity': 59,
'pressure': 1015,
'temp': 1.15,
'temp_max': 3,
'temp_min': 0},
'name': 'Albany',
'sys': {'country': 'US',
'id': 2088,
'message': 0.0038,
'sunrise': 1520421618,
'sunset': 1520463131,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 150, 'speed': 4.6}}
city generated: puerto ayora,ec
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19EE6DD8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: bethel,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CB4E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 60.79, 'lon': -161.76},
'dt': 1520398380,
'id': 5880568,
'main': {'humidity': 100,
'pressure': 1013,
'temp': -1,
'temp_max': -1,
'temp_min': -1},
'name': 'Bethel',
'sys': {'country': 'US',
'id': 28,
'message': 0.0036,
'sunrise': 1520443627,
'sunset': 1520483397,
'type': 1},
'visibility': 11265,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 220, 'speed': 6.2}}
city generated: vila,vu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6AE780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 45.18, 'lon': 8.4},
'dt': 1520398500,
'id': 3164565,
'main': {'humidity': 93,
'pressure': 996,
'temp': 4.5,
'temp_max': 6,
'temp_min': 3},
'name': 'Vila',
'sys': {'country': 'IT',
'id': 5801,
'message': 0.0036,
'sunrise': 1520402020,
'sunset': 1520443308,
'type': 1},
'visibility': 2000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 15.5009, 'speed': 1.41}}
city generated: barawe,so
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B17BE10>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: bambous virieux,mu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7B15F8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: faya,td
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B199EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 18.39, 'lon': 42.45},
'dt': 1520395200,
'id': 110690,
'main': {'humidity': 76,
'pressure': 1027,
'temp': 11.96,
'temp_max': 13,
'temp_min': 11},
'name': 'Faya',
'sys': {'country': 'SA',
'id': 6975,
'message': 0.0038,
'sunrise': 1520393082,
'sunset': 1520435875,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 96.0009, 'speed': 1.66}}
city generated: pevek,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B02FF28>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 69.7, 'lon': 170.27},
'dt': 1520400040,
'id': 2122090,
'main': {'grnd_level': 1025.85,
'humidity': 80,
'pressure': 1025.85,
'sea_level': 1034.02,
'temp': -27.93,
'temp_max': -27.93,
'temp_min': -27.93},
'name': 'Pevek',
'sys': {'country': 'RU',
'message': 0.0029,
'sunrise': 1520365137,
'sunset': 1520402574},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 352.501, 'speed': 0.96}}
city generated: airai,pw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACCEA58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': -8.93, 'lon': 125.41},
'dt': 1520400040,
'id': 1651810,
'main': {'grnd_level': 942.85,
'humidity': 100,
'pressure': 942.85,
'sea_level': 1019.11,
'temp': 23.08,
'temp_max': 23.08,
'temp_min': 23.08},
'name': 'Airai',
'rain': {'3h': 6.83},
'sys': {'country': 'TL',
'message': 0.0045,
'sunrise': 1520372562,
'sunset': 1520416557},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 301.001, 'speed': 0.96}}
city generated: touros,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B444A8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vaini,to
city generated: taolanaro,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A783160>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: dikson,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF0BC18>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: ushuaia,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992E160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -54.81, 'lon': -68.31},
'dt': 1520395200,
'id': 3833367,
'main': {'humidity': 71,
'pressure': 988,
'temp': 11,
'temp_max': 11,
'temp_min': 11},
'name': 'Ushuaia',
'sys': {'country': 'AR',
'id': 4754,
'message': 0.0041,
'sunrise': 1520417345,
'sunset': 1520464678,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 360, 'speed': 6.7}}
city generated: kamenskoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF4FD68>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: jumla,np
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9782E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 29.28, 'lon': 82.18},
'dt': 1520400043,
'id': 1283285,
'main': {'grnd_level': 683.22,
'humidity': 50,
'pressure': 683.22,
'sea_level': 1026.12,
'temp': 3.13,
'temp_max': 3.13,
'temp_min': 3.13},
'name': 'Jumla',
'sys': {'country': 'NP',
'message': 0.0072,
'sunrise': 1520383823,
'sunset': 1520426077},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 57.5009, 'speed': 0.96}}
duplicate city: hobart,au
duplicate city: albany,au
duplicate city: ushuaia,ar
city generated: chokurdakh,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF055C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 70.62, 'lon': 147.9},
'dt': 1520400043,
'id': 2126123,
'main': {'grnd_level': 1040.93,
'humidity': 56,
'pressure': 1040.93,
'sea_level': 1043.34,
'temp': -28.33,
'temp_max': -28.33,
'temp_min': -28.33},
'name': 'Chokurdakh',
'sys': {'country': 'RU',
'message': 0.004,
'sunrise': 1520370645,
'sunset': 1520407807},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 6.50095, 'speed': 3.11}}
city generated: attawapiskat,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B6E160>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: mar del plata,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19927F28>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -46.43, 'lon': -67.52},
'dt': 1520400044,
'id': 3863379,
'main': {'grnd_level': 997,
'humidity': 50,
'pressure': 997,
'sea_level': 1017.97,
'temp': 21.13,
'temp_max': 21.13,
'temp_min': 21.13},
'name': 'Mar del Plata',
'sys': {'country': 'AR',
'message': 0.0029,
'sunrise': 1520417671,
'sunset': 1520463994},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 280.501, 'speed': 8.36}}
duplicate city: khatanga,ru
city generated: barrow,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CB400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -38.31, 'lon': -60.23},
'dt': 1520400044,
'id': 3833859,
'main': {'grnd_level': 1017.59,
'humidity': 74,
'pressure': 1017.59,
'sea_level': 1029.73,
'temp': 10.15,
'temp_max': 10.15,
'temp_min': 10.15},
'name': 'Barrow',
'sys': {'country': 'AR',
'message': 0.0033,
'sunrise': 1520416280,
'sunset': 1520461900},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 30.0009, 'speed': 2.31}}
duplicate city: bredasdorp,za
city generated: adrar,dz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19ED9A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 27.87, 'lon': -0.29},
'dt': 1520395200,
'id': 2508813,
'main': {'humidity': 33,
'pressure': 1008,
'temp': 17,
'temp_max': 17,
'temp_min': 17},
'name': 'Adrar',
'sys': {'country': 'DZ',
'id': 6220,
'message': 0.0044,
'sunrise': 1520403564,
'sunset': 1520445914,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 180, 'speed': 3.1}}
duplicate city: mataura,pf
city generated: husavik,is
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A490048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 50.56, 'lon': -96.99},
'dt': 1520400045,
'id': 5961417,
'main': {'grnd_level': 1006.73,
'humidity': 65,
'pressure': 1006.73,
'sea_level': 1039.41,
'temp': -16.13,
'temp_max': -16.13,
'temp_min': -16.13},
'name': 'Husavik',
'sys': {'country': 'CA',
'message': 0.0039,
'sunrise': 1520427507,
'sunset': 1520468409},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 328.001, 'speed': 1.86}}
duplicate city: kodiak,us
city generated: qaanaaq,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A093CF8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: wewak,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E8908>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: yellowknife,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BD5E48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 62.45, 'lon': -114.38},
'dt': 1520398800,
'id': 6185377,
'main': {'humidity': 92,
'pressure': 1020,
'temp': -15,
'temp_max': -15,
'temp_min': -15},
'name': 'Yellowknife',
'sys': {'country': 'CA',
'id': 3558,
'message': 0.0041,
'sunrise': 1520432414,
'sunset': 1520471876,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 310, 'speed': 3.1}}
city generated: ndende,ga
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FFBDA0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: sibolga,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A280208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 1.74, 'lon': 98.78},
'dt': 1520400047,
'id': 1213855,
'main': {'grnd_level': 941.88,
'humidity': 95,
'pressure': 941.88,
'sea_level': 1022.35,
'temp': 24.48,
'temp_max': 24.48,
'temp_min': 24.48},
'name': 'Sibolga',
'rain': {'3h': 0.895},
'sys': {'country': 'ID',
'message': 0.0037,
'sunrise': 1520379195,
'sunset': 1520422714},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 166.001, 'speed': 1.06}}
duplicate city: belushya guba,ru
city generated: ahipara,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A97B128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -35.17, 'lon': 173.16},
'dt': 1520400047,
'id': 2194098,
'main': {'grnd_level': 1004.46,
'humidity': 100,
'pressure': 1004.46,
'sea_level': 1017.57,
'temp': 18.33,
'temp_max': 18.33,
'temp_min': 18.33},
'name': 'Ahipara',
'sys': {'country': 'NZ',
'message': 0.0036,
'sunrise': 1520360349,
'sunset': 1520405827},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 266.501, 'speed': 4.11}}
city generated: ust-koksa,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0DC400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 50.27, 'lon': 85.62},
'dt': 1520400047,
'id': 1488167,
'main': {'grnd_level': 836.58,
'humidity': 71,
'pressure': 836.58,
'sea_level': 1028.27,
'temp': 2.53,
'temp_max': 2.53,
'temp_min': 2.53},
'name': 'Ust-Koksa',
'sys': {'country': 'RU',
'message': 0.0044,
'sunrise': 1520383732,
'sunset': 1520424545},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 211.001, 'speed': 2.06}}
city generated: broken hill,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19950C18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -31.97, 'lon': 141.45},
'dt': 1520400048,
'id': 2173911,
'main': {'grnd_level': 999.35,
'humidity': 27,
'pressure': 999.35,
'sea_level': 1030.41,
'temp': 30.33,
'temp_max': 30.33,
'temp_min': 30.33},
'name': 'Broken Hill',
'sys': {'country': 'AU',
'message': 0.0035,
'sunrise': 1520368077,
'sunset': 1520413322},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 103.501, 'speed': 7.56}}
city generated: sitka,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CBD30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 37.17, 'lon': -99.65},
'dt': 1520400048,
'id': 4267710,
'main': {'grnd_level': 964.25,
'humidity': 37,
'pressure': 964.25,
'sea_level': 1041.8,
'temp': 2.13,
'temp_max': 2.13,
'temp_min': 2.13},
'name': 'Sitka',
'sys': {'country': 'US',
'message': 0.0038,
'sunrise': 1520427648,
'sunset': 1520469524},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 3.00095, 'speed': 5.36}}
city generated: quatre cocos,mu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7BC5C0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: kahului,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B36B358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 20.89, 'lon': -156.47},
'dt': 1520398560,
'id': 5847411,
'main': {'humidity': 73,
'pressure': 1016,
'temp': 20.04,
'temp_max': 21,
'temp_min': 18},
'name': 'Kahului',
'sys': {'country': 'US',
'id': 823,
'message': 0.0038,
'sunrise': 1520440854,
'sunset': 1520483571,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 50, 'speed': 4.1}}
city generated: port alfred,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6C9DD8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: busselton,au
city generated: zhanatas,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A728D30>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: puerto ayora,ec
duplicate city: mataura,pf
city generated: umzimvubu,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6CFE10>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
city generated: pangnirtung,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BAC470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 66.15, 'lon': -65.72},
'dt': 1520400051,
'id': 6096551,
'main': {'grnd_level': 1025.45,
'humidity': 55,
'pressure': 1025.45,
'sea_level': 1046.14,
'temp': -20.6,
'temp_max': -20.6,
'temp_min': -20.6},
'name': 'Pangnirtung',
'sys': {'country': 'CA',
'message': 0.0036,
'sunrise': 1520421128,
'sunset': 1520459823},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 303.001, 'speed': 3.01}}
duplicate city: mar del plata,ar
city generated: bluff,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A97B4E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': -23.58, 'lon': 149.07},
'dt': 1520400051,
'id': 2175403,
'main': {'grnd_level': 999.59,
'humidity': 44,
'pressure': 999.59,
'sea_level': 1022.23,
'temp': 31.03,
'temp_max': 31.03,
'temp_min': 31.03},
'name': 'Bluff',
'sys': {'country': 'AU',
'message': 0.003,
'sunrise': 1520366507,
'sunset': 1520411244},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 100.501, 'speed': 8.71}}
city generated: hobyo,so
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B17F7F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: amalapuram,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2BB780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 16.58, 'lon': 82},
'dt': 1520400052,
'id': 1278935,
'main': {'grnd_level': 1025.04,
'humidity': 58,
'pressure': 1025.04,
'sea_level': 1025.63,
'temp': 31.15,
'temp_max': 31.15,
'temp_min': 31.15},
'name': 'Amalapuram',
'sys': {'country': 'IN',
'message': 0.0071,
'sunrise': 1520383553,
'sunset': 1520426421},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 234.001, 'speed': 1.96}}
duplicate city: kodiak,us
duplicate city: albany,au
city generated: nizhneyansk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFF3B70>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: harper,lr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A73C048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 30.3, 'lon': -99.24},
'dt': 1520398500,
'id': 4696310,
'main': {'humidity': 29,
'pressure': 1024,
'temp': 10.66,
'temp_max': 12,
'temp_min': 10},
'name': 'Harper',
'sys': {'country': 'US',
'id': 2613,
'message': 0.0035,
'sunrise': 1520427357,
'sunset': 1520469611,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 20, 'speed': 3.1}}
duplicate city: kodiak,us
duplicate city: puerto ayora,ec
city generated: tautira,pf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E2048>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: busselton,au
city generated: kamenka,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF4F278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 53.19, 'lon': 44.05},
'dt': 1520400054,
'id': 553725,
'main': {'grnd_level': 1006.97,
'humidity': 84,
'pressure': 1006.97,
'sea_level': 1035.48,
'temp': -12.68,
'temp_max': -12.68,
'temp_min': -12.68},
'name': 'Kamenka',
'sys': {'country': 'RU',
'message': 0.0033,
'sunrise': 1520393841,
'sunset': 1520434391},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 145.001, 'speed': 3.66}}
city generated: pangai,to
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1DD7B8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: turkistan,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A728898>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: altus,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6494E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 34.64, 'lon': -99.33},
'dt': 1520398500,
'id': 4529292,
'main': {'humidity': 22,
'pressure': 1026,
'temp': 6.41,
'temp_max': 8,
'temp_min': 4},
'name': 'Altus',
'sys': {'country': 'US',
'id': 2732,
'message': 0.004,
'sunrise': 1520427497,
'sunset': 1520469519,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 20, 'speed': 2.6}}
city generated: saint-augustin,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BB6EB8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 44.83, 'lon': -0.61},
'dt': 1520398800,
'id': 3031582,
'main': {'humidity': 93,
'pressure': 1000,
'temp': 7.1,
'temp_max': 8,
'temp_min': 6},
'name': 'Saint-Augustin',
'rain': {'3h': 0.68},
'sys': {'country': 'FR',
'id': 5525,
'message': 0.0045,
'sunrise': 1520404166,
'sunset': 1520445485,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 190, 'speed': 3.6}}
duplicate city: kapaa,us
duplicate city: albany,au
duplicate city: busselton,au
duplicate city: rikitea,pf
duplicate city: bethel,us
duplicate city: belushya guba,ru
city generated: port keats,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19962898>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
city generated: hithadhoo,mv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7BE748>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mataura,pf
city generated: avarua,ck
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C1EB70>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: dikson,ru
city generated: fukue,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A54B400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 35.03, 'lon': 136.69},
'dt': 1520397180,
'id': 1848373,
'main': {'humidity': 61,
'pressure': 1030,
'temp': 9.56,
'temp_max': 11,
'temp_min': 8},
'name': 'Fukue',
'sys': {'country': 'JP',
'id': 7559,
'message': 0.0044,
'sunrise': 1520370916,
'sunset': 1520412829,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 290, 'speed': 3.1}}
duplicate city: yellowknife,ca
duplicate city: punta arenas,cl
city generated: ola,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0167B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 59.58, 'lon': 151.3},
'dt': 1520397000,
'id': 2122574,
'main': {'humidity': 50,
'pressure': 1001,
'temp': -13,
'temp_max': -13,
'temp_min': -13},
'name': 'Ola',
'sys': {'country': 'RU',
'id': 7243,
'message': 0.0031,
'sunrise': 1520368556,
'sunset': 1520408220,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 340, 'speed': 7}}
duplicate city: cape town,za
city generated: grand-santi,gf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A089780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 4.27, 'lon': -54.38},
'dt': 1520400061,
'id': 3381538,
'main': {'grnd_level': 1008.51,
'humidity': 85,
'pressure': 1008.51,
'sea_level': 1024.5,
'temp': 24.4,
'temp_max': 24.4,
'temp_min': 24.4},
'name': 'Grand-Santi',
'sys': {'country': 'GF',
'message': 0.0036,
'sunrise': 1520416001,
'sunset': 1520459415},
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 46.0009, 'speed': 1.36}}
city generated: santa helena de goias,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B17630>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: albany,au
city generated: ziro,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A46E940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 27.54, 'lon': 93.82},
'dt': 1520397000,
'id': 1252668,
'main': {'humidity': 61,
'pressure': 1016,
'temp': 25,
'temp_max': 25,
'temp_min': 25},
'name': 'Ziro',
'sys': {'country': 'IN',
'id': 7792,
'message': 0.0033,
'sunrise': 1520380986,
'sunset': 1520423326,
'type': 1},
'visibility': 5000,
'weather': [{'description': 'haze', 'icon': '50d', 'id': 721, 'main': 'Haze'}],
'wind': {'deg': 140, 'speed': 1.5}}
duplicate city: puerto ayora,ec
duplicate city: mar del plata,ar
city generated: lagoa,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACAB4A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 37.14, 'lon': -8.45},
'dt': 1520398800,
'id': 2267254,
'main': {'humidity': 93,
'pressure': 1011,
'temp': 7,
'temp_max': 7,
'temp_min': 7},
'name': 'Lagoa',
'sys': {'country': 'PT',
'id': 5948,
'message': 0.0033,
'sunrise': 1520405781,
'sunset': 1520447622,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 30, 'speed': 2.1}}
city generated: provideniya,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B04A588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 64.42, 'lon': -173.23},
'dt': 1520395200,
'id': 4031574,
'main': {'humidity': 68,
'pressure': 1009,
'temp': -4,
'temp_max': -4,
'temp_min': -4},
'name': 'Provideniya',
'sys': {'country': 'RU',
'id': 7239,
'message': 0.0033,
'sunrise': 1520446684,
'sunset': 1520485857,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 360, 'speed': 5}}
city generated: kaitangata,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A980AC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -46.28, 'lon': 169.85},
'dt': 1520400064,
'id': 2208248,
'main': {'grnd_level': 1013.94,
'humidity': 80,
'pressure': 1013.94,
'sea_level': 1030.86,
'temp': 14.58,
'temp_max': 14.58,
'temp_min': 14.58},
'name': 'Kaitangata',
'sys': {'country': 'NZ',
'message': 0.0033,
'sunrise': 1520360654,
'sunset': 1520407093},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 225.501, 'speed': 4.61}}
duplicate city: longyearbyen,sj
city generated: kula,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1F2B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 45.61, 'lon': 19.53},
'dt': 1520398800,
'id': 3196973,
'main': {'humidity': 96,
'pressure': 998,
'temp': 0,
'temp_max': 0,
'temp_min': 0},
'name': 'Kula',
'sys': {'country': 'RS',
'id': 5455,
'message': 0.0174,
'sunrise': 1520399369,
'sunset': 1520440618,
'type': 1},
'visibility': 1000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 200, 'speed': 2.6}}
city generated: belaya gora,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AED54E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 68.54, 'lon': 146.19},
'dt': 1520400065,
'id': 2126785,
'main': {'grnd_level': 1034.45,
'humidity': 74,
'pressure': 1034.45,
'sea_level': 1042.33,
'temp': -27.03,
'temp_max': -27.03,
'temp_min': -27.03},
'name': 'Belaya Gora',
'sys': {'country': 'RU',
'message': 0.0034,
'sunrise': 1520370720,
'sunset': 1520408542},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 359.001, 'speed': 2.61}}
city generated: aanekoski,fi
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F66940>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: grand centre,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B8D5F8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: cherskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF02940>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vaini,to
duplicate city: rikitea,pf
city generated: torbay,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BCC828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 47.66, 'lon': -52.73},
'dt': 1520398800,
'id': 6167817,
'main': {'humidity': 92,
'pressure': 1011,
'temp': -1,
'temp_max': -1,
'temp_min': -1},
'name': 'Torbay',
'sys': {'country': 'CA',
'id': 3467,
'message': 0.0046,
'sunrise': 1520416772,
'sunset': 1520457897,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 40, 'gust': 13.9, 'speed': 10.3}}
city generated: cacoal,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A54CF8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -11.43, 'lon': -61.44},
'dt': 1520400067,
'id': 3925212,
'main': {'grnd_level': 993.76,
'humidity': 96,
'pressure': 993.76,
'sea_level': 1023.48,
'temp': 22.98,
'temp_max': 22.98,
'temp_min': 22.98},
'name': 'Cacoal',
'sys': {'country': 'BR',
'message': 0.0032,
'sunrise': 1520417349,
'sunset': 1520461441},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 147.501, 'speed': 0.96}}
city generated: barcelos,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A427B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 41.53, 'lon': -8.62},
'dt': 1520398800,
'id': 2742416,
'main': {'humidity': 93,
'pressure': 1009,
'temp': 5.46,
'temp_max': 6,
'temp_min': 5},
'name': 'Barcelos',
'sys': {'country': 'PT',
'id': 5959,
'message': 0.0105,
'sunrise': 1520405966,
'sunset': 1520447525,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 130, 'speed': 3.6}}
city generated: lavrentiya,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFAE0F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 65.58, 'lon': -170.99},
'dt': 1520400068,
'id': 4031637,
'main': {'grnd_level': 1017.83,
'humidity': 100,
'pressure': 1017.83,
'sea_level': 1022.02,
'temp': -5.55,
'temp_max': -5.55,
'temp_min': -5.55},
'name': 'Lavrentiya',
'sys': {'country': 'RU',
'message': 0.0035,
'sunrise': 1520446264,
'sunset': 1520485206},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 26.5009, 'speed': 12.36}}
duplicate city: ushuaia,ar
city generated: ituni,gy
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A177748>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: port alfred,za
duplicate city: longyearbyen,sj
duplicate city: punta arenas,cl
city generated: sao miguel do araguaia,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B2C4A8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: atuona,pf
city generated: east london,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6C0390>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
city generated: broome,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19950CF8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 52.47, 'lon': 1.45},
'dt': 1520398560,
'id': 2656067,
'main': {'humidity': 97,
'pressure': 991,
'temp': 2.26,
'temp_max': 4,
'temp_min': 0},
'name': 'Broome',
'sys': {'country': 'GB',
'id': 5141,
'message': 0.0042,
'sunrise': 1520404011,
'sunset': 1520444665,
'type': 1},
'visibility': 250,
'weather': [{'description': 'fog', 'icon': '50n', 'id': 741, 'main': 'Fog'},
{'description': 'light intensity drizzle rain',
'icon': '09n',
'id': 310,
'main': 'Drizzle'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 90, 'speed': 0.5}}
city generated: beringovskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEDD710>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: shaowu,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C87080>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 27.34, 'lon': 117.49},
'dt': 1520400071,
'id': 1795857,
'main': {'grnd_level': 959.71,
'humidity': 100,
'pressure': 959.71,
'sea_level': 1032.72,
'temp': 10.93,
'temp_max': 10.93,
'temp_min': 10.93},
'name': 'Shaowu',
'rain': {'3h': 5.92},
'sys': {'country': 'CN',
'message': 0.0039,
'sunrise': 1520375304,
'sunset': 1520417648},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 347.501, 'speed': 0.51}}
duplicate city: ushuaia,ar
city generated: mantua,cu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D5A9B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 45.16, 'lon': 10.79},
'dt': 1520398500,
'id': 3174050,
'main': {'humidity': 93,
'pressure': 998,
'temp': 5,
'temp_max': 5,
'temp_min': 5},
'name': 'Mantua',
'sys': {'country': 'IT',
'id': 5830,
'message': 0.0034,
'sunrise': 1520401446,
'sunset': 1520442735,
'type': 1},
'visibility': 1200,
'weather': [{'description': 'drizzle',
'icon': '09n',
'id': 301,
'main': 'Drizzle'},
{'description': 'fog', 'icon': '50n', 'id': 741, 'main': 'Fog'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 70, 'speed': 2.1}}
city generated: natitingou,bj
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A17E48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 10.31, 'lon': 1.38},
'dt': 1520400071,
'id': 2392601,
'main': {'grnd_level': 984.44,
'humidity': 58,
'pressure': 984.44,
'sea_level': 1021.86,
'temp': 24.98,
'temp_max': 24.98,
'temp_min': 24.98},
'name': 'Natitingou',
'sys': {'country': 'BJ',
'message': 0.0035,
'sunrise': 1520402753,
'sunset': 1520445907},
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 178.501, 'speed': 4.11}}
duplicate city: hermanus,za
city generated: arraial do cabo,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A3AA58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -22.97, 'lon': -42.02},
'dt': 1520400072,
'id': 3471451,
'main': {'grnd_level': 1022.05,
'humidity': 100,
'pressure': 1022.05,
'sea_level': 1023.04,
'temp': 24.23,
'temp_max': 24.23,
'temp_min': 24.23},
'name': 'Arraial do Cabo',
'sys': {'country': 'BR',
'message': 0.005,
'sunrise': 1520412400,
'sunset': 1520457059},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 267.001, 'speed': 2.46}}
city generated: tezu,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A44DC50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 100},
'cod': 200,
'coord': {'lat': 27.93, 'lon': 96.16},
'dt': 1520400072,
'id': 1254709,
'main': {'grnd_level': 884.08,
'humidity': 100,
'pressure': 884.08,
'sea_level': 1030.33,
'temp': 9.73,
'temp_max': 9.73,
'temp_min': 9.73},
'name': 'Tezu',
'rain': {'3h': 4.76},
'sys': {'country': 'IN',
'message': 0.0037,
'sunrise': 1520380435,
'sunset': 1520422755},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 23.0009, 'speed': 0.36}}
city generated: leningradskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFAEA20>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
city generated: pervomayskoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B02A780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 57.07, 'lon': 86.23},
'dt': 1520400073,
'id': 1495256,
'main': {'grnd_level': 1000.24,
'humidity': 98,
'pressure': 1000.24,
'sea_level': 1016.03,
'temp': 0.13,
'temp_max': 0.13,
'temp_min': 0.13},
'name': 'Pervomayskoye',
'sys': {'country': 'RU',
'message': 0.0034,
'sunrise': 1520383965,
'sunset': 1520424033},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 180.001, 'speed': 6.51}}
duplicate city: butaritari,ki
city generated: prestea,gh
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A091588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 5.43, 'lon': -2.14},
'dt': 1520400074,
'id': 2295840,
'main': {'grnd_level': 1013.05,
'humidity': 97,
'pressure': 1013.05,
'sea_level': 1024.05,
'temp': 22.55,
'temp_max': 22.55,
'temp_min': 22.55},
'name': 'Prestea',
'sys': {'country': 'GH',
'message': 0.0032,
'sunrise': 1520403491,
'sunset': 1520446854},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 197.501, 'speed': 1.21}}
duplicate city: kahului,us
city generated: te anau,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A98B7B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -45.41, 'lon': 167.72},
'dt': 1520400074,
'id': 2181625,
'main': {'grnd_level': 966.2,
'humidity': 76,
'pressure': 966.2,
'sea_level': 1030.5,
'temp': 13.73,
'temp_max': 13.73,
'temp_min': 13.73},
'name': 'Te Anau',
'sys': {'country': 'NZ',
'message': 0.0034,
'sunrise': 1520361211,
'sunset': 1520407559},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 153.001, 'speed': 1.56}}
duplicate city: yellowknife,ca
city generated: rocha,uy
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6E7BA8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -34.48, 'lon': -54.34},
'dt': 1520400074,
'id': 3440777,
'main': {'grnd_level': 1011.75,
'humidity': 88,
'pressure': 1011.75,
'sea_level': 1028.96,
'temp': 12.8,
'temp_max': 12.8,
'temp_min': 12.8},
'name': 'Rocha',
'sys': {'country': 'UY',
'message': 0.003,
'sunrise': 1520415006,
'sunset': 1520460353},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 203.001, 'speed': 3.41}}
city generated: nakuru,ke
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A70D208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -0.28, 'lon': 36.07},
'dt': 1520399958,
'id': 184622,
'main': {'grnd_level': 820.13,
'humidity': 96,
'pressure': 820.13,
'sea_level': 1026.65,
'temp': 15.93,
'temp_max': 15.93,
'temp_min': 15.93},
'name': 'Nakuru',
'rain': {'3h': 0.36},
'sys': {'country': 'KE',
'message': 0.0052,
'sunrise': 1520394198,
'sunset': 1520437805},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 153.001, 'speed': 0.91}}
city generated: jamestown,sh
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B149470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -33.21, 'lon': 138.6},
'dt': 1520400075,
'id': 2069194,
'main': {'grnd_level': 973.9,
'humidity': 42,
'pressure': 973.9,
'sea_level': 1031.47,
'temp': 27.38,
'temp_max': 27.38,
'temp_min': 27.38},
'name': 'Jamestown',
'sys': {'country': 'AU',
'message': 0.0039,
'sunrise': 1520368718,
'sunset': 1520414046},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 89.5009, 'speed': 7.36}}
duplicate city: punta arenas,cl
city generated: hasaki,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5515F8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: illoqqortoormiut,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A093780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: kaitangata,nz
duplicate city: rikitea,pf
city generated: bira,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEDF5F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 49, 'lon': 132.47},
'dt': 1520400076,
'id': 2026659,
'main': {'grnd_level': 975.28,
'humidity': 38,
'pressure': 975.28,
'sea_level': 1044.15,
'temp': -10.03,
'temp_max': -10.03,
'temp_min': -10.03},
'name': 'Bira',
'sys': {'country': 'RU',
'message': 0.003,
'sunrise': 1520372445,
'sunset': 1520413346},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 260.501, 'speed': 1.56}}
duplicate city: castro,cl
city generated: najran,sa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B12FA58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 17.54, 'lon': 44.22},
'dt': 1520395200,
'id': 103630,
'main': {'humidity': 33,
'pressure': 1023,
'temp': 14,
'temp_max': 14,
'temp_min': 14},
'name': 'Najran',
'sys': {'country': 'SA',
'id': 6998,
'message': 0.0028,
'sunrise': 1520392638,
'sunset': 1520435469,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 210.001, 'speed': 1.66}}
city generated: santa maria,cv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D64710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -29.69, 'lon': -53.81},
'dt': 1520395200,
'id': 3450083,
'main': {'humidity': 88,
'pressure': 1013,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'Santa Maria',
'sys': {'country': 'BR',
'id': 4573,
'message': 0.003,
'sunrise': 1520415036,
'sunset': 1520460074,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 80, 'speed': 2.1}}
duplicate city: rikitea,pf
city generated: surt,ly
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A772400>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: saint george,bm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A1A668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 39.45, 'lon': 22.34},
'dt': 1520398200,
'id': 262462,
'main': {'humidity': 71,
'pressure': 1004,
'temp': 11,
'temp_max': 11,
'temp_min': 11},
'name': 'Saint George',
'sys': {'country': 'GR',
'id': 5674,
'message': 0.0105,
'sunrise': 1520398473,
'sunset': 1520440157,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 270, 'speed': 2.1}}
duplicate city: hobart,au
duplicate city: vaini,to
city generated: sioux lookout,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BC1E48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 50.1, 'lon': -91.92},
'dt': 1520399520,
'id': 6148373,
'main': {'humidity': 66,
'pressure': 1020,
'temp': -10.55,
'temp_max': -10,
'temp_min': -11},
'name': 'Sioux Lookout',
'sys': {'country': 'CA',
'id': 3712,
'message': 0.0035,
'sunrise': 1520426271,
'sunset': 1520467211,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 50, 'speed': 1.5}}
city generated: havoysund,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A94B198>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: castro,cl
duplicate city: hithadhoo,mv
city generated: saldanha,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6CD898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 41.42, 'lon': -6.55},
'dt': 1520400080,
'id': 2737599,
'main': {'grnd_level': 948.44,
'humidity': 94,
'pressure': 948.44,
'sea_level': 1024.42,
'temp': 1.73,
'temp_max': 1.73,
'temp_min': 1.73},
'name': 'Saldanha',
'sys': {'country': 'PT',
'message': 0.004,
'sunrise': 1520405466,
'sunset': 1520447032},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 232.501, 'speed': 2.31}}
duplicate city: punta arenas,cl
duplicate city: cape town,za
city generated: port hardy,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BB1A90>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: safaqis,tn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1D7400>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: nanortalik,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A093A20>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: busselton,au
duplicate city: hithadhoo,mv
duplicate city: hilo,us
city generated: yulara,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19968748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -25.24, 'lon': 130.99},
'dt': 1520398800,
'id': 6355222,
'main': {'humidity': 11,
'pressure': 1011,
'temp': 32,
'temp_max': 32,
'temp_min': 32},
'name': 'Yulara',
'sys': {'country': 'AU',
'id': 8160,
'message': 0.003,
'sunrise': 1520370800,
'sunset': 1520415626,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 90, 'speed': 3.6}}
duplicate city: rikitea,pf
duplicate city: hasaki,jp
duplicate city: ushuaia,ar
duplicate city: yellowknife,ca
city generated: nacozari,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A84BA90>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.34, 'lon': -108.26},
'dt': 1520400085,
'id': 4018499,
'main': {'grnd_level': 1017.99,
'humidity': 51,
'pressure': 1017.99,
'sea_level': 1026.24,
'temp': 17.83,
'temp_max': 17.83,
'temp_min': 17.83},
'name': 'Nacozari',
'sys': {'country': 'MX',
'message': 0.0039,
'sunrise': 1520429395,
'sunset': 1520471897},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 312.501, 'speed': 2.46}}
duplicate city: qaanaaq,gl
duplicate city: lagoa,pt
city generated: port elizabeth,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6C9E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 39.31, 'lon': -74.98},
'dt': 1520398860,
'id': 4501427,
'main': {'humidity': 100,
'pressure': 1012,
'temp': 1.82,
'temp_max': 4,
'temp_min': 0},
'name': 'Port Elizabeth',
'sys': {'country': 'US',
'id': 1971,
'message': 0.0045,
'sunrise': 1520421800,
'sunset': 1520463535,
'type': 1},
'visibility': 4828,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'},
{'description': 'moderate rain',
'icon': '10n',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 90, 'speed': 2.6}}
duplicate city: kapaa,us
duplicate city: albany,au
duplicate city: faya,td
city generated: mnogovershinnyy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFD8C18>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: khani,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF62668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 41.96, 'lon': 42.96},
'dt': 1520397000,
'id': 610864,
'main': {'humidity': 62,
'pressure': 1013,
'temp': 11,
'temp_max': 11,
'temp_min': 11},
'name': 'Khani',
'sys': {'country': 'GE',
'id': 7218,
'message': 0.004,
'sunrise': 1520393616,
'sunset': 1520435122,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 70, 'speed': 9.3}}
duplicate city: cape town,za
city generated: challapata,bo
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A1C320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -18.9, 'lon': -66.78},
'dt': 1520400087,
'id': 3921355,
'main': {'grnd_level': 626.23,
'humidity': 99,
'pressure': 626.23,
'sea_level': 1024.94,
'temp': 3.48,
'temp_max': 3.48,
'temp_min': 3.48},
'name': 'Challapata',
'rain': {'3h': 1.835},
'sys': {'country': 'BO',
'message': 0.0032,
'sunrise': 1520418451,
'sunset': 1520462896},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 350.501, 'speed': 0.31}}
city generated: bogorodskoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEE4CC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 52.37, 'lon': 140.44},
'dt': 1520400087,
'id': 2126638,
'main': {'grnd_level': 1012.81,
'humidity': 43,
'pressure': 1012.81,
'sea_level': 1036.45,
'temp': -13.03,
'temp_max': -13.03,
'temp_min': -13.03},
'name': 'Bogorodskoye',
'sys': {'country': 'RU',
'message': 0.003,
'sunrise': 1520370701,
'sunset': 1520411271},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 274.001, 'speed': 4.96}}
duplicate city: bethel,us
duplicate city: ushuaia,ar
duplicate city: rikitea,pf
city generated: constitucion,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C23EB8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 23.99, 'lon': -104.67},
'dt': 1520400088,
'id': 4011743,
'main': {'grnd_level': 817.78,
'humidity': 41,
'pressure': 817.78,
'sea_level': 1026.36,
'temp': 11.8,
'temp_max': 11.8,
'temp_min': 11.8},
'name': 'Constitucion',
'sys': {'country': 'MX',
'message': 0.0031,
'sunrise': 1520428501,
'sunset': 1520471066},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 264.501, 'speed': 3.11}}
duplicate city: mataura,pf
duplicate city: albany,au
city generated: yomou,gn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A09DCF8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 7.57, 'lon': -9.26},
'dt': 1520400088,
'id': 2414079,
'main': {'grnd_level': 965.79,
'humidity': 98,
'pressure': 965.79,
'sea_level': 1024.62,
'temp': 19.38,
'temp_max': 19.38,
'temp_min': 19.38},
'name': 'Yomou',
'sys': {'country': 'GN',
'message': 0.0045,
'sunrise': 1520405246,
'sunset': 1520448518},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 304.501, 'speed': 1.56}}
duplicate city: kodiak,us
city generated: nikolskoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFF3438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 59.7, 'lon': 30.79},
'dt': 1520397000,
'id': 546105,
'main': {'humidity': 61,
'pressure': 1010,
'temp': -11,
'temp_max': -11,
'temp_min': -11},
'name': 'Nikolskoye',
'sys': {'country': 'RU',
'id': 7267,
'message': 0.0035,
'sunrise': 1520397429,
'sunset': 1520437183,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 90, 'speed': 5}}
city generated: marcona,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9C6B00>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: nabire,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A270E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -3.36, 'lon': 135.5},
'dt': 1520400090,
'id': 1634614,
'main': {'grnd_level': 943.26,
'humidity': 86,
'pressure': 943.26,
'sea_level': 1017.85,
'temp': 25.13,
'temp_max': 25.13,
'temp_min': 25.13},
'name': 'Nabire',
'rain': {'3h': 0.65000000000001},
'sys': {'country': 'ID',
'message': 0.0032,
'sunrise': 1520370269,
'sunset': 1520414013},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 289.501, 'speed': 0.36}}
duplicate city: bredasdorp,za
duplicate city: attawapiskat,ca
duplicate city: attawapiskat,ca
city generated: tshikapa,cd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BDF748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -6.42, 'lon': 20.79},
'dt': 1520400091,
'id': 204953,
'main': {'grnd_level': 956.31,
'humidity': 100,
'pressure': 956.31,
'sea_level': 1024.82,
'temp': 21.7,
'temp_max': 21.7,
'temp_min': 21.7},
'name': 'Tshikapa',
'sys': {'country': 'CD',
'message': 0.0035,
'sunrise': 1520397728,
'sunset': 1520441602},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 302.001, 'speed': 0.71}}
duplicate city: albany,au
duplicate city: punta arenas,cl
duplicate city: mataura,pf
city generated: madang,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E5CC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -5.21, 'lon': 145.81},
'dt': 1520400091,
'id': 2091996,
'main': {'grnd_level': 986.95,
'humidity': 85,
'pressure': 986.95,
'sea_level': 1014.81,
'temp': 29.2,
'temp_max': 29.2,
'temp_min': 29.2},
'name': 'Madang',
'rain': {'3h': 1.41},
'sys': {'country': 'PG',
'message': 0.0075,
'sunrise': 1520367753,
'sunset': 1520411579},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 326.501, 'speed': 0.96}}
city generated: nome,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CBB70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 30.04, 'lon': -94.42},
'dt': 1520398500,
'id': 4732862,
'main': {'humidity': 47,
'pressure': 1022,
'temp': 11.97,
'temp_max': 13,
'temp_min': 9},
'name': 'Nome',
'sys': {'country': 'US',
'id': 2561,
'message': 0.0045,
'sunrise': 1520426194,
'sunset': 1520468460,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 340, 'speed': 3.6}}
duplicate city: torbay,ca
duplicate city: havoysund,no
city generated: mahebourg,mu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7B95C0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: san patricio,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A879390>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -26.98, 'lon': -56.83},
'dt': 1520400092,
'id': 3437029,
'main': {'grnd_level': 1014.91,
'humidity': 57,
'pressure': 1014.91,
'sea_level': 1024.98,
'temp': 21.48,
'temp_max': 21.48,
'temp_min': 21.48},
'name': 'San Patricio',
'sys': {'country': 'PY',
'message': 0.0101,
'sunrise': 1520415843,
'sunset': 1520460720},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 165.001, 'speed': 2.61}}
duplicate city: mahebourg,mu
city generated: grand river south east,mu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7B9048>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ushuaia,ar
duplicate city: albany,au
duplicate city: busselton,au
duplicate city: mataura,pf
duplicate city: bambous virieux,mu
city generated: lasa,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C6C630>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 34.92, 'lon': 32.53},
'dt': 1520398800,
'id': 146639,
'main': {'humidity': 93,
'pressure': 1016,
'temp': 13,
'temp_max': 13,
'temp_min': 13},
'name': 'Lasa',
'sys': {'country': 'CY',
'id': 5450,
'message': 0.0085,
'sunrise': 1520395888,
'sunset': 1520437846,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 30, 'speed': 2.6}}
city generated: vaitupu,wf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6AEC18>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: amderma,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEBA828>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: cherskiy,ru
duplicate city: amderma,ru
city generated: balkanabat,tm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1D0828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 39.51, 'lon': 54.36},
'dt': 1520400094,
'id': 161616,
'main': {'grnd_level': 993.51,
'humidity': 60,
'pressure': 993.51,
'sea_level': 1033.82,
'temp': 7.4,
'temp_max': 7.4,
'temp_min': 7.4},
'name': 'Balkanabat',
'sys': {'country': 'TM',
'message': 0.0039,
'sunrise': 1520390798,
'sunset': 1520432465},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 71.0009, 'speed': 2.41}}
duplicate city: chuy,uy
duplicate city: broome,au
city generated: waddan,ly
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A772828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 29.16, 'lon': 16.14},
'dt': 1520400095,
'id': 2209055,
'main': {'grnd_level': 977.87,
'humidity': 47,
'pressure': 977.87,
'sea_level': 1025.39,
'temp': 10.88,
'temp_max': 10.88,
'temp_min': 10.88},
'name': 'Waddan',
'sys': {'country': 'LY',
'message': 0.0035,
'sunrise': 1520399657,
'sunset': 1520441936},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 357.501, 'speed': 1.46}}
duplicate city: albany,au
city generated: san quintin,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A879710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 17.54, 'lon': 120.52},
'dt': 1520395200,
'id': 1688687,
'main': {'humidity': 55,
'pressure': 1011,
'temp': 33,
'temp_max': 33,
'temp_min': 33},
'name': 'San Quintin',
'sys': {'country': 'PH',
'id': 7705,
'message': 0.003,
'sunrise': 1520374335,
'sunset': 1520417154,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 350, 'speed': 4.1}}
city generated: sao filipe,cv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D646A0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: vostok,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0FD278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 46.45, 'lon': 135.83},
'dt': 1520400096,
'id': 2013279,
'main': {'grnd_level': 976.17,
'humidity': 48,
'pressure': 976.17,
'sea_level': 1048.21,
'temp': -11.2,
'temp_max': -11.2,
'temp_min': -11.2},
'name': 'Vostok',
'sys': {'country': 'RU',
'message': 0.0036,
'sunrise': 1520371527,
'sunset': 1520412646},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 245.001, 'speed': 1.31}}
duplicate city: port hedland,au
city generated: lebu,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C26D30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 8.96, 'lon': 38.73},
'dt': 1520400096,
'id': 344979,
'main': {'grnd_level': 779.27,
'humidity': 83,
'pressure': 779.27,
'sea_level': 1026.97,
'temp': 13.15,
'temp_max': 13.15,
'temp_min': 13.15},
'name': 'Lebu',
'sys': {'country': 'ET',
'message': 0.0045,
'sunrise': 1520393762,
'sunset': 1520436972},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 15.0009, 'speed': 1.66}}
city generated: ilulissat,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A093860>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: alice,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6B9390>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 27.75, 'lon': -98.07},
'dt': 1520398560,
'id': 4670234,
'main': {'humidity': 93,
'pressure': 1022,
'temp': 13,
'temp_max': 13,
'temp_min': 13},
'name': 'Alice',
'sys': {'country': 'US',
'id': 2690,
'message': 0.0084,
'sunrise': 1520427011,
'sunset': 1520469393,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 280, 'speed': 2.1}}
duplicate city: rikitea,pf
city generated: visby,se
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1491D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 57.64, 'lon': 18.3},
'dt': 1520398200,
'id': 2662689,
'main': {'humidity': 100,
'pressure': 1001,
'temp': -4,
'temp_max': -4,
'temp_min': -4},
'name': 'Visby',
'sys': {'country': 'SE',
'id': 5427,
'message': 0.0047,
'sunrise': 1520400275,
'sunset': 1520440325,
'type': 1},
'visibility': 5000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 70, 'speed': 3.1}}
city generated: saskylakh,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0672E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 71.97, 'lon': 114.09},
'dt': 1520400098,
'id': 2017155,
'main': {'grnd_level': 1030.56,
'humidity': 80,
'pressure': 1030.56,
'sea_level': 1043.87,
'temp': -27.83,
'temp_max': -27.83,
'temp_min': -27.83},
'name': 'Saskylakh',
'sys': {'country': 'RU',
'message': 0.0081,
'sunrise': 1520378987,
'sunset': 1520415699},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 135.001, 'speed': 1.76}}
city generated: bur gabo,so
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B17F320>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: ponta do sol,cv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D64358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -20.63, 'lon': -46},
'dt': 1520400099,
'id': 3453439,
'main': {'grnd_level': 922.83,
'humidity': 91,
'pressure': 922.83,
'sea_level': 1022.55,
'temp': 19.7,
'temp_max': 19.7,
'temp_min': 19.7},
'name': 'Ponta do Sol',
'rain': {'3h': 0.49},
'sys': {'country': 'BR',
'message': 0.0097,
'sunrise': 1520413418,
'sunset': 1520457954},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 49.5009, 'speed': 1.61}}
city generated: reyes,bo
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A249B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': -14.3, 'lon': -67.34},
'dt': 1520400099,
'id': 3906478,
'main': {'grnd_level': 994.08,
'humidity': 95,
'pressure': 994.08,
'sea_level': 1024.33,
'temp': 23.33,
'temp_max': 23.33,
'temp_min': 23.33},
'name': 'Reyes',
'rain': {'3h': 0.25},
'sys': {'country': 'BO',
'message': 0.007,
'sunrise': 1520418698,
'sunset': 1520462921},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 115.501, 'speed': 1.71}}
duplicate city: hermanus,za
duplicate city: umzimvubu,za
duplicate city: rikitea,pf
city generated: moog,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AB38C50>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: baruun-urt,mn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7A1C88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 46.68, 'lon': 113.28},
'dt': 1520400100,
'id': 2032614,
'main': {'grnd_level': 917.97,
'humidity': 68,
'pressure': 917.97,
'sea_level': 1047.11,
'temp': -8.35,
'temp_max': -8.35,
'temp_min': -8.35},
'name': 'Baruun-Urt',
'sys': {'country': 'MN',
'message': 0.0038,
'sunrise': 1520376942,
'sunset': 1520418054},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 327.501, 'speed': 2.91}}
city generated: nishihara,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5844E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 35.74, 'lon': 139.53},
'dt': 1520398560,
'id': 1850144,
'main': {'humidity': 42,
'pressure': 1034,
'temp': 6.99,
'temp_max': 8,
'temp_min': 6},
'name': 'Nishihara',
'sys': {'country': 'JP',
'id': 7622,
'message': 0.004,
'sunrise': 1520370257,
'sunset': 1520412126,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 120, 'speed': 2.1}}
city generated: haifa,il
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2A4D30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 32.82, 'lon': 35},
'dt': 1520398200,
'id': 294801,
'main': {'humidity': 87,
'pressure': 1017,
'temp': 11.88,
'temp_max': 13,
'temp_min': 11},
'name': 'Haifa',
'sys': {'country': 'IL',
'id': 5916,
'message': 0.0039,
'sunrise': 1520395235,
'sunset': 1520437311,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'speed': 1}}
city generated: chara,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEF7CC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 39.42, 'lon': 22.43},
'dt': 1520398200,
'id': 262462,
'main': {'humidity': 71,
'pressure': 1004,
'temp': 11,
'temp_max': 11,
'temp_min': 11},
'name': 'Chara',
'sys': {'country': 'GR',
'id': 5674,
'message': 0.0039,
'sunrise': 1520398450,
'sunset': 1520440136,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 270, 'speed': 2.1}}
duplicate city: bluff,nz
city generated: binzhou,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C43198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 37.38, 'lon': 117.96},
'dt': 1520400102,
'id': 1816336,
'main': {'grnd_level': 1036.88,
'humidity': 59,
'pressure': 1036.88,
'sea_level': 1038.8,
'temp': 8.68,
'temp_max': 8.68,
'temp_min': 8.68},
'name': 'Binzhou',
'sys': {'country': 'CN',
'message': 0.0033,
'sunrise': 1520375480,
'sunset': 1520417257},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 157.001, 'speed': 2.41}}
city generated: golden,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B8D358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 51.3, 'lon': -116.96},
'dt': 1520400103,
'id': 5962582,
'main': {'grnd_level': 828.23,
'humidity': 83,
'pressure': 828.23,
'sea_level': 1045.17,
'temp': -17.2,
'temp_max': -17.2,
'temp_min': -17.2},
'name': 'Golden',
'sys': {'country': 'CA',
'message': 0.0039,
'sunrise': 1520432327,
'sunset': 1520473174},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 245.501, 'speed': 0.76}}
duplicate city: mataura,pf
duplicate city: rikitea,pf
city generated: ribeiropolis,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B0DA90>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: ilhabela,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A99F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -23.78, 'lon': -45.36},
'dt': 1520400103,
'id': 3461425,
'main': {'grnd_level': 1017.83,
'humidity': 100,
'pressure': 1017.83,
'sea_level': 1023,
'temp': 25.95,
'temp_max': 25.95,
'temp_min': 25.95},
'name': 'Ilhabela',
'sys': {'country': 'BR',
'message': 0.0034,
'sunrise': 1520413180,
'sunset': 1520457882},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 67.5009, 'speed': 1.76}}
duplicate city: atuona,pf
city generated: saint-philippe,re
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACEB208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 45.36, 'lon': -73.48},
'dt': 1520398800,
'id': 6138908,
'main': {'humidity': 80,
'pressure': 1015,
'temp': -1.76,
'temp_max': -1,
'temp_min': -2},
'name': 'Saint-Philippe',
'sys': {'country': 'CA',
'id': 3851,
'message': 0.0053,
'sunrise': 1520421653,
'sunset': 1520462971,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 50, 'speed': 1}}
city generated: tsihombe,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A783438>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vaini,to
city generated: laguna,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19ABBC88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 27.52, 'lon': -110.01},
'dt': 1520400105,
'id': 4013704,
'main': {'grnd_level': 1005.19,
'humidity': 74,
'pressure': 1005.19,
'sea_level': 1026.93,
'temp': 12.08,
'temp_max': 12.08,
'temp_min': 12.08},
'name': 'Laguna',
'sys': {'country': 'MX',
'message': 0.0032,
'sunrise': 1520429868,
'sunset': 1520472265},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 250.001, 'speed': 0.96}}
city generated: moryakovskiy zaton,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFDCF28>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 56.7, 'lon': 84.65},
'dt': 1520400105,
'id': 1498399,
'main': {'grnd_level': 1001.54,
'humidity': 90,
'pressure': 1001.54,
'sea_level': 1012.9,
'temp': 3.7,
'temp_max': 3.7,
'temp_min': 3.7},
'name': 'Moryakovskiy Zaton',
'rain': {'3h': 0.135},
'sys': {'country': 'RU',
'message': 0.0036,
'sunrise': 1520384320,
'sunset': 1520424436},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 189.001, 'speed': 5.26}}
city generated: makakilo city,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B36B940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 21.35, 'lon': -158.09},
'dt': 1520398620,
'id': 5850554,
'main': {'humidity': 64,
'pressure': 1016,
'temp': 21.26,
'temp_max': 23,
'temp_min': 19},
'name': 'Makakilo City',
'sys': {'country': 'US',
'id': 830,
'message': 0.0035,
'sunrise': 1520441253,
'sunset': 1520483950,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 50, 'speed': 3.6}}
duplicate city: jamestown,sh
city generated: safaga,eg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F0E588>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rocha,uy
duplicate city: illoqqortoormiut,gl
duplicate city: albany,au
city generated: reconquista,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992AD30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -29.14, 'lon': -59.64},
'dt': 1520400106,
'id': 3429594,
'main': {'grnd_level': 1025.04,
'humidity': 59,
'pressure': 1025.04,
'sea_level': 1028.75,
'temp': 16.28,
'temp_max': 16.28,
'temp_min': 16.28},
'name': 'Reconquista',
'sys': {'country': 'AR',
'message': 0.0033,
'sunrise': 1520416453,
'sunset': 1520461456},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 150.501, 'speed': 5.11}}
duplicate city: port alfred,za
duplicate city: yellowknife,ca
duplicate city: rikitea,pf
city generated: new norfolk,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1995EFD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -42.78, 'lon': 147.06},
'dt': 1520398800,
'id': 2155415,
'main': {'humidity': 64,
'pressure': 1026,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'New Norfolk',
'sys': {'country': 'AU',
'id': 8195,
'message': 0.0034,
'sunrise': 1520366302,
'sunset': 1520412388,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 170, 'speed': 7.2}}
duplicate city: punta arenas,cl
city generated: upernavik,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A098128>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: norman wells,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BAA160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 65.28, 'lon': -126.83},
'dt': 1520398800,
'id': 6089245,
'main': {'humidity': 76,
'pressure': 1023,
'temp': -24,
'temp_max': -24,
'temp_min': -24},
'name': 'Norman Wells',
'sys': {'country': 'CA',
'id': 3547,
'message': 0.0034,
'sunrise': 1520435662,
'sunset': 1520474614,
'type': 1},
'visibility': 48279,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 60, 'speed': 1}}
city generated: rancho palos verdes,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B307940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 33.75, 'lon': -118.37},
'dt': 1520398680,
'id': 5386035,
'main': {'humidity': 44,
'pressure': 1017,
'temp': 16.22,
'temp_max': 19,
'temp_min': 14},
'name': 'Rancho Palos Verdes',
'sys': {'country': 'US',
'id': 396,
'message': 0.0051,
'sunrise': 1520432037,
'sunset': 1520474115,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 140, 'speed': 1.5}}
duplicate city: hithadhoo,mv
city generated: katsuura,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5682B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 33.93, 'lon': 134.5},
'dt': 1520395200,
'id': 1865309,
'main': {'humidity': 60,
'pressure': 1028,
'temp': 6,
'temp_max': 6,
'temp_min': 6},
'name': 'Katsuura',
'sys': {'country': 'JP',
'id': 7587,
'message': 0.0036,
'sunrise': 1520371408,
'sunset': 1520413387,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 70, 'speed': 5.1}}
duplicate city: kapaa,us
duplicate city: illoqqortoormiut,gl
duplicate city: karaul,ru
duplicate city: new norfolk,au
duplicate city: saint-joseph,re
city generated: walvis bay,na
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8DF8D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': -22.95, 'lon': 14.51},
'dt': 1520395200,
'id': 3359638,
'main': {'humidity': 77,
'pressure': 1014,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'Walvis Bay',
'sys': {'country': 'NA',
'id': 6925,
'message': 0.0033,
'sunrise': 1520398829,
'sunset': 1520443500,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 160, 'speed': 0.5}}
city generated: half moon bay,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2F1898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 37.46, 'lon': -122.43},
'dt': 1520398560,
'id': 5354943,
'main': {'humidity': 65,
'pressure': 1016,
'temp': 12.37,
'temp_max': 16,
'temp_min': 8},
'name': 'Half Moon Bay',
'sys': {'country': 'US',
'id': 392,
'message': 0.0052,
'sunrise': 1520433119,
'sunset': 1520474986,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 30.0009, 'speed': 1.21}}
city generated: mehamn,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A958D30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 71.03, 'lon': 27.85},
'dt': 1520398200,
'id': 778707,
'main': {'humidity': 92,
'pressure': 1015,
'temp': -9.84,
'temp_max': -9,
'temp_min': -11},
'name': 'Mehamn',
'sys': {'country': 'NO',
'id': 5307,
'message': 0.0034,
'sunrise': 1520399433,
'sunset': 1520436636,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 150, 'speed': 4.6}}
city generated: ostrovnoy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B01BEF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 68.05, 'lon': 39.51},
'dt': 1520400110,
'id': 556268,
'main': {'grnd_level': 1000.65,
'humidity': 92,
'pressure': 1000.65,
'sea_level': 1027.98,
'temp': -12.88,
'temp_max': -12.88,
'temp_min': -12.88},
'name': 'Ostrovnoy',
'sys': {'country': 'RU',
'message': 0.0044,
'sunrise': 1520396178,
'sunset': 1520434279},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 298.001, 'speed': 6.06}}
city generated: anadyr,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEBAD30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 64.73, 'lon': 177.51},
'dt': 1520397000,
'id': 2127202,
'main': {'humidity': 85,
'pressure': 1008,
'temp': -8,
'temp_max': -8,
'temp_min': -8},
'name': 'Anadyr',
'sys': {'country': 'RU',
'id': 7238,
'message': 0.0033,
'sunrise': 1520362746,
'sunset': 1520401468,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light snow',
'icon': '13d',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 300, 'speed': 2}}
duplicate city: kapaa,us
duplicate city: arraial do cabo,br
duplicate city: port alfred,za
city generated: sinnamary,gf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A089CC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 5.38, 'lon': -52.96},
'dt': 1520400111,
'id': 3380290,
'main': {'grnd_level': 1023.42,
'humidity': 96,
'pressure': 1023.42,
'sea_level': 1024.82,
'temp': 26.55,
'temp_max': 26.55,
'temp_min': 26.55},
'name': 'Sinnamary',
'sys': {'country': 'GF',
'message': 0.003,
'sunrise': 1520415684,
'sunset': 1520459051},
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 70.0009, 'speed': 7.46}}
city generated: honiara,sb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1304A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -9.43, 'lon': 159.96},
'dt': 1520398800,
'id': 2108502,
'main': {'humidity': 88,
'pressure': 1002,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Honiara',
'sys': {'country': 'SB',
'id': 8147,
'message': 0.008,
'sunrise': 1520364258,
'sunset': 1520408280,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 200, 'speed': 4.1}}
city generated: roma,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19962EB8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 41.89, 'lon': 12.48},
'dt': 1520398500,
'id': 6539761,
'main': {'humidity': 87,
'pressure': 1002,
'temp': 10.99,
'temp_max': 13,
'temp_min': 10},
'name': 'Rome',
'sys': {'country': 'IT',
'id': 5848,
'message': 0.0042,
'sunrise': 1520400920,
'sunset': 1520442445,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 160, 'speed': 2.1}}
duplicate city: barrow,us
city generated: tiksi,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0BA748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 71.64, 'lon': 128.87},
'dt': 1520399905,
'id': 2015306,
'main': {'grnd_level': 1025.61,
'humidity': 70,
'pressure': 1025.61,
'sea_level': 1045.25,
'temp': -26.45,
'temp_max': -26.45,
'temp_min': -26.45},
'name': 'Tiksi',
'sys': {'country': 'RU',
'message': 0.0042,
'sunrise': 1520375387,
'sunset': 1520412204},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 76.5009, 'speed': 2.61}}
city generated: tommot,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0BEA58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 58.97, 'lon': 126.27},
'dt': 1520400112,
'id': 2015179,
'main': {'grnd_level': 962.87,
'humidity': 49,
'pressure': 962.87,
'sea_level': 1042.65,
'temp': -19.93,
'temp_max': -19.93,
'temp_min': -19.93},
'name': 'Tommot',
'sys': {'country': 'RU',
'message': 0.0043,
'sunrise': 1520374506,
'sunset': 1520414281},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 289.501, 'speed': 2.96}}
city generated: barentsburg,sj
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B158A90>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: ribeira grande,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACBE668>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: bokspits,bw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B59780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
duplicate city: busselton,au
duplicate city: ushuaia,ar
duplicate city: hermanus,za
duplicate city: albany,au
duplicate city: taolanaro,mg
duplicate city: saint-joseph,re
city generated: great yarmouth,gb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A034160>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: esperance,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19955828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 10.24, 'lon': -61.45},
'dt': 1520395200,
'id': 3573739,
'main': {'humidity': 88,
'pressure': 1014,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Esperance',
'sys': {'country': 'TT',
'id': 4165,
'message': 0.004,
'sunrise': 1520417825,
'sunset': 1520460988,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 100, 'speed': 3.1}}
city generated: victoria,sc
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1307F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 5.28, 'lon': 115.24},
'dt': 1520398800,
'id': 1733782,
'main': {'humidity': 74,
'pressure': 1008,
'temp': 30.56,
'temp_max': 31,
'temp_min': 30},
'name': 'Victoria',
'sys': {'country': 'BN',
'id': 8115,
'message': 0.0034,
'sunrise': 1520375324,
'sunset': 1520418688,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 10, 'speed': 5.1}}
duplicate city: nikolskoye,ru
duplicate city: ushuaia,ar
city generated: sarangani,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ABCF8D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: poso,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2776A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -1.4, 'lon': 120.75},
'dt': 1520400116,
'id': 1630723,
'main': {'grnd_level': 986.54,
'humidity': 100,
'pressure': 986.54,
'sea_level': 1020.97,
'temp': 26.08,
'temp_max': 26.08,
'temp_min': 26.08},
'name': 'Poso',
'sys': {'country': 'ID',
'message': 0.0038,
'sunrise': 1520373853,
'sunset': 1520417509},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 33.0009, 'speed': 1.51}}
duplicate city: barrow,us
city generated: buala,sb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1303C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': -8.15, 'lon': 159.59},
'dt': 1520400116,
'id': 2109528,
'main': {'grnd_level': 1006.73,
'humidity': 98,
'pressure': 1006.73,
'sea_level': 1015.7,
'temp': 27.65,
'temp_max': 27.65,
'temp_min': 27.65},
'name': 'Buala',
'rain': {'3h': 1.3},
'sys': {'country': 'SB',
'message': 0.0031,
'sunrise': 1520364377,
'sunset': 1520408339},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 338.501, 'speed': 1.76}}
duplicate city: lebu,cl
city generated: rioblanco,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D10D30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 3.53, 'lon': -75.64},
'dt': 1520400117,
'id': 3670764,
'main': {'grnd_level': 844.44,
'humidity': 96,
'pressure': 844.44,
'sea_level': 1023.04,
'temp': 14.7,
'temp_max': 14.7,
'temp_min': 14.7},
'name': 'Rioblanco',
'sys': {'country': 'CO',
'message': 0.0034,
'sunrise': 1520421086,
'sunset': 1520464532},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 301.001, 'speed': 1.06}}
city generated: ayr,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19950240>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 55.46, 'lon': -4.63},
'dt': 1520398200,
'id': 2656708,
'main': {'humidity': 86,
'pressure': 987,
'temp': 2.35,
'temp_max': 4,
'temp_min': 1},
'name': 'Ayr',
'sys': {'country': 'GB',
'id': 5124,
'message': 0.0038,
'sunrise': 1520405632,
'sunset': 1520445968,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 130, 'speed': 2.1}}
city generated: aykhal,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEC7F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 65.95, 'lon': 111.51},
'dt': 1520400117,
'id': 2027296,
'main': {'grnd_level': 970.49,
'humidity': 68,
'pressure': 970.49,
'sea_level': 1043.75,
'temp': -20.98,
'temp_max': -20.98,
'temp_min': -20.98},
'name': 'Aykhal',
'sys': {'country': 'RU',
'message': 0.0038,
'sunrise': 1520378682,
'sunset': 1520417211},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 290.501, 'speed': 1.76}}
city generated: daru,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E2DA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 7.99, 'lon': -10.85},
'dt': 1520400118,
'id': 2409663,
'main': {'grnd_level': 994.41,
'humidity': 95,
'pressure': 994.41,
'sea_level': 1024.62,
'temp': 20.03,
'temp_max': 20.03,
'temp_min': 20.03},
'name': 'Daru',
'sys': {'country': 'SL',
'message': 0.0033,
'sunrise': 1520405637,
'sunset': 1520448891},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 107.001, 'speed': 1.31}}
city generated: nhulunbuy,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19962278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -12.18, 'lon': 136.78},
'dt': 1520398800,
'id': 2064735,
'main': {'humidity': 47,
'pressure': 999,
'temp': 35,
'temp_max': 35,
'temp_min': 35},
'name': 'Nhulunbuy',
'sys': {'country': 'AU',
'id': 8188,
'message': 0.0031,
'sunrise': 1520369756,
'sunset': 1520413904,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 320, 'speed': 4.6}}
duplicate city: ushuaia,ar
duplicate city: busselton,au
duplicate city: rikitea,pf
duplicate city: hobart,au
city generated: kaspiyskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF58EF0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: kudahuvadhoo,mv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7BE898>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: cape town,za
duplicate city: busselton,au
duplicate city: mataura,pf
city generated: gunnedah,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19958208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': -30.98, 'lon': 150.25},
'dt': 1520398800,
'id': 2164206,
'main': {'humidity': 28,
'pressure': 1020,
'temp': 28,
'temp_max': 28,
'temp_min': 28},
'name': 'Gunnedah',
'sys': {'country': 'AU',
'id': 8234,
'message': 0.0044,
'sunrise': 1520365997,
'sunset': 1520411179,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 120, 'speed': 8.2}}
duplicate city: busselton,au
duplicate city: busselton,au
city generated: carnarvon,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199525F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -30.97, 'lon': 22.13},
'dt': 1520400120,
'id': 1014034,
'main': {'grnd_level': 873.22,
'humidity': 43,
'pressure': 873.22,
'sea_level': 1024.17,
'temp': 18.45,
'temp_max': 18.45,
'temp_min': 18.45},
'name': 'Carnarvon',
'sys': {'country': 'ZA',
'message': 0.0028,
'sunrise': 1520396761,
'sunset': 1520441902},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 155.001, 'speed': 0.56}}
city generated: kidal,ml
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A797898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 18.44, 'lon': 1.41},
'dt': 1520400120,
'id': 2455290,
'main': {'grnd_level': 972.11,
'humidity': 47,
'pressure': 972.11,
'sea_level': 1026.6,
'temp': 13.7,
'temp_max': 13.7,
'temp_min': 13.7},
'name': 'Kidal',
'sys': {'country': 'ML',
'message': 0.0031,
'sunrise': 1520402927,
'sunset': 1520445725},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 5.50095, 'speed': 3.21}}
duplicate city: upernavik,gl
duplicate city: arraial do cabo,br
city generated: iquique,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C26780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: kapaa,us
duplicate city: rikitea,pf
duplicate city: bengkulu,id
duplicate city: butaritari,ki
city generated: columbia,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6830B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 38.95, 'lon': -92.33},
'dt': 1520398140,
'id': 4381982,
'main': {'humidity': 74,
'pressure': 1018,
'temp': 2,
'temp_max': 2,
'temp_min': 2},
'name': 'Columbia',
'sys': {'country': 'US',
'id': 1643,
'message': 0.0043,
'sunrise': 1520425949,
'sunset': 1520467713,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 300, 'gust': 12.9, 'speed': 7.2}}
duplicate city: esperance,au
city generated: umm kaddadah,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1379E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: saskylakh,ru
duplicate city: jamestown,sh
duplicate city: albany,au
city generated: karkaralinsk,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A723278>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mahebourg,mu
city generated: lewiston,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B36FAC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 46.42, 'lon': -117.02},
'dt': 1520398560,
'id': 5598538,
'main': {'humidity': 64,
'pressure': 1024,
'temp': 1.84,
'temp_max': 4,
'temp_min': 0},
'name': 'Lewiston',
'sys': {'country': 'US',
'id': 923,
'message': 0.004,
'sunrise': 1520432131,
'sunset': 1520473391,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 170, 'speed': 2.1}}
city generated: chadiza,zm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6D64A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -14.06, 'lon': 32.43},
'dt': 1520400123,
'id': 921028,
'main': {'grnd_level': 907.27,
'humidity': 95,
'pressure': 907.27,
'sea_level': 1025.02,
'temp': 19.88,
'temp_max': 19.88,
'temp_min': 19.88},
'name': 'Chadiza',
'sys': {'country': 'ZM',
'message': 0.0027,
'sunrise': 1520394756,
'sunset': 1520438982},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 4.00095, 'speed': 1.51}}
city generated: college,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CB5C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 64.86, 'lon': -147.8},
'dt': 1520398680,
'id': 5859699,
'main': {'humidity': 85,
'pressure': 1015,
'temp': -4.65,
'temp_max': -4,
'temp_min': -5},
'name': 'College',
'sys': {'country': 'US',
'id': 63,
'message': 0.0035,
'sunrise': 1520440639,
'sunset': 1520479699,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 116.501, 'speed': 3.41}}
city generated: minsk mazowiecki,pl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC6C470>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: innisfail,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19958978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 52.02, 'lon': -113.95},
'dt': 1520398800,
'id': 5983430,
'main': {'humidity': 84,
'pressure': 1021,
'temp': -18,
'temp_max': -18,
'temp_min': -18},
'name': 'Innisfail',
'sys': {'country': 'CA',
'id': 3206,
'message': 0.0041,
'sunrise': 1520431641,
'sunset': 1520472417,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 190, 'speed': 2.1}}
duplicate city: avarua,ck
city generated: tuatapere,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A98BF60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': -46.13, 'lon': 167.69},
'dt': 1520400125,
'id': 2180815,
'main': {'grnd_level': 1006.56,
'humidity': 100,
'pressure': 1006.56,
'sea_level': 1031.83,
'temp': 12.98,
'temp_max': 12.98,
'temp_min': 12.98},
'name': 'Tuatapere',
'sys': {'country': 'NZ',
'message': 0.0064,
'sunrise': 1520361180,
'sunset': 1520407603},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 222.501, 'speed': 4.21}}
duplicate city: hasaki,jp
duplicate city: ola,ru
city generated: mys shmidta,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFE5240>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: coihaique,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C23BA8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
duplicate city: atuona,pf
duplicate city: ahipara,nz
duplicate city: rikitea,pf
duplicate city: nikolskoye,ru
duplicate city: carnarvon,au
city generated: klaksvik,fo
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F76940>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: cape town,za
duplicate city: belushya guba,ru
duplicate city: nome,us
duplicate city: kruisfontein,za
duplicate city: broken hill,au
duplicate city: ushuaia,ar
city generated: warqla,dz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19EDE550>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: klaksvik,fo
duplicate city: yellowknife,ca
duplicate city: east london,za
duplicate city: hilo,us
city generated: andenes,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A93C080>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: kazalinsk,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A723358>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: yellowknife,ca
city generated: severo-kurilsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B071438>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mataura,pf
city generated: codrington,ag
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF198F7E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -28.95, 'lon': 153.24},
'dt': 1520400128,
'id': 2160063,
'main': {'grnd_level': 1006.24,
'humidity': 78,
'pressure': 1006.24,
'sea_level': 1032.16,
'temp': 21.2,
'temp_max': 21.2,
'temp_min': 21.2},
'name': 'Codrington',
'rain': {'3h': 0.14},
'sys': {'country': 'AU',
'message': 0.0035,
'sunrise': 1520365345,
'sunset': 1520410399},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 143.501, 'speed': 4.36}}
duplicate city: kruisfontein,za
duplicate city: lavrentiya,ru
city generated: nouadhibou,mr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7A8438>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: rodrigues alves,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B10DA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -7.74, 'lon': -72.65},
'dt': 1520395200,
'id': 3665210,
'main': {'humidity': 94,
'pressure': 1013,
'temp': 23,
'temp_max': 23,
'temp_min': 23},
'name': 'Rodrigues Alves',
'sys': {'country': 'BR',
'id': 4485,
'message': 0.0174,
'sunrise': 1520420124,
'sunset': 1520464050,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 300.001, 'speed': 1.06}}
duplicate city: hermanus,za
duplicate city: cape town,za
duplicate city: ponta do sol,cv
duplicate city: taolanaro,mg
city generated: bassila,bj
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A17358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 9, 'lon': 1.66},
'dt': 1520400129,
'id': 2395261,
'main': {'grnd_level': 987.11,
'humidity': 78,
'pressure': 987.11,
'sea_level': 1023.36,
'temp': 22.65,
'temp_max': 22.65,
'temp_min': 22.65},
'name': 'Bassila',
'sys': {'country': 'BJ',
'message': 0.0035,
'sunrise': 1520402657,
'sunset': 1520445868},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 184.501, 'speed': 3.81}}
city generated: manokwari,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A26EC88>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bluff,nz
city generated: yasothon,th
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1C57B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 15.8, 'lon': 104.15},
'dt': 1520395200,
'id': 1604769,
'main': {'humidity': 55,
'pressure': 1013,
'temp': 31,
'temp_max': 31,
'temp_min': 31},
'name': 'Yasothon',
'sys': {'country': 'TH',
'id': 7976,
'message': 0.0043,
'sunrise': 1520378221,
'sunset': 1520421122,
'type': 1},
'visibility': 5000,
'weather': [{'description': 'haze', 'icon': '50d', 'id': 721, 'main': 'Haze'}],
'wind': {'deg': 130, 'speed': 2.6}}
duplicate city: dikson,ru
city generated: san andres,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D18BE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 13.32, 'lon': 122.68},
'dt': 1520400131,
'id': 1690438,
'main': {'grnd_level': 1020.42,
'humidity': 96,
'pressure': 1020.42,
'sea_level': 1023.04,
'temp': 28.28,
'temp_max': 28.28,
'temp_min': 28.28},
'name': 'San Andres',
'sys': {'country': 'PH',
'message': 0.0039,
'sunrise': 1520373719,
'sunset': 1520416729},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 45.0009, 'speed': 5.86}}
city generated: lokosovo,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFB8C18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 61.13, 'lon': 74.84},
'dt': 1520400131,
'id': 1500399,
'main': {'grnd_level': 987.35,
'humidity': 85,
'pressure': 987.35,
'sea_level': 992.76,
'temp': 1.18,
'temp_max': 1.18,
'temp_min': 1.18},
'name': 'Lokosovo',
'sys': {'country': 'RU',
'message': 0.0071,
'sunrise': 1520386991,
'sunset': 1520426484},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 153.001, 'speed': 7.36}}
city generated: brakel,de
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19DE3320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 51.72, 'lon': 9.18},
'dt': 1520398200,
'id': 2945542,
'main': {'humidity': 100,
'pressure': 991,
'temp': 0.89,
'temp_max': 4,
'temp_min': -1},
'name': 'Brakel',
'sys': {'country': 'DE',
'id': 4926,
'message': 0.0035,
'sunrise': 1520402121,
'sunset': 1520442844,
'type': 1},
'visibility': 5000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 160, 'speed': 1.5}}
city generated: mapimi,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A83DF60>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ahipara,nz
city generated: itarema,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AAC358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': -2.92, 'lon': -39.92},
'dt': 1520400133,
'id': 3393692,
'main': {'grnd_level': 1017.51,
'humidity': 93,
'pressure': 1017.51,
'sea_level': 1023.16,
'temp': 25.48,
'temp_max': 25.48,
'temp_min': 25.48},
'name': 'Itarema',
'sys': {'country': 'BR',
'message': 0.0031,
'sunrise': 1520412376,
'sunset': 1520456094},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 86.0009, 'speed': 1.91}}
duplicate city: taolanaro,mg
duplicate city: umzimvubu,za
duplicate city: faya,td
city generated: kota belud,my
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8CA940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 6.35, 'lon': 116.43},
'dt': 1520398800,
'id': 1736660,
'main': {'humidity': 62,
'pressure': 1008,
'temp': 32,
'temp_max': 32,
'temp_min': 32},
'name': 'Kota Belud',
'sys': {'country': 'MY',
'id': 8114,
'message': 0.0051,
'sunrise': 1520375063,
'sunset': 1520418379,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'speed': 2.6}}
city generated: neya,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFEE1D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 58.29, 'lon': 43.89},
'dt': 1520400133,
'id': 522353,
'main': {'grnd_level': 1016.37,
'humidity': 62,
'pressure': 1016.37,
'sea_level': 1034.83,
'temp': -22.1,
'temp_max': -22.1,
'temp_min': -22.1},
'name': 'Neya',
'sys': {'country': 'RU',
'message': 0.0034,
'sunrise': 1520394189,
'sunset': 1520434132},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 261.501, 'speed': 2.21}}
duplicate city: cape town,za
city generated: kloulklubed,pw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACCEAC8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: torbay,ca
duplicate city: saint-philippe,re
city generated: semnan,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A487FD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 35.58, 'lon': 53.39},
'dt': 1520400134,
'id': 116402,
'main': {'grnd_level': 897.3,
'humidity': 68,
'pressure': 897.3,
'sea_level': 1028.75,
'temp': 13.38,
'temp_max': 13.38,
'temp_min': 13.38},
'name': 'Semnan',
'sys': {'country': 'IR',
'message': 0.0033,
'sunrise': 1520390906,
'sunset': 1520432817},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 206.501, 'speed': 2.96}}
duplicate city: ushuaia,ar
duplicate city: port alfred,za
duplicate city: ushuaia,ar
duplicate city: mataura,pf
city generated: acapulco,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7C9320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 16.86, 'lon': -99.88},
'dt': 1520397780,
'id': 3533462,
'main': {'humidity': 83,
'pressure': 1012,
'temp': 25,
'temp_max': 25,
'temp_min': 25},
'name': 'Acapulco',
'sys': {'country': 'MX',
'id': 3965,
'message': 0.0064,
'sunrise': 1520427189,
'sunset': 1520470073,
'type': 1},
'visibility': 9656,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 316.501, 'speed': 1.66}}
duplicate city: esperance,au
city generated: port macquarie,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19962A90>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -31.43, 'lon': 152.91},
'dt': 1520398800,
'id': 2152659,
'main': {'humidity': 57,
'pressure': 1023,
'temp': 24,
'temp_max': 24,
'temp_min': 24},
'name': 'Port Macquarie',
'sys': {'country': 'AU',
'id': 8239,
'message': 0.003,
'sunrise': 1520365343,
'sunset': 1520410556,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 130, 'speed': 6.2}}
city generated: hualmay,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9C2048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -11.1, 'lon': -77.61},
'dt': 1520400135,
'id': 3939761,
'main': {'grnd_level': 985.33,
'humidity': 80,
'pressure': 985.33,
'sea_level': 1024.25,
'temp': 17.93,
'temp_max': 17.93,
'temp_min': 17.93},
'name': 'Hualmay',
'sys': {'country': 'PE',
'message': 0.0047,
'sunrise': 1520421238,
'sunset': 1520465313},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 122.001, 'speed': 1.06}}
duplicate city: lagoa,pt
duplicate city: qaanaaq,gl
city generated: bay roberts,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B6E9B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 47.58, 'lon': -53.28},
'dt': 1520398800,
'id': 5895424,
'main': {'humidity': 92,
'pressure': 1011,
'temp': -1,
'temp_max': -1,
'temp_min': -1},
'name': 'Bay Roberts',
'sys': {'country': 'CA',
'id': 3467,
'message': 0.0036,
'sunrise': 1520416900,
'sunset': 1520458033,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 40, 'gust': 13.9, 'speed': 10.3}}
duplicate city: bengkulu,id
city generated: merauke,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2704A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 100},
'cod': 200,
'coord': {'lat': -8.49, 'lon': 140.4},
'dt': 1520400136,
'id': 2082539,
'main': {'grnd_level': 1015.24,
'humidity': 100,
'pressure': 1015.24,
'sea_level': 1015.66,
'temp': 25.78,
'temp_max': 25.78,
'temp_min': 25.78},
'name': 'Merauke',
'rain': {'3h': 4.37},
'sys': {'country': 'ID',
'message': 0.0034,
'sunrise': 1520368975,
'sunset': 1520412951},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 296.501, 'speed': 7.91}}
duplicate city: nanortalik,gl
duplicate city: amderma,ru
city generated: cidreira,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A6E518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': -30.17, 'lon': -50.22},
'dt': 1520400136,
'id': 3466165,
'main': {'grnd_level': 1015.8,
'humidity': 92,
'pressure': 1015.8,
'sea_level': 1025.75,
'temp': 18.68,
'temp_max': 18.68,
'temp_min': 18.68},
'name': 'Cidreira',
'sys': {'country': 'BR',
'message': 0.0027,
'sunrise': 1520414159,
'sunset': 1520459228},
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 221.501, 'speed': 2.31}}
duplicate city: kodiak,us
duplicate city: broken hill,au
duplicate city: hobart,au
duplicate city: illoqqortoormiut,gl
duplicate city: port elizabeth,za
duplicate city: hithadhoo,mv
duplicate city: busselton,au
duplicate city: ushuaia,ar
duplicate city: puerto ayora,ec
city generated: tuktoyaktuk,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BCCD68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 69.44, 'lon': -133.03},
'dt': 1520398800,
'id': 6170031,
'main': {'humidity': 77,
'pressure': 1017,
'temp': -12.95,
'temp_max': -10,
'temp_min': -17},
'name': 'Tuktoyaktuk',
'sys': {'country': 'CA',
'id': 3555,
'message': 0.0043,
'sunrise': 1520437660,
'sunset': 1520475610,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 160, 'speed': 2.6}}
city generated: ahar,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A473A58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 38.48, 'lon': 47.07},
'dt': 1520400137,
'id': 144616,
'main': {'grnd_level': 823.21,
'humidity': 67,
'pressure': 823.21,
'sea_level': 1031.14,
'temp': 8.3,
'temp_max': 8.3,
'temp_min': 8.3},
'name': 'Ahar',
'sys': {'country': 'IR',
'message': 0.0029,
'sunrise': 1520392512,
'sunset': 1520434248},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 252.001, 'speed': 2.61}}
duplicate city: georgetown,sh
city generated: karratha,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19958BA8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -20.74, 'lon': 116.85},
'dt': 1520400137,
'id': 6620339,
'main': {'grnd_level': 1005.11,
'humidity': 23,
'pressure': 1005.11,
'sea_level': 1018.13,
'temp': 39.78,
'temp_max': 39.78,
'temp_min': 39.78},
'name': 'Karratha',
'sys': {'country': 'AU',
'message': 0.0032,
'sunrise': 1520374321,
'sunset': 1520418896},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 77.0009, 'speed': 1.96}}
city generated: grande-riviere,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B8D780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: punta arenas,cl
duplicate city: chuy,uy
duplicate city: nome,us
city generated: bubaque,gw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A175D30>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tuktoyaktuk,ca
duplicate city: upernavik,gl
duplicate city: khatanga,ru
city generated: quelimane,mz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8DADA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -17.88, 'lon': 36.89},
'dt': 1520400138,
'id': 1028434,
'main': {'grnd_level': 1022.29,
'humidity': 97,
'pressure': 1022.29,
'sea_level': 1023.24,
'temp': 27.03,
'temp_max': 27.03,
'temp_min': 27.03},
'name': 'Quelimane',
'rain': {'3h': 0.3},
'sys': {'country': 'MZ',
'message': 0.0052,
'sunrise': 1520393591,
'sunset': 1520438003},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 206.501, 'speed': 2.96}}
city generated: tomatlan,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8A4D30>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: new norfolk,au
duplicate city: lagoa,pt
duplicate city: qaanaaq,gl
duplicate city: pangoa,pe
duplicate city: lebu,cl
city generated: cedar city,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6AC7B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 37.68, 'lon': -113.06},
'dt': 1520398380,
'id': 5536630,
'main': {'humidity': 73,
'pressure': 1024,
'temp': -3,
'temp_max': -3,
'temp_min': -3},
'name': 'Cedar City',
'sys': {'country': 'US',
'id': 2806,
'message': 0.0038,
'sunrise': 1520430879,
'sunset': 1520472730,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 130, 'speed': 3.1}}
city generated: korla,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C69780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: cherskiy,ru
duplicate city: rikitea,pf
city generated: sao felix do xingu,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B22940>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: port alfred,za
duplicate city: torbay,ca
duplicate city: nikolskoye,ru
duplicate city: castro,cl
city generated: silver city,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A600EB8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 32.77, 'lon': -108.28},
'dt': 1520398500,
'id': 5491487,
'main': {'humidity': 31,
'pressure': 1023,
'temp': 1,
'temp_max': 1,
'temp_min': 1},
'name': 'Silver City',
'sys': {'country': 'US',
'id': 2031,
'message': 0.0041,
'sunrise': 1520429591,
'sunset': 1520471718,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 350, 'speed': 4.1}}
duplicate city: punta arenas,cl
duplicate city: upernavik,gl
duplicate city: mataura,pf
duplicate city: atuona,pf
duplicate city: rikitea,pf
city generated: mocuba,mz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8DA9B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -16.84, 'lon': 36.99},
'dt': 1520400141,
'id': 1024312,
'main': {'grnd_level': 1003.81,
'humidity': 99,
'pressure': 1003.81,
'sea_level': 1023.32,
'temp': 23.78,
'temp_max': 23.78,
'temp_min': 23.78},
'name': 'Mocuba',
'rain': {'3h': 0.24},
'sys': {'country': 'MZ',
'message': 0.0049,
'sunrise': 1520393593,
'sunset': 1520437954},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 247.501, 'speed': 2.86}}
city generated: ode,ng
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8F9E10>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 7.79, 'lon': 5.71},
'dt': 1520400142,
'id': 2328090,
'main': {'grnd_level': 976.41,
'humidity': 95,
'pressure': 976.41,
'sea_level': 1023.65,
'temp': 21.45,
'temp_max': 21.45,
'temp_min': 21.45},
'name': 'Ode',
'sys': {'country': 'NG',
'message': 0.0027,
'sunrise': 1520401659,
'sunset': 1520444921},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 218.501, 'speed': 4.56}}
duplicate city: rikitea,pf
duplicate city: hobart,au
duplicate city: mataura,pf
city generated: dandong,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C48748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 40.12, 'lon': 124.37},
'dt': 1520400142,
'id': 2037886,
'main': {'grnd_level': 1027.72,
'humidity': 41,
'pressure': 1027.72,
'sea_level': 1040.87,
'temp': 2.48,
'temp_max': 2.48,
'temp_min': 2.48},
'name': 'Dandong',
'sys': {'country': 'CN',
'message': 0.0042,
'sunrise': 1520374035,
'sunset': 1520415630},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 181.501, 'speed': 3.41}}
duplicate city: new norfolk,au
duplicate city: nabire,id
duplicate city: nabire,id
city generated: foki,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF22278>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: dikson,ru
duplicate city: marcona,pe
duplicate city: thompson,ca
duplicate city: mys shmidta,ru
city generated: gamba,ga
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FFB1D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 28.28, 'lon': 88.52},
'dt': 1520400143,
'id': 1281256,
'main': {'grnd_level': 561.87,
'humidity': 57,
'pressure': 561.87,
'sea_level': 1026.89,
'temp': -7.53,
'temp_max': -7.53,
'temp_min': -7.53},
'name': 'Gamba',
'sys': {'country': 'CN',
'message': 0.0038,
'sunrise': 1520382276,
'sunset': 1520424580},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 333.501, 'speed': 2.91}}
city generated: muli,mv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7BEC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 22.62, 'lon': 71.45},
'dt': 1520400143,
'id': 1256929,
'main': {'grnd_level': 1015.48,
'humidity': 20,
'pressure': 1015.48,
'sea_level': 1025.23,
'temp': 30.55,
'temp_max': 30.55,
'temp_min': 30.55},
'name': 'Muli',
'sys': {'country': 'IN',
'message': 0.0033,
'sunrise': 1520386226,
'sunset': 1520428816},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 68.0009, 'speed': 3.76}}
duplicate city: port alfred,za
city generated: tasiilaq,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A0980B8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: kapaa,us
city generated: kirakira,sb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B130668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': -10.46, 'lon': 161.92},
'dt': 1520400144,
'id': 2178753,
'main': {'grnd_level': 1012.89,
'humidity': 100,
'pressure': 1012.89,
'sea_level': 1015.9,
'temp': 27.65,
'temp_max': 27.65,
'temp_min': 27.65},
'name': 'Kirakira',
'sys': {'country': 'SB',
'message': 0.003,
'sunrise': 1520363763,
'sunset': 1520407833},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 352.501, 'speed': 3.61}}
duplicate city: victoria,sc
city generated: tawang,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A44D0F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 27.59, 'lon': 91.87},
'dt': 1520400145,
'id': 1254832,
'main': {'grnd_level': 688.57,
'humidity': 27,
'pressure': 688.57,
'sea_level': 1024.5,
'temp': 8.9,
'temp_max': 8.9,
'temp_min': 8.9},
'name': 'Tawang',
'sys': {'country': 'BT',
'message': 0.0029,
'sunrise': 1520381454,
'sunset': 1520423793},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 237.001, 'speed': 0.61}}
city generated: jijiang,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C649B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 29.8, 'lon': 120.61},
'dt': 1520397000,
'id': 1791888,
'main': {'humidity': 100,
'pressure': 1021,
'temp': 9,
'temp_max': 9,
'temp_min': 9},
'name': 'Jijiang',
'sys': {'country': 'CN',
'id': 7443,
'message': 0.003,
'sunrise': 1520374621,
'sunset': 1520416836,
'type': 1},
'visibility': 3500,
'weather': [{'description': 'shower rain',
'icon': '09d',
'id': 521,
'main': 'Rain'},
{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 70, 'speed': 3}}
duplicate city: punta arenas,cl
duplicate city: taolanaro,mg
duplicate city: arraial do cabo,br
city generated: paamiut,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A093D30>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: puerto ayora,ec
duplicate city: bluff,nz
city generated: vanimo,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E8550>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: busselton,au
duplicate city: tuktoyaktuk,ca
city generated: shenjiamen,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C87438>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: zhigansk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1246D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': 66.77, 'lon': 123.37},
'dt': 1520400146,
'id': 2012530,
'main': {'grnd_level': 1032.02,
'humidity': 57,
'pressure': 1032.02,
'sea_level': 1041.32,
'temp': -24.2,
'temp_max': -24.2,
'temp_min': -24.2},
'name': 'Zhigansk',
'sys': {'country': 'RU',
'message': 0.0034,
'sunrise': 1520375942,
'sunset': 1520414263},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 332.001, 'speed': 2.91}}
duplicate city: albany,au
city generated: buraydah,sa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B12F6A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 26.33, 'lon': 43.97},
'dt': 1520395200,
'id': 107304,
'main': {'humidity': 63,
'pressure': 1018,
'temp': 16,
'temp_max': 16,
'temp_min': 16},
'name': 'Buraydah',
'sys': {'country': 'SA',
'id': 6984,
'message': 0.0044,
'sunrise': 1520392910,
'sunset': 1520435325,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 230, 'speed': 2.1}}
duplicate city: castro,cl
city generated: salinopolis,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B13A90>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ushuaia,ar
city generated: gidam,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A339CF8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 18.98, 'lon': 81.4},
'dt': 1520400147,
'id': 1271215,
'main': {'grnd_level': 961.98,
'humidity': 36,
'pressure': 961.98,
'sea_level': 1025.59,
'temp': 32.28,
'temp_max': 32.28,
'temp_min': 32.28},
'name': 'Gidam',
'sys': {'country': 'IN',
'message': 0.0032,
'sunrise': 1520383753,
'sunset': 1520426512},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 71.0009, 'speed': 1.76}}
city generated: saint-francois,gp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A0A0C50>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ushuaia,ar
city generated: barbate,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F1BB70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 36.19, 'lon': -5.92},
'dt': 1520398800,
'id': 6356922,
'main': {'humidity': 93,
'pressure': 1012,
'temp': 9.75,
'temp_max': 12,
'temp_min': 7},
'name': 'Barbate',
'sys': {'country': 'ES',
'id': 6157,
'message': 0.0039,
'sunrise': 1520405145,
'sunset': 1520447043,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 360, 'speed': 2.1}}
duplicate city: saskylakh,ru
duplicate city: port alfred,za
duplicate city: lebu,cl
city generated: neiafu,to
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1DD588>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hilo,us
duplicate city: hasaki,jp
duplicate city: chokurdakh,ru
city generated: gari,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF24198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 59.43, 'lon': 62.35},
'dt': 1520400150,
'id': 1506676,
'main': {'grnd_level': 997.49,
'humidity': 53,
'pressure': 997.49,
'sea_level': 1009.5,
'temp': -13.73,
'temp_max': -13.73,
'temp_min': -13.73},
'name': 'Gari',
'sys': {'country': 'RU',
'message': 0.0033,
'sunrise': 1520389849,
'sunset': 1520429615},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 289.001, 'speed': 5.31}}
duplicate city: punta arenas,cl
duplicate city: najran,sa
city generated: lata,sb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B130710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 30.78, 'lon': 78.62},
'dt': 1520400150,
'id': 1253628,
'main': {'grnd_level': 785.6,
'humidity': 60,
'pressure': 785.6,
'sea_level': 1025.47,
'temp': 13.7,
'temp_max': 13.7,
'temp_min': 13.7},
'name': 'Lata',
'sys': {'country': 'IN',
'message': 0.0037,
'sunrise': 1520384718,
'sunset': 1520426892},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 193.001, 'speed': 0.81}}
duplicate city: port alfred,za
duplicate city: rikitea,pf
city generated: arlit,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E5630>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 18.74, 'lon': 7.39},
'dt': 1520400151,
'id': 2447513,
'main': {'grnd_level': 973.41,
'humidity': 43,
'pressure': 973.41,
'sea_level': 1026.48,
'temp': 13.65,
'temp_max': 13.65,
'temp_min': 13.65},
'name': 'Arlit',
'sys': {'country': 'NE',
'message': 0.0033,
'sunrise': 1520401500,
'sunset': 1520444283},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 40.5009, 'speed': 1.36}}
city generated: cayenne,gf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A0896A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 4.94, 'lon': -52.33},
'dt': 1520397000,
'id': 3382160,
'main': {'humidity': 83,
'pressure': 1012,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Cayenne',
'sys': {'country': 'GF',
'id': 4338,
'message': 0.0081,
'sunrise': 1520415523,
'sunset': 1520458909,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 50, 'speed': 3.6}}
city generated: hay river,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B90BA8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 60.82, 'lon': -115.79},
'dt': 1520398800,
'id': 5972762,
'main': {'humidity': 84,
'pressure': 1023,
'temp': -14,
'temp_max': -14,
'temp_min': -14},
'name': 'Hay River',
'sys': {'country': 'CA',
'id': 3530,
'message': 0.0039,
'sunrise': 1520432619,
'sunset': 1520472342,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 230, 'speed': 2.1}}
duplicate city: lagoa,pt
duplicate city: yellowknife,ca
duplicate city: thompson,ca
city generated: vardo,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A973710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 39.62, 'lon': -77.74},
'dt': 1520398500,
'id': 4372777,
'main': {'humidity': 93,
'pressure': 1009,
'temp': 1.49,
'temp_max': 2,
'temp_min': 1},
'name': 'Vardo',
'sys': {'country': 'US',
'id': 1333,
'message': 0.0052,
'sunrise': 1520422472,
'sunset': 1520464188,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'},
{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 90, 'speed': 3.1}}
city generated: jamiltepec,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A82D198>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: nanortalik,gl
city generated: san luis,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992C550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -33.3, 'lon': -66.34},
'dt': 1520400154,
'id': 3837056,
'main': {'grnd_level': 968.71,
'humidity': 55,
'pressure': 968.71,
'sea_level': 1027.37,
'temp': 18.3,
'temp_max': 18.3,
'temp_min': 18.3},
'name': 'San Luis',
'sys': {'country': 'AR',
'message': 0.0042,
'sunrise': 1520417928,
'sunset': 1520463191},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 68.5009, 'speed': 2.66}}
city generated: balkhash,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A71BBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': 46.84, 'lon': 74.98},
'dt': 1520400154,
'id': 1525798,
'main': {'grnd_level': 994.08,
'humidity': 100,
'pressure': 994.08,
'sea_level': 1040.18,
'temp': -4.53,
'temp_max': -4.53,
'temp_min': -4.53},
'name': 'Balkhash',
'sys': {'country': 'KZ',
'message': 0.003,
'sunrise': 1520386128,
'sunset': 1520427249},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 262.501, 'speed': 7.16}}
duplicate city: hobart,au
city generated: margate,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6C6940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -43.03, 'lon': 147.26},
'dt': 1520398800,
'id': 2158744,
'main': {'humidity': 64,
'pressure': 1026,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'Margate',
'sys': {'country': 'AU',
'id': 8195,
'message': 0.0038,
'sunrise': 1520366242,
'sunset': 1520412351,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 170, 'speed': 7.2}}
city generated: omboue,ga
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FFE278>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: arraial do cabo,br
city generated: wanning,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C90B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 48.64, 'lon': 13.53},
'dt': 1520398200,
'id': 3220813,
'main': {'humidity': 100,
'pressure': 995,
'temp': 0,
'temp_max': 0,
'temp_min': 0},
'name': 'Wanning',
'sys': {'country': 'AT',
'id': 5932,
'message': 0.0038,
'sunrise': 1520400934,
'sunset': 1520441938,
'type': 1},
'visibility': 1200,
'weather': [{'description': 'light intensity drizzle',
'icon': '09n',
'id': 300,
'main': 'Drizzle'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'speed': 1}}
duplicate city: yellowknife,ca
duplicate city: saldanha,za
city generated: pasni,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC3FC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.26, 'lon': 63.48},
'dt': 1520400156,
'id': 1168312,
'main': {'grnd_level': 1025.45,
'humidity': 67,
'pressure': 1025.45,
'sea_level': 1026.93,
'temp': 26.48,
'temp_max': 26.48,
'temp_min': 26.48},
'name': 'Pasni',
'sys': {'country': 'PK',
'message': 0.0038,
'sunrise': 1520388203,
'sunset': 1520430667},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 341.001, 'speed': 2.61}}
duplicate city: touros,br
duplicate city: punta arenas,cl
city generated: luwuk,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A26E358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -0.95, 'lon': 122.79},
'dt': 1520400156,
'id': 1637001,
'main': {'grnd_level': 1004.7,
'humidity': 95,
'pressure': 1004.7,
'sea_level': 1020.61,
'temp': 27.08,
'temp_max': 27.08,
'temp_min': 27.08},
'name': 'Luwuk',
'sys': {'country': 'ID',
'message': 0.0032,
'sunrise': 1520373374,
'sunset': 1520417010},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 283.501, 'speed': 1.06}}
city generated: billings,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5D0470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 45.79, 'lon': -108.5},
'dt': 1520398380,
'id': 5640350,
'main': {'humidity': 85,
'pressure': 1023,
'temp': -6,
'temp_max': -6,
'temp_min': -6},
'name': 'Billings',
'sys': {'country': 'US',
'id': 1717,
'message': 0.0038,
'sunrise': 1520430064,
'sunset': 1520471368,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 144.501, 'speed': 1.16}}
duplicate city: victoria,sc
duplicate city: rikitea,pf
city generated: cabedelo,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A54160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -6.97, 'lon': -34.84},
'dt': 1520395200,
'id': 3404558,
'main': {'humidity': 88,
'pressure': 1012,
'temp': 25,
'temp_max': 25,
'temp_min': 25},
'name': 'Cabedelo',
'sys': {'country': 'BR',
'id': 4516,
'message': 0.0037,
'sunrise': 1520411067,
'sunset': 1520454961,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'speed': 1}}
duplicate city: bluff,nz
duplicate city: punta arenas,cl
duplicate city: pevek,ru
city generated: mucurapo,tt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2036A0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: leningradskiy,ru
duplicate city: busselton,au
city generated: kutum,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B134710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.2, 'lon': 24.66},
'dt': 1520400158,
'id': 371745,
'main': {'grnd_level': 899.73,
'humidity': 20,
'pressure': 899.73,
'sea_level': 1027.82,
'temp': 16.2,
'temp_max': 16.2,
'temp_min': 16.2},
'name': 'Kutum',
'sys': {'country': 'SD',
'message': 0.003,
'sunrise': 1520397254,
'sunset': 1520440237},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 71.0009, 'speed': 3.01}}
duplicate city: saskylakh,ru
duplicate city: bredasdorp,za
duplicate city: mys shmidta,ru
duplicate city: thompson,ca
duplicate city: mataura,pf
duplicate city: lasa,cn
city generated: dubbo,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199556A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -32.25, 'lon': 148.6},
'dt': 1520398800,
'id': 2168305,
'main': {'humidity': 34,
'pressure': 1021,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Dubbo',
'sys': {'country': 'AU',
'id': 8229,
'message': 0.0031,
'sunrise': 1520366350,
'sunset': 1520411616,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 60, 'speed': 7.2}}
duplicate city: illoqqortoormiut,gl
city generated: forest acres,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A678198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 34.02, 'lon': -80.99},
'dt': 1520398560,
'id': 4578841,
'main': {'humidity': 81,
'pressure': 1009,
'temp': 10.56,
'temp_max': 14,
'temp_min': 7},
'name': 'Forest Acres',
'sys': {'country': 'US',
'id': 2410,
'message': 0.0041,
'sunrise': 1520423082,
'sunset': 1520465131,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'},
{'description': 'thunderstorm',
'icon': '11n',
'id': 211,
'main': 'Thunderstorm'}],
'wind': {'deg': 300, 'gust': 8.2, 'speed': 5.1}}
city generated: port blair,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3FD780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
duplicate city: ushuaia,ar
duplicate city: chuy,uy
duplicate city: albany,au
duplicate city: taolanaro,mg
duplicate city: jamestown,sh
duplicate city: punta arenas,cl
duplicate city: mahebourg,mu
duplicate city: hobart,au
city generated: nedjo,et
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F63CC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 9.5, 'lon': 35.5},
'dt': 1520400160,
'id': 330120,
'main': {'grnd_level': 854.5,
'humidity': 26,
'pressure': 854.5,
'sea_level': 1023.28,
'temp': 23.08,
'temp_max': 23.08,
'temp_min': 23.08},
'name': 'NEDJO',
'sys': {'country': 'ET',
'message': 0.0035,
'sunrise': 1520394549,
'sunset': 1520437735},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 217.501, 'speed': 1.76}}
city generated: porbandar,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3FD5F8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vaini,to
duplicate city: vaini,to
duplicate city: tsihombe,mg
duplicate city: grand river south east,mu
city generated: stornoway,gb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A06CAC8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: pevek,ru
duplicate city: illoqqortoormiut,gl
city generated: alice springs,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1994CDA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -23.7, 'lon': 133.88},
'dt': 1520398800,
'id': 2077895,
'main': {'humidity': 24,
'pressure': 1009,
'temp': 33,
'temp_max': 33,
'temp_min': 33},
'name': 'Alice Springs',
'sys': {'country': 'AU',
'id': 8163,
'message': 0.0036,
'sunrise': 1520370151,
'sunset': 1520414890,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 120, 'speed': 7.2}}
duplicate city: nizhneyansk,ru
city generated: ketchikan,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CB9B0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: mareeba,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1995BC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -16.99, 'lon': 145.42},
'dt': 1520398800,
'id': 2158767,
'main': {'humidity': 83,
'pressure': 1004,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Mareeba',
'sys': {'country': 'AU',
'id': 8166,
'message': 0.006,
'sunrise': 1520367562,
'sunset': 1520411947,
'type': 1},
'visibility': 9000,
'weather': [{'description': 'shower rain',
'icon': '09d',
'id': 521,
'main': 'Rain'}],
'wind': {'deg': 190, 'speed': 4.1}}
duplicate city: faanui,pf
city generated: cape elizabeth,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B3B9F98>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
duplicate city: rikitea,pf
duplicate city: chokurdakh,ru
duplicate city: mataura,pf
duplicate city: atuona,pf
duplicate city: rikitea,pf
duplicate city: busselton,au
duplicate city: butaritari,ki
duplicate city: hithadhoo,mv
duplicate city: rikitea,pf
duplicate city: punta arenas,cl
city generated: krasnousolskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF91C50>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tasiilaq,gl
duplicate city: belushya guba,ru
duplicate city: new norfolk,au
duplicate city: vaini,to
duplicate city: bambous virieux,mu
city generated: superior,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6DEDA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 39.95, 'lon': -105.17},
'dt': 1520398800,
'id': 5440838,
'main': {'humidity': 45,
'pressure': 1026,
'temp': -3.92,
'temp_max': 0,
'temp_min': -10},
'name': 'Superior',
'sys': {'country': 'US',
'id': 602,
'message': 0.0052,
'sunrise': 1520429059,
'sunset': 1520470766,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 100, 'speed': 2.1}}
city generated: meyungs,pw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACCEC88>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vaini,to
duplicate city: rikitea,pf
duplicate city: arraial do cabo,br
duplicate city: cape town,za
duplicate city: mataura,pf
duplicate city: castro,cl
duplicate city: georgetown,sh
duplicate city: vaitupu,wf
duplicate city: atuona,pf
duplicate city: albany,au
city generated: kumluca,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1F2D68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 36.37, 'lon': 30.29},
'dt': 1520400164,
'id': 305681,
'main': {'grnd_level': 869.01,
'humidity': 81,
'pressure': 869.01,
'sea_level': 1028.75,
'temp': 5.2,
'temp_max': 5.2,
'temp_min': 5.2},
'name': 'Kumluca',
'sys': {'country': 'TR',
'message': 0.0071,
'sunrise': 1520396469,
'sunset': 1520438342},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 176.501, 'speed': 0.71}}
duplicate city: mys shmidta,ru
duplicate city: provideniya,ru
city generated: huarmey,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9C2828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -10.07, 'lon': -78.15},
'dt': 1520400164,
'id': 3939168,
'main': {'grnd_level': 954.28,
'humidity': 82,
'pressure': 954.28,
'sea_level': 1024.21,
'temp': 16.88,
'temp_max': 16.88,
'temp_min': 16.88},
'name': 'Huarmey',
'sys': {'country': 'PE',
'message': 0.0039,
'sunrise': 1520421391,
'sunset': 1520465420},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 54.0009, 'speed': 0.86}}
city generated: hovd,mn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7A50F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 63.83, 'lon': 10.7},
'dt': 1520398200,
'id': 7626384,
'main': {'humidity': 85,
'pressure': 1001,
'temp': -8.88,
'temp_max': -6,
'temp_min': -12},
'name': 'Hovd',
'sys': {'country': 'NO',
'id': 5341,
'message': 0.0039,
'sunrise': 1520402590,
'sunset': 1520441676,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 70, 'speed': 2.1}}
city generated: makat,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A723BA8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 47.65, 'lon': 53.35},
'dt': 1520400165,
'id': 608872,
'main': {'grnd_level': 1044.34,
'humidity': 100,
'pressure': 1044.34,
'sea_level': 1041.32,
'temp': -8.1,
'temp_max': -8.1,
'temp_min': -8.1},
'name': 'Makat',
'sys': {'country': 'KZ',
'message': 0.0047,
'sunrise': 1520391347,
'sunset': 1520432412},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 122.001, 'speed': 3.41}}
duplicate city: khatanga,ru
duplicate city: nikolskoye,ru
city generated: stolin,by
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B68358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 51.89, 'lon': 26.85},
'dt': 1520400166,
'id': 621277,
'main': {'grnd_level': 993.68,
'humidity': 99,
'pressure': 993.68,
'sea_level': 1010.43,
'temp': 1.93,
'temp_max': 1.93,
'temp_min': 1.93},
'name': 'Stolin',
'rain': {'3h': 0.32},
'sys': {'country': 'BY',
'message': 0.0041,
'sunrise': 1520397895,
'sunset': 1520438590},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 127.501, 'speed': 4.81}}
city generated: mopti,ml
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A797EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.49, 'lon': -4.19},
'dt': 1520400166,
'id': 2453348,
'main': {'grnd_level': 990.6,
'humidity': 47,
'pressure': 990.6,
'sea_level': 1023.85,
'temp': 22.4,
'temp_max': 22.4,
'temp_min': 22.4},
'name': 'Mopti',
'sys': {'country': 'ML',
'message': 0.0042,
'sunrise': 1520404181,
'sunset': 1520447155},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 34.5009, 'speed': 5.66}}
duplicate city: bluff,nz
duplicate city: barrow,us
duplicate city: rikitea,pf
duplicate city: baruun-urt,mn
duplicate city: albany,au
duplicate city: norman wells,ca
city generated: le passage,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FB4A90>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 45.53, 'lon': 5.51},
'dt': 1520398800,
'id': 3006201,
'main': {'humidity': 93,
'pressure': 999,
'temp': 3.41,
'temp_max': 5,
'temp_min': 0},
'name': 'Le Passage',
'sys': {'country': 'FR',
'id': 5572,
'message': 0.0064,
'sunrise': 1520402726,
'sunset': 1520443989,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'speed': 1}}
city generated: point pedro,lk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7373C8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vaini,to
duplicate city: hithadhoo,mv
duplicate city: rikitea,pf
duplicate city: hobart,au
duplicate city: illoqqortoormiut,gl
duplicate city: castro,cl
duplicate city: te anau,nz
duplicate city: hay river,ca
duplicate city: ushuaia,ar
duplicate city: belushya guba,ru
city generated: agadez,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E5438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 16.97, 'lon': 7.99},
'dt': 1520395200,
'id': 2448085,
'main': {'humidity': 37,
'pressure': 1012,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Agadez',
'sys': {'country': 'NE',
'id': 6310,
'message': 0.0034,
'sunrise': 1520401315,
'sunset': 1520444178,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 20, 'speed': 4.1}}
duplicate city: dikson,ru
city generated: isangel,vu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6AE3C8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hobart,au
duplicate city: sao filipe,cv
duplicate city: lorengau,pg
duplicate city: katsuura,jp
duplicate city: vaini,to
city generated: caucasia,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CC4358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 7.98, 'lon': -75.2},
'dt': 1520400168,
'id': 3687025,
'main': {'grnd_level': 1007.62,
'humidity': 55,
'pressure': 1007.62,
'sea_level': 1021.13,
'temp': 29.23,
'temp_max': 29.23,
'temp_min': 29.23},
'name': 'Caucasia',
'sys': {'country': 'CO',
'message': 0.0028,
'sunrise': 1520421075,
'sunset': 1520464335},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 287.501, 'speed': 2.11}}
duplicate city: hermanus,za
city generated: nyagan,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B00E2E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 62.14, 'lon': 65.43},
'dt': 1520400169,
'id': 1496476,
'main': {'grnd_level': 988.73,
'humidity': 69,
'pressure': 988.73,
'sea_level': 996.89,
'temp': -9.55,
'temp_max': -9.55,
'temp_min': -9.55},
'name': 'Nyagan',
'sys': {'country': 'RU',
'message': 0.0038,
'sunrise': 1520389330,
'sunset': 1520428664},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 290.501, 'speed': 6.06}}
city generated: dawei,mm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A799E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 14.07, 'lon': 98.19},
'dt': 1520400169,
'id': 1293625,
'main': {'grnd_level': 993.76,
'humidity': 36,
'pressure': 993.76,
'sea_level': 1022.27,
'temp': 34.45,
'temp_max': 34.45,
'temp_min': 34.45},
'name': 'Dawei',
'sys': {'country': 'MM',
'message': 0.0029,
'sunrise': 1520379612,
'sunset': 1520422591},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 271.501, 'speed': 1.41}}
duplicate city: lasa,cn
city generated: sokoni,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B236E48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': -12.89, 'lon': 28.78},
'dt': 1520400169,
'id': 901344,
'main': {'grnd_level': 889.43,
'humidity': 96,
'pressure': 889.43,
'sea_level': 1024.62,
'temp': 20.03,
'temp_max': 20.03,
'temp_min': 20.03},
'name': 'Sokoni',
'sys': {'country': 'CD',
'message': 0.0038,
'sunrise': 1520395661,
'sunset': 1520439830},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 172.001, 'speed': 1.61}}
duplicate city: atuona,pf
duplicate city: hilo,us
duplicate city: saint george,bm
duplicate city: punta arenas,cl
duplicate city: arraial do cabo,br
duplicate city: ushuaia,ar
duplicate city: port alfred,za
city generated: namatanai,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E5F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -3.66, 'lon': 152.44},
'dt': 1520400170,
'id': 2090021,
'main': {'grnd_level': 1009.89,
'humidity': 97,
'pressure': 1009.89,
'sea_level': 1015.82,
'temp': 29.15,
'temp_max': 29.15,
'temp_min': 29.15},
'name': 'Namatanai',
'sys': {'country': 'PG',
'message': 0.0046,
'sunrise': 1520366197,
'sunset': 1520409954},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 250.001, 'speed': 7.96}}
city generated: hambantota,lk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A731BA8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: punta arenas,cl
duplicate city: castro,cl
duplicate city: kapaa,us
duplicate city: ushuaia,ar
city generated: mount gambier,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1995E748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -37.83, 'lon': 140.78},
'dt': 1520400171,
'id': 2156643,
'main': {'grnd_level': 1028.12,
'humidity': 39,
'pressure': 1028.12,
'sea_level': 1036.66,
'temp': 28.65,
'temp_max': 28.65,
'temp_min': 28.65},
'name': 'Mount Gambier',
'sys': {'country': 'AU',
'message': 0.0034,
'sunrise': 1520368023,
'sunset': 1520413689},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 147.001, 'speed': 0.91}}
city generated: marsh harbour,bs
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B57518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 26.54, 'lon': -77.06},
'dt': 1520400101,
'id': 3571913,
'main': {'grnd_level': 1029.75,
'humidity': 100,
'pressure': 1029.75,
'sea_level': 1029.89,
'temp': 21.58,
'temp_max': 21.58,
'temp_min': 21.58},
'name': 'Marsh Harbour',
'sys': {'country': 'BS',
'message': 0.0039,
'sunrise': 1520421942,
'sunset': 1520464378},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 191.001, 'speed': 6.06}}
duplicate city: kruisfontein,za
duplicate city: east london,za
duplicate city: ushuaia,ar
city generated: nara,ml
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A797E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 34.68, 'lon': 135.8},
'dt': 1520397000,
'id': 1855612,
'main': {'humidity': 46,
'pressure': 1028,
'temp': 10.48,
'temp_max': 12,
'temp_min': 9},
'name': 'Nara',
'sys': {'country': 'JP',
'id': 7514,
'message': 0.0037,
'sunrise': 1520371119,
'sunset': 1520413053,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 30, 'speed': 2.6}}
duplicate city: pangnirtung,ca
duplicate city: puerto ayora,ec
city generated: shar,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A725B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 7.3, 'lon': 8.73},
'dt': 1520400172,
'id': 2347266,
'main': {'grnd_level': 1005.35,
'humidity': 85,
'pressure': 1005.35,
'sea_level': 1023.81,
'temp': 24.45,
'temp_max': 24.45,
'temp_min': 24.45},
'name': 'Shar',
'sys': {'country': 'NG',
'message': 0.0034,
'sunrise': 1520400924,
'sunset': 1520444206},
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 211.501, 'speed': 6.01}}
city generated: alofi,nu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A97B048>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: jamestown,sh
city generated: kavaratti,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A37BC18>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: alice springs,au
city generated: antonina,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A35278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': -25.43, 'lon': -48.71},
'dt': 1520395200,
'id': 3472048,
'main': {'humidity': 100,
'pressure': 1015,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'Antonina',
'sys': {'country': 'BR',
'id': 4481,
'message': 0.0049,
'sunrise': 1520413938,
'sunset': 1520458730,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 150, 'speed': 3.1}}
city generated: shaunavon,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BC1748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 49.65, 'lon': -108.41},
'dt': 1520400174,
'id': 6145425,
'main': {'grnd_level': 927.04,
'humidity': 61,
'pressure': 927.04,
'sea_level': 1046.59,
'temp': -14.8,
'temp_max': -14.8,
'temp_min': -14.8},
'name': 'Shaunavon',
'sys': {'country': 'CA',
'message': 0.0038,
'sunrise': 1520430202,
'sunset': 1520471192},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 158.001, 'speed': 2.96}}
duplicate city: east london,za
duplicate city: samusu,ws
duplicate city: mataura,pf
duplicate city: chokurdakh,ru
duplicate city: saint-philippe,re
city generated: tabialan,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ABDFCF8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
duplicate city: bluff,nz
city generated: narsaq,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A093B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 60.91, 'lon': -46.05},
'dt': 1520398200,
'id': 3421719,
'main': {'humidity': 37,
'pressure': 1019,
'temp': -6,
'temp_max': -6,
'temp_min': -6},
'name': 'Narsaq',
'sys': {'country': 'GL',
'id': 4791,
'message': 0.0038,
'sunrise': 1520415924,
'sunset': 1520455568,
'type': 1},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 60, 'speed': 6.7}}
duplicate city: mataura,pf
city generated: palu,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A273D68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 100},
'cod': 200,
'coord': {'lat': -0.9, 'lon': 119.87},
'dt': 1520400175,
'id': 1633034,
'main': {'grnd_level': 904.35,
'humidity': 78,
'pressure': 904.35,
'sea_level': 1021.01,
'temp': 23.33,
'temp_max': 23.33,
'temp_min': 23.33},
'name': 'Palu',
'rain': {'3h': 0.45},
'sys': {'country': 'ID',
'message': 0.0034,
'sunrise': 1520374076,
'sunset': 1520417709},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 303.501, 'speed': 0.86}}
duplicate city: bokspits,bw
duplicate city: new norfolk,au
city generated: guerrero negro,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A818908>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 27.97, 'lon': -114.04},
'dt': 1520400176,
'id': 4021858,
'main': {'grnd_level': 1017.51,
'humidity': 94,
'pressure': 1017.51,
'sea_level': 1029.24,
'temp': 11.55,
'temp_max': 11.55,
'temp_min': 11.55},
'name': 'Guerrero Negro',
'sys': {'country': 'MX',
'message': 0.0041,
'sunrise': 1520430846,
'sunset': 1520473222},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 303.501, 'speed': 2.01}}
duplicate city: victoria,sc
duplicate city: paamiut,gl
city generated: himora,et
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F61AC8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: nikolskoye,ru
duplicate city: sibolga,id
duplicate city: port alfred,za
duplicate city: saint-philippe,re
city generated: emerald,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19955780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -23.53, 'lon': 148.16},
'dt': 1520400177,
'id': 2167426,
'main': {'grnd_level': 999.35,
'humidity': 48,
'pressure': 999.35,
'sea_level': 1021.9,
'temp': 30.55,
'temp_max': 30.55,
'temp_min': 30.55},
'name': 'Emerald',
'sys': {'country': 'AU',
'message': 0.0038,
'sunrise': 1520366727,
'sunset': 1520411460},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 101.501, 'speed': 7.56}}
duplicate city: kahului,us
duplicate city: hilo,us
duplicate city: tuatapere,nz
city generated: tefe,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B3EC18>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: cidreira,br
city generated: constitucion,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7FF630>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 23.99, 'lon': -104.67},
'dt': 1520400177,
'id': 4011743,
'main': {'grnd_level': 817.78,
'humidity': 41,
'pressure': 817.78,
'sea_level': 1026.36,
'temp': 11.8,
'temp_max': 11.8,
'temp_min': 11.8},
'name': 'Constitucion',
'sys': {'country': 'MX',
'message': 0.005,
'sunrise': 1520428501,
'sunset': 1520471066},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 264.501, 'speed': 3.11}}
city generated: kesennuma,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A568A58>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: muros,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F3F2E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 42.77, 'lon': -9.06},
'dt': 1520398800,
'id': 3115824,
'main': {'humidity': 93,
'pressure': 1007,
'temp': 4,
'temp_max': 4,
'temp_min': 4},
'name': 'Muros',
'sys': {'country': 'ES',
'id': 5500,
'message': 0.0035,
'sunrise': 1520406115,
'sunset': 1520447589,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 220, 'speed': 2.1}}
duplicate city: sitka,us
duplicate city: kapaa,us
duplicate city: belaya gora,ru
duplicate city: new norfolk,au
duplicate city: taolanaro,mg
city generated: mabaruma,gy
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A177908>
associated weather data:
{'base': 'stations',
'clouds': {'all': 100},
'cod': 200,
'coord': {'lat': 8.2, 'lon': -59.78},
'dt': 1520400178,
'id': 3377301,
'main': {'grnd_level': 1024.07,
'humidity': 93,
'pressure': 1024.07,
'sea_level': 1025.51,
'temp': 25.4,
'temp_max': 25.4,
'temp_min': 25.4},
'name': 'Mabaruma',
'sys': {'country': 'GY',
'message': 0.007,
'sunrise': 1520417380,
'sunset': 1520460630},
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 85.0009, 'speed': 3.56}}
duplicate city: cayenne,gf
duplicate city: tommot,ru
duplicate city: mataura,pf
duplicate city: avarua,ck
city generated: coquimbo,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C26080>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': -29.95, 'lon': -71.34},
'dt': 1520395200,
'id': 3893629,
'main': {'humidity': 77,
'pressure': 1013,
'temp': 17,
'temp_max': 17,
'temp_min': 17},
'name': 'Coquimbo',
'sys': {'country': 'CL',
'id': 4666,
'message': 0.0039,
'sunrise': 1520419237,
'sunset': 1520464286,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 280, 'speed': 1}}
city generated: yurino,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B113438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 56.29, 'lon': 46.29},
'dt': 1520397000,
'id': 466423,
'main': {'humidity': 70,
'pressure': 1018,
'temp': -18,
'temp_max': -18,
'temp_min': -18},
'name': 'Yurino',
'sys': {'country': 'RU',
'id': 7337,
'message': 0.0035,
'sunrise': 1520393483,
'sunset': 1520433681,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 260, 'speed': 4}}
city generated: banda aceh,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A251470>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: ayan,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEC7E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 40.67, 'lon': 33.6},
'dt': 1520400180,
'id': 749747,
'main': {'grnd_level': 877.92,
'humidity': 91,
'pressure': 877.92,
'sea_level': 1025.06,
'temp': 5.83,
'temp_max': 5.83,
'temp_min': 5.83},
'name': 'Ayan',
'sys': {'country': 'TR',
'message': 0.0033,
'sunrise': 1520395814,
'sunset': 1520437413},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 241.001, 'speed': 2.71}}
city generated: lebanon,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5C8470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 43.64, 'lon': -72.25},
'dt': 1520398560,
'id': 5088597,
'main': {'humidity': 78,
'pressure': 1016,
'temp': -1.19,
'temp_max': 0,
'temp_min': -2},
'name': 'Lebanon',
'sys': {'country': 'US',
'id': 1948,
'message': 0.0046,
'sunrise': 1520421294,
'sunset': 1520462737,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 116.001, 'speed': 1.31}}
city generated: rawannawi,ki
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7175C0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: oktyabrskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B016198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 55.61, 'lon': 37.97},
'dt': 1520397000,
'id': 515873,
'main': {'humidity': 78,
'pressure': 1013,
'temp': -10.5,
'temp_max': -10,
'temp_min': -11},
'name': 'Oktyabrskiy',
'sys': {'country': 'RU',
'id': 7322,
'message': 0.0047,
'sunrise': 1520395435,
'sunset': 1520435721,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'light snow',
'icon': '13d',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 130, 'speed': 4}}
duplicate city: albany,au
duplicate city: port alfred,za
duplicate city: hobart,au
city generated: la rochelle,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FB2A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 46.16, 'lon': -1.15},
'dt': 1520398800,
'id': 3006787,
'main': {'humidity': 87,
'pressure': 997,
'temp': 5.87,
'temp_max': 7,
'temp_min': 5},
'name': 'La Rochelle',
'sys': {'country': 'FR',
'id': 5529,
'message': 0.0037,
'sunrise': 1520404348,
'sunset': 1520445565,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 280, 'speed': 5.1}}
duplicate city: bredasdorp,za
duplicate city: castro,cl
duplicate city: ushuaia,ar
duplicate city: klaksvik,fo
city generated: henties bay,na
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8DD518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -22.12, 'lon': 14.28},
'dt': 1520400183,
'id': 3356832,
'main': {'grnd_level': 1012.56,
'humidity': 94,
'pressure': 1012.56,
'sea_level': 1025.83,
'temp': 18.95,
'temp_max': 18.95,
'temp_min': 18.95},
'name': 'Henties Bay',
'sys': {'country': 'NA',
'message': 0.0075,
'sunrise': 1520398907,
'sunset': 1520443534},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 351.501, 'speed': 1.71}}
city generated: hamilton,bm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A1A5C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 32.3, 'lon': -64.78},
'dt': 1520394900,
'id': 3573197,
'main': {'humidity': 59,
'pressure': 1012,
'temp': 16,
'temp_max': 16,
'temp_min': 16},
'name': 'Hamilton',
'sys': {'country': 'BM',
'id': 4169,
'message': 0.0074,
'sunrise': 1520419147,
'sunset': 1520461285,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 320, 'speed': 9.3}}
duplicate city: cape town,za
duplicate city: georgetown,sh
city generated: kisarawe,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B21DD30>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: punta arenas,cl
city generated: kyren,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFAB208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 51.68, 'lon': 102.13},
'dt': 1520400185,
'id': 2021031,
'main': {'grnd_level': 854.25,
'humidity': 57,
'pressure': 854.25,
'sea_level': 1038.4,
'temp': -4.7,
'temp_max': -4.7,
'temp_min': -4.7},
'name': 'Kyren',
'sys': {'country': 'RU',
'message': 0.0036,
'sunrise': 1520379845,
'sunset': 1520420511},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 242.001, 'speed': 1.21}}
city generated: artyk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEC26A0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: riyadh,sa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B12FB00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 24.63, 'lon': 46.72},
'dt': 1520400055,
'id': 108410,
'main': {'grnd_level': 956.79,
'humidity': 19,
'pressure': 956.79,
'sea_level': 1029.56,
'temp': 25.28,
'temp_max': 25.28,
'temp_min': 25.28},
'name': 'Riyadh',
'sys': {'country': 'SA',
'message': 0.0035,
'sunrise': 1520392207,
'sunset': 1520434706},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 340.001, 'speed': 2.66}}
duplicate city: san quintin,mx
city generated: rudsar,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A487710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 37.14, 'lon': 50.29},
'dt': 1520397000,
'id': 118191,
'main': {'humidity': 100,
'pressure': 1017,
'temp': 9.55,
'temp_max': 10,
'temp_min': 9},
'name': 'Rudsar',
'sys': {'country': 'IR',
'id': 7029,
'message': 0.0044,
'sunrise': 1520391697,
'sunset': 1520433516,
'type': 1},
'visibility': 4000,
'weather': [{'description': 'light intensity drizzle',
'icon': '09d',
'id': 300,
'main': 'Drizzle'},
{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 330, 'speed': 2.1}}
duplicate city: bambous virieux,mu
city generated: meulaboh,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A270748>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: saint-philippe,re
city generated: koumac,nc
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E21D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -20.56, 'lon': 164.28},
'dt': 1520400186,
'id': 2140558,
'main': {'grnd_level': 999.35,
'humidity': 84,
'pressure': 999.35,
'sea_level': 1014.89,
'temp': 27.7,
'temp_max': 27.7,
'temp_min': 27.7},
'name': 'Koumac',
'rain': {'3h': 0.24},
'sys': {'country': 'NC',
'message': 0.0032,
'sunrise': 1520362940,
'sunset': 1520407514},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 164.001, 'speed': 6.61}}
duplicate city: nishihara,jp
duplicate city: ushuaia,ar
city generated: kavieng,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E5390>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: tasbuget,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7284A8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: amderma,ru
duplicate city: tsihombe,mg
duplicate city: mataura,pf
duplicate city: adrar,dz
duplicate city: rikitea,pf
city generated: port lincoln,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199629E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -34.72, 'lon': 135.86},
'dt': 1520400188,
'id': 2063036,
'main': {'grnd_level': 1029.42,
'humidity': 64,
'pressure': 1029.42,
'sea_level': 1033.05,
'temp': 25.18,
'temp_max': 25.18,
'temp_min': 25.18},
'name': 'Port Lincoln',
'sys': {'country': 'AU',
'message': 0.0066,
'sunrise': 1520369323,
'sunset': 1520414755},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 112.501, 'speed': 6.26}}
city generated: kristiinankaupunki,fi
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F6C780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: hami,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C574E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 42.84, 'lon': 93.51},
'dt': 1520400188,
'id': 1529484,
'main': {'grnd_level': 955.17,
'humidity': 48,
'pressure': 955.17,
'sea_level': 1038.03,
'temp': 12.83,
'temp_max': 12.83,
'temp_min': 12.83},
'name': 'Hami',
'sys': {'country': 'CN',
'message': 0.0037,
'sunrise': 1520381530,
'sunset': 1520422949},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 90.5009, 'speed': 3.11}}
duplicate city: nikolskoye,ru
city generated: ngukurr,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199621D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: vao,nc
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E2F98>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 59.1, 'lon': 26.19},
'dt': 1520400189,
'id': 588365,
'main': {'grnd_level': 1014.34,
'humidity': 88,
'pressure': 1014.34,
'sea_level': 1022.51,
'temp': -6.8,
'temp_max': -6.8,
'temp_min': -6.8},
'name': 'Vao',
'sys': {'country': 'EE',
'message': 0.0038,
'sunrise': 1520398486,
'sunset': 1520438332},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 104.501, 'speed': 3.61}}
duplicate city: jamestown,sh
duplicate city: hithadhoo,mv
duplicate city: albany,au
duplicate city: isangel,vu
city generated: sisimiut,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A093F98>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: bilma,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E57B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 18.69, 'lon': 12.92},
'dt': 1520400190,
'id': 2446796,
'main': {'grnd_level': 968.06,
'humidity': 29,
'pressure': 968.06,
'sea_level': 1026.48,
'temp': 14.48,
'temp_max': 14.48,
'temp_min': 14.48},
'name': 'Bilma',
'sys': {'country': 'NE',
'message': 0.0031,
'sunrise': 1520400172,
'sunset': 1520442957},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 117.001, 'speed': 1.41}}
city generated: kendari,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2679B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': -3.99, 'lon': 122.52},
'dt': 1520400191,
'id': 1640344,
'main': {'grnd_level': 1005.35,
'humidity': 94,
'pressure': 1005.35,
'sea_level': 1020,
'temp': 27.38,
'temp_max': 27.38,
'temp_min': 27.38},
'name': 'Kendari',
'rain': {'3h': 0.575},
'sys': {'country': 'ID',
'message': 0.0035,
'sunrise': 1520373370,
'sunset': 1520417141},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 336.001, 'speed': 1.61}}
city generated: oussouye,sn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B179E10>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 12.49, 'lon': -16.54},
'dt': 1520398800,
'id': 2246901,
'main': {'humidity': 88,
'pressure': 1010,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'Oussouye',
'sys': {'country': 'SN',
'id': 6161,
'message': 0.0033,
'sunrise': 1520407100,
'sunset': 1520450162,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'speed': 1}}
duplicate city: butaritari,ki
city generated: pemangkat,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A275F60>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: carnarvon,au
duplicate city: mataura,pf
duplicate city: ushuaia,ar
duplicate city: barrow,us
city generated: kasongo-lunda,cd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BDD0F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -6.48, 'lon': 16.82},
'dt': 1520400192,
'id': 2315026,
'main': {'grnd_level': 949.82,
'humidity': 92,
'pressure': 949.82,
'sea_level': 1024.7,
'temp': 20.9,
'temp_max': 20.9,
'temp_min': 20.9},
'name': 'Kasongo-Lunda',
'sys': {'country': 'CD',
'message': 0.003,
'sunrise': 1520398680,
'sunset': 1520442556},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 192.001, 'speed': 0.91}}
duplicate city: kapaa,us
duplicate city: kodiak,us
duplicate city: nikolskoye,ru
duplicate city: clyde river,ca
duplicate city: severo-kurilsk,ru
city generated: pueblo nuevo,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A864668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 23.99, 'lon': -106.96},
'dt': 1520400193,
'id': 4002745,
'main': {'grnd_level': 1006.56,
'humidity': 69,
'pressure': 1006.56,
'sea_level': 1025.59,
'temp': 18.13,
'temp_max': 18.13,
'temp_min': 18.13},
'name': 'Pueblo Nuevo',
'sys': {'country': 'MX',
'message': 0.0033,
'sunrise': 1520429051,
'sunset': 1520471616},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 320.501, 'speed': 1.76}}
duplicate city: touros,br
city generated: alexandria,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5B0518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 31.31, 'lon': -92.44},
'dt': 1520397300,
'id': 4314550,
'main': {'humidity': 57,
'pressure': 1020,
'temp': 11.27,
'temp_max': 12,
'temp_min': 11},
'name': 'Alexandria',
'sys': {'country': 'US',
'id': 1200,
'message': 0.0041,
'sunrise': 1520425753,
'sunset': 1520467953,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 300, 'speed': 2.1}}
duplicate city: rikitea,pf
duplicate city: tasiilaq,gl
city generated: torremolinos,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F51A90>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 36.62, 'lon': -4.5},
'dt': 1520398800,
'id': 2510281,
'main': {'humidity': 76,
'pressure': 1009,
'temp': 11,
'temp_max': 11,
'temp_min': 11},
'name': 'Torremolinos',
'sys': {'country': 'ES',
'id': 5489,
'message': 0.0037,
'sunrise': 1520404818,
'sunset': 1520446689,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 290, 'gust': 12.3, 'speed': 7.2}}
city generated: ijaki,ki
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7174E0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: severo-kurilsk,ru
duplicate city: grand river south east,mu
city generated: richards bay,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6CD518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': -28.77, 'lon': 32.06},
'dt': 1520400195,
'id': 962367,
'main': {'grnd_level': 1007.94,
'humidity': 81,
'pressure': 1007.94,
'sea_level': 1025.88,
'temp': 25.15,
'temp_max': 25.15,
'temp_min': 25.15},
'name': 'Richards Bay',
'sys': {'country': 'ZA',
'message': 0.0035,
'sunrise': 1520394446,
'sunset': 1520439454},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 310.001, 'speed': 1.31}}
duplicate city: albany,au
duplicate city: mataura,pf
duplicate city: yellowknife,ca
duplicate city: ushuaia,ar
city generated: tidore,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A285F98>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: natal,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19ADB320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -5.81, 'lon': -35.21},
'dt': 1520398800,
'id': 3394023,
'main': {'humidity': 88,
'pressure': 1011,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Natal',
'sys': {'country': 'BR',
'id': 4546,
'message': 0.0041,
'sunrise': 1520411182,
'sunset': 1520455025,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 100, 'speed': 2.6}}
city generated: zatyshshya,ua
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2B3128>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: sur,om
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A992C18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 22.57, 'lon': 59.53},
'dt': 1520400196,
'id': 286245,
'main': {'grnd_level': 997.97,
'humidity': 100,
'pressure': 997.97,
'sea_level': 1028.67,
'temp': 22.65,
'temp_max': 22.65,
'temp_min': 22.65},
'name': 'Sur',
'sys': {'country': 'OM',
'message': 0.0036,
'sunrise': 1520389084,
'sunset': 1520431679},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 2.00095, 'speed': 2.11}}
duplicate city: tuatapere,nz
city generated: palembang,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A273BE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -2.99, 'lon': 104.76},
'dt': 1520400197,
'id': 1633070,
'main': {'grnd_level': 1022.13,
'humidity': 100,
'pressure': 1022.13,
'sea_level': 1022.67,
'temp': 25.8,
'temp_max': 25.8,
'temp_min': 25.8},
'name': 'Palembang',
'rain': {'3h': 2.995},
'sys': {'country': 'ID',
'message': 0.0039,
'sunrise': 1520377655,
'sunset': 1520421380},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 316.501, 'speed': 2.96}}
duplicate city: tasiilaq,gl
duplicate city: mataura,pf
duplicate city: broken hill,au
duplicate city: margate,za
duplicate city: bluff,nz
city generated: cururupu,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A7B2B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': -1.82, 'lon': -44.87},
'dt': 1520400197,
'id': 3401148,
'main': {'grnd_level': 1022.13,
'humidity': 93,
'pressure': 1022.13,
'sea_level': 1023.2,
'temp': 25.4,
'temp_max': 25.4,
'temp_min': 25.4},
'name': 'Cururupu',
'sys': {'country': 'BR',
'message': 0.0033,
'sunrise': 1520413587,
'sunset': 1520457259},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 42.0009, 'speed': 1.41}}
duplicate city: cape town,za
duplicate city: ushuaia,ar
duplicate city: barrow,us
city generated: kamina,cd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BDBBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -8.74, 'lon': 25},
'dt': 1520400198,
'id': 214614,
'main': {'grnd_level': 922.02,
'humidity': 93,
'pressure': 922.02,
'sea_level': 1024.98,
'temp': 19.95,
'temp_max': 19.95,
'temp_min': 19.95},
'name': 'Kamina',
'sys': {'country': 'CD',
'message': 0.0052,
'sunrise': 1520396665,
'sunset': 1520440643},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 43.5009, 'speed': 1.31}}
city generated: khasan,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF62C50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 42.43, 'lon': 130.64},
'dt': 1520400198,
'id': 2039557,
'main': {'grnd_level': 1036.23,
'humidity': 98,
'pressure': 1036.23,
'sea_level': 1045.21,
'temp': -2.53,
'temp_max': -2.53,
'temp_min': -2.53},
'name': 'Khasan',
'sys': {'country': 'RU',
'message': 0.0035,
'sunrise': 1520372614,
'sunset': 1520414045},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 113.501, 'speed': 4.46}}
duplicate city: belushya guba,ru
duplicate city: albany,au
city generated: vila velha,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B530F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -3.71, 'lon': -38.6},
'dt': 1520398800,
'id': 6320062,
'main': {'humidity': 88,
'pressure': 1010,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Vila Velha',
'sys': {'country': 'BR',
'id': 4498,
'message': 0.0034,
'sunrise': 1520412041,
'sunset': 1520455794,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 60, 'speed': 2.1}}
duplicate city: punta arenas,cl
duplicate city: sinnamary,gf
city generated: namibe,ao
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19924470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -15.19, 'lon': 12.15},
'dt': 1520400199,
'id': 3347019,
'main': {'grnd_level': 1021.4,
'humidity': 100,
'pressure': 1021.4,
'sea_level': 1025.23,
'temp': 22.98,
'temp_max': 22.98,
'temp_min': 22.98},
'name': 'Namibe',
'sys': {'country': 'AO',
'message': 0.0032,
'sunrise': 1520399597,
'sunset': 1520443873},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 135.001, 'speed': 1.91}}
duplicate city: hobart,au
duplicate city: paamiut,gl
duplicate city: provideniya,ru
duplicate city: hithadhoo,mv
duplicate city: kahului,us
duplicate city: nikolskoye,ru
city generated: baltiysk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AECBD68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 54.66, 'lon': 19.91},
'dt': 1520397000,
'id': 2609906,
'main': {'humidity': 86,
'pressure': 997,
'temp': -3,
'temp_max': -3,
'temp_min': -3},
'name': 'Baltiysk',
'sys': {'country': 'RU',
'id': 7275,
'message': 0.0044,
'sunrise': 1520399706,
'sunset': 1520440115,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 100, 'speed': 4}}
duplicate city: cape town,za
city generated: kovdor,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF85A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 67.56, 'lon': 30.47},
'dt': 1520400200,
'id': 543508,
'main': {'grnd_level': 1003.81,
'humidity': 59,
'pressure': 1003.81,
'sea_level': 1032.44,
'temp': -21.58,
'temp_max': -21.58,
'temp_min': -21.58},
'name': 'Kovdor',
'sys': {'country': 'RU',
'message': 0.0035,
'sunrise': 1520398276,
'sunset': 1520436517},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 250.501, 'speed': 1.06}}
city generated: pizarro,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D08EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 4.95, 'lon': -77.37},
'dt': 1520400201,
'id': 3672086,
'main': {'grnd_level': 1020.42,
'humidity': 91,
'pressure': 1020.42,
'sea_level': 1022.07,
'temp': 26.2,
'temp_max': 26.2,
'temp_min': 26.2},
'name': 'Pizarro',
'sys': {'country': 'CO',
'message': 0.0028,
'sunrise': 1520421531,
'sunset': 1520464918},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 266.501, 'speed': 1.86}}
duplicate city: atuona,pf
duplicate city: mar del plata,ar
city generated: hofn,is
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A48DEF0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: belushya guba,ru
city generated: carballo,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F1EE48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 43.21, 'lon': -8.69},
'dt': 1520398800,
'id': 3126369,
'main': {'humidity': 93,
'pressure': 1007,
'temp': 4.48,
'temp_max': 5,
'temp_min': 4},
'name': 'Carballo',
'sys': {'country': 'ES',
'id': 5474,
'message': 0.005,
'sunrise': 1520406042,
'sunset': 1520447485,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 200, 'speed': 2.6}}
duplicate city: bluff,nz
city generated: lakheri,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A39D160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.67, 'lon': 76.19},
'dt': 1520400202,
'id': 1265246,
'main': {'grnd_level': 997.81,
'humidity': 46,
'pressure': 997.81,
'sea_level': 1027.62,
'temp': 27.95,
'temp_max': 27.95,
'temp_min': 27.95},
'name': 'Lakheri',
'sys': {'country': 'IN',
'message': 0.0038,
'sunrise': 1520385165,
'sunset': 1520427606},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 95.5009, 'speed': 2.01}}
duplicate city: saint-philippe,re
duplicate city: lebu,cl
duplicate city: puerto ayora,ec
duplicate city: atuona,pf
city generated: inhambane,mz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8DA2B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -23.87, 'lon': 35.38},
'dt': 1520400203,
'id': 1045114,
'main': {'grnd_level': 1021.88,
'humidity': 89,
'pressure': 1021.88,
'sea_level': 1025.88,
'temp': 26.65,
'temp_max': 26.65,
'temp_min': 26.65},
'name': 'Inhambane',
'sys': {'country': 'MZ',
'message': 0.0138,
'sunrise': 1520393793,
'sunset': 1520438519},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 162.501, 'speed': 2.66}}
duplicate city: jamestown,sh
city generated: geraldton,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19955DA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 49.72, 'lon': -86.95},
'dt': 1520398800,
'id': 5960603,
'main': {'humidity': 77,
'pressure': 1018,
'temp': -14,
'temp_max': -14,
'temp_min': -14},
'name': 'Geraldton',
'sys': {'country': 'CA',
'id': 3656,
'message': 0.0034,
'sunrise': 1520425062,
'sunset': 1520466033,
'type': 1},
'visibility': 4828,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 20, 'gust': 7.7, 'speed': 5.1}}
duplicate city: hambantota,lk
duplicate city: vaini,to
duplicate city: albany,au
duplicate city: punta arenas,cl
city generated: maarianhamina,fi
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F6F390>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: albany,au
city generated: tarpon springs,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B356EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 28.15, 'lon': -82.76},
'dt': 1520399700,
'id': 4174855,
'main': {'humidity': 82,
'pressure': 1015,
'temp': 21.29,
'temp_max': 22,
'temp_min': 20},
'name': 'Tarpon Springs',
'sys': {'country': 'US',
'id': 728,
'message': 0.0097,
'sunrise': 1520423349,
'sunset': 1520465708,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 200, 'speed': 4.1}}
duplicate city: hermanus,za
city generated: srednekolymsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B095630>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 67.46, 'lon': 153.71},
'dt': 1520400204,
'id': 2121025,
'main': {'grnd_level': 1025.04,
'humidity': 61,
'pressure': 1025.04,
'sea_level': 1036.49,
'temp': -25.05,
'temp_max': -25.05,
'temp_min': -25.05},
'name': 'Srednekolymsk',
'sys': {'country': 'RU',
'message': 0.0033,
'sunrise': 1520368769,
'sunset': 1520406878},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 355.001, 'speed': 3.01}}
city generated: aklavik,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B6B048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 68.22, 'lon': -135.01},
'dt': 1520398800,
'id': 5882953,
'main': {'humidity': 77,
'pressure': 1017,
'temp': -14,
'temp_max': -14,
'temp_min': -14},
'name': 'Aklavik',
'sys': {'country': 'CA',
'id': 3535,
'message': 0.0036,
'sunrise': 1520437963,
'sunset': 1520476250,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 70, 'speed': 2.1}}
city generated: florianopolis,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A85B00>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: new norfolk,au
duplicate city: roma,au
duplicate city: victoria,sc
city generated: necochea,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992A2E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: hilo,us
duplicate city: ribeira grande,pt
duplicate city: provideniya,ru
duplicate city: vaini,to
city generated: doha,kw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7197B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.29, 'lon': 51.53},
'dt': 1520395200,
'id': 290030,
'main': {'humidity': 38,
'pressure': 1015,
'temp': 23,
'temp_max': 23,
'temp_min': 23},
'name': 'Doha',
'sys': {'country': 'QA',
'id': 7171,
'message': 0.0027,
'sunrise': 1520391070,
'sunset': 1520433535,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 200, 'speed': 2.1}}
city generated: general roca,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199275F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -39.03, 'lon': -67.58},
'dt': 1520395200,
'id': 3855065,
'main': {'humidity': 52,
'pressure': 1013,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'General Roca',
'sys': {'country': 'AR',
'id': 4769,
'message': 0.0034,
'sunrise': 1520418017,
'sunset': 1520463689,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 180, 'speed': 1}}
duplicate city: tasiilaq,gl
city generated: bambanglipuro,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A251390>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: albany,au
duplicate city: thompson,ca
city generated: cleethorpes,gb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A01B2E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 53.56, 'lon': -0.03},
'dt': 1520398200,
'id': 2652885,
'main': {'humidity': 100,
'pressure': 990,
'temp': 1.13,
'temp_max': 3,
'temp_min': 0},
'name': 'Cleethorpes',
'sys': {'country': 'GB',
'id': 5099,
'message': 0.0104,
'sunrise': 1520404423,
'sunset': 1520444966,
'type': 1},
'visibility': 3100,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'speed': 0.5}}
duplicate city: hasaki,jp
city generated: mizdah,ly
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A76EEB8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: iqaluit,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B93A58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 63.75, 'lon': -68.52},
'dt': 1520398800,
'id': 5983720,
'main': {'humidity': 76,
'pressure': 1034,
'temp': -21,
'temp_max': -21,
'temp_min': -21},
'name': 'Iqaluit',
'sys': {'country': 'CA',
'id': 3590,
'message': 0.0037,
'sunrise': 1520421550,
'sunset': 1520460735,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 320, 'speed': 2.6}}
city generated: sorong,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A282240>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': -0.86, 'lon': 131.25},
'dt': 1520400207,
'id': 1626542,
'main': {'grnd_level': 1016.61,
'humidity': 100,
'pressure': 1016.61,
'sea_level': 1019.51,
'temp': 27.15,
'temp_max': 27.15,
'temp_min': 27.15},
'name': 'Sorong',
'rain': {'3h': 2.34},
'sys': {'country': 'ID',
'message': 0.0041,
'sunrise': 1520371346,
'sunset': 1520414978},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 296.501, 'speed': 2.51}}
duplicate city: qaanaaq,gl
city generated: ruteng,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A27D5C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -8.61, 'lon': 120.46},
'dt': 1520400208,
'id': 1629380,
'main': {'grnd_level': 970.74,
'humidity': 90,
'pressure': 970.74,
'sea_level': 1019.92,
'temp': 26.05,
'temp_max': 26.05,
'temp_min': 26.05},
'name': 'Ruteng',
'rain': {'3h': 2.96},
'sys': {'country': 'ID',
'message': 0.0032,
'sunrise': 1520373758,
'sunset': 1520417738},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 235.001, 'speed': 1.66}}
city generated: havre-saint-pierre,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B90A20>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tuktoyaktuk,ca
city generated: naifaru,mv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7BECF8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: pisco,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9CDD68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -13.71, 'lon': -76.2},
'dt': 1520395200,
'id': 3932145,
'main': {'humidity': 78,
'pressure': 1012,
'temp': 22,
'temp_max': 22,
'temp_min': 22},
'name': 'Pisco',
'sys': {'country': 'PE',
'id': 4405,
'message': 0.0039,
'sunrise': 1520420839,
'sunset': 1520465033,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 210, 'speed': 1.5}}
duplicate city: qaanaaq,gl
duplicate city: pangai,to
duplicate city: chuy,uy
duplicate city: punta arenas,cl
duplicate city: carnarvon,au
duplicate city: east london,za
city generated: keuruu,fi
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F6C320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 62.26, 'lon': 24.71},
'dt': 1520398200,
'id': 652977,
'main': {'humidity': 71,
'pressure': 1009,
'temp': -19.05,
'temp_max': -16,
'temp_min': -22},
'name': 'Keuruu',
'sys': {'country': 'FI',
'id': 5017,
'message': 0.0033,
'sunrise': 1520399091,
'sunset': 1520438446,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 70, 'speed': 2.6}}
duplicate city: new norfolk,au
city generated: beira,mz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8D6D30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 43.2, 'lon': -8.36},
'dt': 1520398800,
'id': 3119841,
'main': {'humidity': 93,
'pressure': 1007,
'temp': 4.47,
'temp_max': 5,
'temp_min': 4},
'name': 'Beira',
'sys': {'country': 'ES',
'id': 5474,
'message': 0.0043,
'sunrise': 1520405963,
'sunset': 1520447406,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 200, 'speed': 2.6}}
duplicate city: ushuaia,ar
city generated: naze,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A57FA58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 5.43, 'lon': 7.07},
'dt': 1520398800,
'id': 2337542,
'main': {'humidity': 94,
'pressure': 1010,
'temp': 23,
'temp_max': 23,
'temp_min': 23},
'name': 'Naze',
'sys': {'country': 'NG',
'id': 6299,
'message': 0.0038,
'sunrise': 1520401281,
'sunset': 1520444644,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 222.501, 'speed': 2.41}}
city generated: salalah,om
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A992B70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 17.01, 'lon': 54.1},
'dt': 1520394600,
'id': 286621,
'main': {'humidity': 28,
'pressure': 1016,
'temp': 21,
'temp_max': 21,
'temp_min': 21},
'name': 'Salalah',
'sys': {'country': 'OM',
'id': 7115,
'message': 0.004,
'sunrise': 1520390255,
'sunset': 1520433109,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 360, 'speed': 1.5}}
duplicate city: tasiilaq,gl
duplicate city: puerto ayora,ec
duplicate city: puerto ayora,ec
city generated: cabo san lucas,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7E57F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 22.89, 'lon': -109.91},
'dt': 1520397660,
'id': 3985710,
'main': {'humidity': 55,
'pressure': 1015,
'temp': 19,
'temp_max': 19,
'temp_min': 19},
'name': 'Cabo San Lucas',
'sys': {'country': 'MX',
'id': 4015,
'message': 0.0033,
'sunrise': 1520429732,
'sunset': 1520472349,
'type': 1},
'visibility': 19312,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 270, 'speed': 4.1}}
duplicate city: jamestown,sh
duplicate city: oktyabrskiy,ru
duplicate city: arraial do cabo,br
duplicate city: attawapiskat,ca
city generated: gosainganj,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A33E7B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 26.77, 'lon': 81.11},
'dt': 1520397000,
'id': 1257005,
'main': {'humidity': 53,
'pressure': 1014,
'temp': 24,
'temp_max': 24,
'temp_min': 24},
'name': 'Gosainganj',
'sys': {'country': 'IN',
'id': 7817,
'message': 0.005,
'sunrise': 1520384014,
'sunset': 1520426397,
'type': 1},
'visibility': 3000,
'weather': [{'description': 'haze', 'icon': '50d', 'id': 721, 'main': 'Haze'}],
'wind': {'deg': 300, 'speed': 2.6}}
city generated: wanaka,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A98ED30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -44.7, 'lon': 169.14},
'dt': 1520400212,
'id': 2184707,
'main': {'grnd_level': 937.91,
'humidity': 68,
'pressure': 937.91,
'sea_level': 1029.12,
'temp': 14.53,
'temp_max': 14.53,
'temp_min': 14.53},
'name': 'Wanaka',
'sys': {'country': 'NZ',
'message': 0.0059,
'sunrise': 1520360906,
'sunset': 1520407184},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 128.001, 'speed': 1.06}}
duplicate city: karaul,ru
duplicate city: bethel,us
duplicate city: hermanus,za
city generated: qitaihe,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C81908>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 45.77, 'lon': 131.01},
'dt': 1520400212,
'id': 2035261,
'main': {'grnd_level': 1001.05,
'humidity': 62,
'pressure': 1001.05,
'sea_level': 1046.26,
'temp': -10.03,
'temp_max': -10.03,
'temp_min': -10.03},
'name': 'Qitaihe',
'sys': {'country': 'CN',
'message': 0.0038,
'sunrise': 1520372654,
'sunset': 1520413831},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 135.501, 'speed': 2.31}}
duplicate city: grand river south east,mu
duplicate city: havoysund,no
duplicate city: tasiilaq,gl
duplicate city: cherskiy,ru
duplicate city: kapaa,us
duplicate city: sorong,id
duplicate city: faanui,pf
duplicate city: mahebourg,mu
city generated: yar-sale,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B108D68>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: fairbanks,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CB668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 64.84, 'lon': -147.72},
'dt': 1520398680,
'id': 5861897,
'main': {'humidity': 85,
'pressure': 1015,
'temp': -4.65,
'temp_max': -4,
'temp_min': -5},
'name': 'Fairbanks',
'sys': {'country': 'US',
'id': 63,
'message': 0.0032,
'sunrise': 1520440617,
'sunset': 1520479682,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 116.501, 'speed': 3.41}}
duplicate city: arraial do cabo,br
city generated: shache,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C84940>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: torbay,ca
duplicate city: bluff,nz
duplicate city: hilo,us
city generated: maldonado,uy
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6E7278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -34.91, 'lon': -54.96},
'dt': 1520395200,
'id': 3441894,
'main': {'humidity': 59,
'pressure': 1016,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'Maldonado',
'sys': {'country': 'UY',
'id': 4620,
'message': 0.005,
'sunrise': 1520415140,
'sunset': 1520460516,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 180, 'speed': 5.1}}
duplicate city: port alfred,za
duplicate city: aklavik,ca
duplicate city: jamestown,sh
city generated: kedrovyy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF5F3C8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: xianyang,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C96400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 34.31, 'lon': 108.72},
'dt': 1520395200,
'id': 1790353,
'main': {'humidity': 93,
'pressure': 1028,
'temp': 5,
'temp_max': 5,
'temp_min': 5},
'name': 'Xianyang',
'sys': {'country': 'CN',
'id': 7433,
'message': 0.0039,
'sunrise': 1520377601,
'sunset': 1520419567,
'type': 1},
'visibility': 3000,
'weather': [{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 230, 'speed': 5}}
duplicate city: san andres,co
city generated: novopokrovka,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0053C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 45.85, 'lon': 134.51},
'dt': 1520400215,
'id': 2018888,
'main': {'grnd_level': 1015.97,
'humidity': 50,
'pressure': 1015.97,
'sea_level': 1048.57,
'temp': -8.38,
'temp_max': -8.38,
'temp_min': -8.38},
'name': 'Novopokrovka',
'sys': {'country': 'RU',
'message': 0.0031,
'sunrise': 1520371819,
'sunset': 1520412987},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 209.001, 'speed': 1.51}}
duplicate city: bredasdorp,za
city generated: hohhot,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C5B6A0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: palabuhanratu,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A273B38>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: saskylakh,ru
duplicate city: salinopolis,br
duplicate city: merauke,id
city generated: ewa beach,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B36B0F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 21.32, 'lon': -158.01},
'dt': 1520398620,
'id': 5855051,
'main': {'humidity': 64,
'pressure': 1016,
'temp': 21.25,
'temp_max': 23,
'temp_min': 19},
'name': 'Ewa Beach',
'sys': {'country': 'US',
'id': 830,
'message': 0.0071,
'sunrise': 1520441233,
'sunset': 1520483931,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 50, 'speed': 3.6}}
duplicate city: norman wells,ca
duplicate city: necochea,ar
duplicate city: east london,za
duplicate city: cayenne,gf
duplicate city: hambantota,lk
city generated: sorland,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9692E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: mount isa,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1995E7F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': -20.73, 'lon': 139.49},
'dt': 1520398800,
'id': 2065594,
'main': {'humidity': 94,
'pressure': 1005,
'temp': 25,
'temp_max': 25,
'temp_min': 25},
'name': 'Mount Isa',
'sys': {'country': 'AU',
'id': 8171,
'message': 0.0032,
'sunrise': 1520368886,
'sunset': 1520413465,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 140, 'speed': 3.6}}
duplicate city: attawapiskat,ca
duplicate city: illoqqortoormiut,gl
city generated: dukat,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF18198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 42.44, 'lon': 22.31},
'dt': 1520400217,
'id': 786562,
'main': {'grnd_level': 902.89,
'humidity': 77,
'pressure': 902.89,
'sea_level': 1016.07,
'temp': 4.53,
'temp_max': 4.53,
'temp_min': 4.53},
'name': 'Dukat',
'sys': {'country': 'RS',
'message': 0.0029,
'sunrise': 1520398583,
'sunset': 1520440065},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 233.501, 'speed': 1.81}}
duplicate city: castro,cl
city generated: oga,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5879B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 8.18, 'lon': 5.65},
'dt': 1520400217,
'id': 2343943,
'main': {'grnd_level': 990.92,
'humidity': 81,
'pressure': 990.92,
'sea_level': 1023.04,
'temp': 23.63,
'temp_max': 23.63,
'temp_min': 23.63},
'name': 'Oga',
'sys': {'country': 'NG',
'message': 0.0033,
'sunrise': 1520401682,
'sunset': 1520444927},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 216.501, 'speed': 5.06}}
city generated: unai,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B4A9B0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: haines junction,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B8DFD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 60.75, 'lon': -137.51},
'dt': 1520400218,
'id': 5969025,
'main': {'grnd_level': 902.48,
'humidity': 72,
'pressure': 902.48,
'sea_level': 1038.4,
'temp': -17.1,
'temp_max': -17.1,
'temp_min': -17.1},
'name': 'Haines Junction',
'sys': {'country': 'CA',
'message': 0.003,
'sunrise': 1520437816,
'sunset': 1520477570},
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 161.001, 'speed': 0.96}}
city generated: gravdal,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9492E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 59.79, 'lon': 5.78},
'dt': 1520398200,
'id': 3147822,
'main': {'humidity': 74,
'pressure': 995,
'temp': 1,
'temp_max': 1,
'temp_min': 1},
'name': 'Gravdal',
'sys': {'country': 'NO',
'id': 5335,
'message': 0.0038,
'sunrise': 1520403425,
'sunset': 1520443190,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'speed': 1}}
duplicate city: albany,au
duplicate city: illoqqortoormiut,gl
duplicate city: cabo san lucas,mx
city generated: caravelas,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A64668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -17.73, 'lon': -39.27},
'dt': 1520400219,
'id': 3466980,
'main': {'grnd_level': 1022.69,
'humidity': 100,
'pressure': 1022.69,
'sea_level': 1022.63,
'temp': 25.95,
'temp_max': 25.95,
'temp_min': 25.95},
'name': 'Caravelas',
'rain': {'3h': 0.35},
'sys': {'country': 'BR',
'message': 0.0042,
'sunrise': 1520411876,
'sunset': 1520456268},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 339.501, 'speed': 7.36}}
duplicate city: ushuaia,ar
duplicate city: faanui,pf
duplicate city: cape town,za
duplicate city: airai,pw
city generated: baikunthpur,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2D2748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 23.26, 'lon': 82.56},
'dt': 1520400220,
'id': 1277769,
'main': {'grnd_level': 963.52,
'humidity': 48,
'pressure': 963.52,
'sea_level': 1027.21,
'temp': 27.28,
'temp_max': 27.28,
'temp_min': 27.28},
'name': 'Baikunthpur',
'sys': {'country': 'IN',
'message': 0.0037,
'sunrise': 1520383577,
'sunset': 1520426134},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 326.501, 'speed': 2.76}}
city generated: novobiryusinskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFFD470>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: pottendorf,at
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19944080>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 47.91, 'lon': 16.39},
'dt': 1520398800,
'id': 2768472,
'main': {'humidity': 78,
'pressure': 995,
'temp': -0.34,
'temp_max': 0,
'temp_min': -1},
'name': 'Pottendorf',
'sys': {'country': 'AT',
'id': 5934,
'message': 0.0038,
'sunrise': 1520400216,
'sunset': 1520441281,
'type': 1},
'visibility': 4800,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 180, 'speed': 2.1}}
duplicate city: bluff,nz
city generated: jacareacanga,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AAD9E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -6.22, 'lon': -57.76},
'dt': 1520400221,
'id': 3397763,
'main': {'grnd_level': 1012.32,
'humidity': 95,
'pressure': 1012.32,
'sea_level': 1023.32,
'temp': 23.73,
'temp_max': 23.73,
'temp_min': 23.73},
'name': 'Jacareacanga',
'sys': {'country': 'BR',
'message': 0.0038,
'sunrise': 1520416584,
'sunset': 1520460445},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 61.0009, 'speed': 0.96}}
duplicate city: bethel,us
duplicate city: ushuaia,ar
duplicate city: saint george,bm
duplicate city: puerto ayora,ec
duplicate city: hermanus,za
duplicate city: shenjiamen,cn
duplicate city: mnogovershinnyy,ru
city generated: ucluelet,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BCCF60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 48.94, 'lon': -125.55},
'dt': 1520400221,
'id': 6171633,
'main': {'grnd_level': 985.33,
'humidity': 98,
'pressure': 985.33,
'sea_level': 1037.99,
'temp': -2.3,
'temp_max': -2.3,
'temp_min': -2.3},
'name': 'Ucluelet',
'sys': {'country': 'CA',
'message': 0.004,
'sunrise': 1520434279,
'sunset': 1520475340},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 36.5009, 'speed': 0.86}}
duplicate city: margate,za
city generated: san cristobal,ec
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19EE9630>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -0.39, 'lon': -78.55},
'dt': 1520395200,
'id': 3652462,
'main': {'humidity': 87,
'pressure': 1030,
'temp': 12,
'temp_max': 12,
'temp_min': 12},
'name': 'San Cristobal',
'sys': {'country': 'EC',
'id': 4361,
'message': 0.0041,
'sunrise': 1520421700,
'sunset': 1520465311,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 170, 'speed': 6.2}}
duplicate city: artyk,ru
duplicate city: cape town,za
duplicate city: cabo san lucas,mx
duplicate city: ushuaia,ar
duplicate city: zhigansk,ru
duplicate city: victoria,sc
duplicate city: cape town,za
city generated: ao luk,th
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1A2198>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: severo-kurilsk,ru
duplicate city: namatanai,pg
city generated: atambua,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A24FC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -9.11, 'lon': 124.89},
'dt': 1520400223,
'id': 1651103,
'main': {'grnd_level': 996.59,
'humidity': 100,
'pressure': 996.59,
'sea_level': 1019.15,
'temp': 25.78,
'temp_max': 25.78,
'temp_min': 25.78},
'name': 'Atambua',
'rain': {'3h': 4.525},
'sys': {'country': 'ID',
'message': 0.0045,
'sunrise': 1520372683,
'sunset': 1520416686},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 278.001, 'speed': 4.41}}
duplicate city: barentsburg,sj
city generated: yenagoa,ng
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8FEDA0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: kadirli,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1EF748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 37.37, 'lon': 36.09},
'dt': 1520400224,
'id': 310892,
'main': {'grnd_level': 1010.86,
'humidity': 87,
'pressure': 1010.86,
'sea_level': 1030.21,
'temp': 13.98,
'temp_max': 13.98,
'temp_min': 13.98},
'name': 'Kadirli',
'rain': {'3h': 0.49},
'sys': {'country': 'TR',
'message': 0.003,
'sunrise': 1520395109,
'sunset': 1520436919},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 52.5009, 'speed': 1.46}}
duplicate city: hobart,au
duplicate city: hasaki,jp
duplicate city: ushuaia,ar
city generated: belyye berega,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AED97B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 53.21, 'lon': 34.66},
'dt': 1520397000,
'id': 577560,
'main': {'humidity': 73,
'pressure': 1006,
'temp': -6,
'temp_max': -6,
'temp_min': -6},
'name': 'Belyye Berega',
'sys': {'country': 'RU',
'id': 7321,
'message': 0.0047,
'sunrise': 1520396092,
'sunset': 1520436647,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 100, 'speed': 4}}
duplicate city: dikson,ru
duplicate city: atuona,pf
duplicate city: ribeira grande,pt
duplicate city: bluff,nz
duplicate city: castro,cl
duplicate city: bluff,nz
duplicate city: dikson,ru
duplicate city: namatanai,pg
duplicate city: cape town,za
duplicate city: kruisfontein,za
duplicate city: ilulissat,gl
city generated: wenling,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C93160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 28.38, 'lon': 121.38},
'dt': 1520400225,
'id': 1791464,
'main': {'grnd_level': 1021.15,
'humidity': 79,
'pressure': 1021.15,
'sea_level': 1031.23,
'temp': 13.93,
'temp_max': 13.93,
'temp_min': 13.93},
'name': 'Wenling',
'sys': {'country': 'CN',
'message': 0.0036,
'sunrise': 1520374398,
'sunset': 1520416688},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 45.5009, 'speed': 1.46}}
duplicate city: victoria,sc
duplicate city: ushuaia,ar
duplicate city: port alfred,za
city generated: udimskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0CCDA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': 61.14, 'lon': 45.92},
'dt': 1520400225,
'id': 479619,
'main': {'grnd_level': 1009.24,
'humidity': 78,
'pressure': 1009.24,
'sea_level': 1027.78,
'temp': -14.03,
'temp_max': -14.03,
'temp_min': -14.03},
'name': 'Udimskiy',
'sys': {'country': 'RU',
'message': 0.0041,
'sunrise': 1520393917,
'sunset': 1520433437},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 298.001, 'speed': 7.01}}
city generated: athabasca,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B6BFD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 54.72, 'lon': -113.29},
'dt': 1520400225,
'id': 5887916,
'main': {'grnd_level': 959.47,
'humidity': 57,
'pressure': 959.47,
'sea_level': 1043.67,
'temp': -17.08,
'temp_max': -17.08,
'temp_min': -17.08},
'name': 'Athabasca',
'sys': {'country': 'CA',
'message': 0.0039,
'sunrise': 1520431623,
'sunset': 1520472124},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 188.501, 'speed': 3.11}}
duplicate city: cidreira,br
duplicate city: new norfolk,au
city generated: xichang,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C96B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 27.88, 'lon': 102.25},
'dt': 1520400226,
'id': 1789647,
'main': {'grnd_level': 774.08,
'humidity': 87,
'pressure': 774.08,
'sea_level': 1025.63,
'temp': 9.03,
'temp_max': 9.03,
'temp_min': 9.03},
'name': 'Xichang',
'rain': {'3h': 1.29},
'sys': {'country': 'CN',
'message': 0.0078,
'sunrise': 1520378973,
'sunset': 1520421294},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 126.501, 'speed': 0.86}}
duplicate city: bluff,nz
city generated: abu dhabi,ae
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF198ECBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 24.47, 'lon': 54.37},
'dt': 1520395200,
'id': 292968,
'main': {'humidity': 82,
'pressure': 1015,
'temp': 17.94,
'temp_max': 19,
'temp_min': 17},
'name': 'Abu Dhabi',
'sys': {'country': 'AE',
'id': 7097,
'message': 0.0036,
'sunrise': 1520390368,
'sunset': 1520432873,
'type': 1},
'visibility': 4000,
'weather': [{'description': 'haze', 'icon': '50d', 'id': 721, 'main': 'Haze'}],
'wind': {'speed': 1}}
city generated: umarkot,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A45C5C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.37, 'lon': 69.74},
'dt': 1520400226,
'id': 1162959,
'main': {'grnd_level': 1023.83,
'humidity': 35,
'pressure': 1023.83,
'sea_level': 1026.12,
'temp': 30.98,
'temp_max': 30.98,
'temp_min': 30.98},
'name': 'Umarkot',
'sys': {'country': 'PK',
'message': 0.0022,
'sunrise': 1520386705,
'sunset': 1520429161},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 94.5009, 'speed': 2.56}}
duplicate city: yellowknife,ca
city generated: ponta delgada,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACB7E80>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: nikolskoye,ru
duplicate city: port alfred,za
duplicate city: bengkulu,id
city generated: dzilam gonzalez,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A80B5F8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: tammisaari,fi
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F72B00>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ilulissat,gl
city generated: farmington,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6ACCC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 36.73, 'lon': -108.21},
'dt': 1520398380,
'id': 5467328,
'main': {'humidity': 19,
'pressure': 1024,
'temp': -2.57,
'temp_max': -2,
'temp_min': -3},
'name': 'Farmington',
'sys': {'country': 'US',
'id': 2013,
'message': 0.0044,
'sunrise': 1520429687,
'sunset': 1520471593,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 199.001, 'speed': 1.41}}
duplicate city: mys shmidta,ru
duplicate city: punta arenas,cl
duplicate city: cidreira,br
city generated: alekseyevka,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A71B400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 53.25, 'lon': 50.49},
'dt': 1520397000,
'id': 548625,
'main': {'humidity': 71,
'pressure': 1021,
'temp': -15,
'temp_max': -15,
'temp_min': -15},
'name': 'Alekseyevka',
'sys': {'country': 'RU',
'id': 7345,
'message': 0.0043,
'sunrise': 1520392301,
'sunset': 1520432841,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 260, 'speed': 3}}
duplicate city: sitka,us
city generated: vila franca do campo,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACCBCF8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: saint-philippe,re
duplicate city: hobart,au
city generated: obera,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992A550>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: bijie,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C430F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 27.3, 'lon': 105.3},
'dt': 1520400230,
'id': 1816373,
'main': {'grnd_level': 884.08,
'humidity': 100,
'pressure': 884.08,
'sea_level': 1035.93,
'temp': 7.38,
'temp_max': 7.38,
'temp_min': 7.38},
'name': 'Bijie',
'rain': {'3h': 0.33},
'sys': {'country': 'CN',
'message': 0.0033,
'sunrise': 1520378226,
'sunset': 1520420576},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 335.001, 'speed': 2.31}}
duplicate city: new norfolk,au
city generated: luderitz,na
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8DD940>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hilo,us
duplicate city: carnarvon,au
duplicate city: new norfolk,au
duplicate city: rikitea,pf
duplicate city: mataura,pf
duplicate city: warqla,dz
city generated: suslovo,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0A67F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 56.22, 'lon': 88.12},
'dt': 1520400231,
'id': 1490591,
'main': {'grnd_level': 995.54,
'humidity': 71,
'pressure': 995.54,
'sea_level': 1019.71,
'temp': 0.4,
'temp_max': 0.4,
'temp_min': 0.4},
'name': 'Suslovo',
'sys': {'country': 'RU',
'message': 0.0038,
'sunrise': 1520383458,
'sunset': 1520423631},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 163.001, 'speed': 2.31}}
duplicate city: mataura,pf
duplicate city: port alfred,za
city generated: hirara,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A554780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: bitung,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2556D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 1.44, 'lon': 125.19},
'dt': 1520398800,
'id': 1648636,
'main': {'humidity': 100,
'pressure': 1009,
'temp': 23,
'temp_max': 23,
'temp_min': 23},
'name': 'Bitung',
'sys': {'country': 'ID',
'id': 8012,
'message': 0.0041,
'sunrise': 1520372851,
'sunset': 1520416382,
'type': 1},
'visibility': 3000,
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 150, 'speed': 1.5}}
duplicate city: dikson,ru
duplicate city: richards bay,za
city generated: turbat,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC4CB70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 26, 'lon': 63.05},
'dt': 1520400232,
'id': 1163054,
'main': {'grnd_level': 1008.1,
'humidity': 22,
'pressure': 1008.1,
'sea_level': 1027.13,
'temp': 28.65,
'temp_max': 28.65,
'temp_min': 28.65},
'name': 'Turbat',
'sys': {'country': 'PK',
'message': 0.0033,
'sunrise': 1520388325,
'sunset': 1520430752},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 16.0009, 'speed': 2.01}}
duplicate city: tasiilaq,gl
duplicate city: cape town,za
city generated: yunjinghong,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CA4320>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: fort nelson,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B896D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 58.81, 'lon': -122.69},
'dt': 1520398800,
'id': 5955902,
'main': {'humidity': 77,
'pressure': 1021,
'temp': -15,
'temp_max': -15,
'temp_min': -15},
'name': 'Fort Nelson',
'sys': {'country': 'CA',
'id': 3278,
'message': 0.0033,
'sunrise': 1520434126,
'sunset': 1520474142,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 290, 'speed': 2.1}}
city generated: winnipeg,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BD5828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 49.88, 'lon': -97.17},
'dt': 1520398800,
'id': 6183235,
'main': {'humidity': 84,
'pressure': 1022,
'temp': -15,
'temp_max': -15,
'temp_min': -15},
'name': 'Winnipeg',
'sys': {'country': 'CA',
'id': 3409,
'message': 0.0038,
'sunrise': 1520427519,
'sunset': 1520468482,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 10, 'speed': 1.5}}
duplicate city: taolanaro,mg
duplicate city: busselton,au
city generated: vangaindrano,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7835C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -23.35, 'lon': 47.6},
'dt': 1520400234,
'id': 1054329,
'main': {'grnd_level': 996.43,
'humidity': 91,
'pressure': 996.43,
'sea_level': 1020.32,
'temp': 26.03,
'temp_max': 26.03,
'temp_min': 26.03},
'name': 'Vangaindrano',
'sys': {'country': 'MG',
'message': 0.0053,
'sunrise': 1520390874,
'sunset': 1520435574},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 231.501, 'speed': 0.91}}
duplicate city: superior,us
duplicate city: punta arenas,cl
duplicate city: carnarvon,au
city generated: russell,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A987E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -33.01, 'lon': -68.8},
'dt': 1520395200,
'id': 3844421,
'main': {'humidity': 60,
'pressure': 1016,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'Russell',
'sys': {'country': 'AR',
'id': 4700,
'message': 0.0029,
'sunrise': 1520418529,
'sunset': 1520463771,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 300.501, 'speed': 1.26}}
duplicate city: vaini,to
duplicate city: rikitea,pf
duplicate city: mahebourg,mu
duplicate city: saskylakh,ru
city generated: kununurra,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1995B048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -15.77, 'lon': 128.74},
'dt': 1520398800,
'id': 2068110,
'main': {'humidity': 34,
'pressure': 1002,
'temp': 36,
'temp_max': 36,
'temp_min': 36},
'name': 'Kununurra',
'sys': {'country': 'AU',
'id': 8215,
'message': 0.0051,
'sunrise': 1520371597,
'sunset': 1520415919,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 150, 'speed': 4.6}}
duplicate city: port lincoln,au
duplicate city: qaanaaq,gl
city generated: yerbogachen,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B10F0F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: ilinskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF39EF0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vaini,to
duplicate city: mar del plata,ar
city generated: la paz,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8382E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 24.15, 'lon': -110.32},
'dt': 1520397600,
'id': 4000900,
'main': {'humidity': 48,
'pressure': 1015,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'La Paz',
'sys': {'country': 'MX',
'id': 3990,
'message': 0.0084,
'sunrise': 1520429860,
'sunset': 1520472419,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 22.0009, 'speed': 3.11}}
city generated: paso de los toros,uy
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6E77F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -32.81, 'lon': -56.52},
'dt': 1520400237,
'id': 3441273,
'main': {'grnd_level': 1019.29,
'humidity': 81,
'pressure': 1019.29,
'sea_level': 1030.13,
'temp': 12.7,
'temp_max': 12.7,
'temp_min': 12.7},
'name': 'Paso de los Toros',
'sys': {'country': 'UY',
'message': 0.0036,
'sunrise': 1520415586,
'sunset': 1520460820},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 186.501, 'speed': 1.86}}
duplicate city: karratha,au
duplicate city: hithadhoo,mv
duplicate city: sorland,no
city generated: berlevag,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A940588>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: maputo,mz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8DA668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -25.97, 'lon': 32.57},
'dt': 1520400237,
'id': 1040652,
'main': {'grnd_level': 1018.4,
'humidity': 86,
'pressure': 1018.4,
'sea_level': 1026.89,
'temp': 25.63,
'temp_max': 25.63,
'temp_min': 25.63},
'name': 'Maputo',
'sys': {'country': 'MZ',
'message': 0.0042,
'sunrise': 1520394408,
'sunset': 1520439251},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 291.501, 'speed': 2.11}}
city generated: oranjestad,an
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19920A90>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: bara,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B130BA8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 10.41, 'lon': 10.6},
'dt': 1520400238,
'id': 2347758,
'main': {'grnd_level': 975.28,
'humidity': 56,
'pressure': 975.28,
'sea_level': 1022.59,
'temp': 18.23,
'temp_max': 18.23,
'temp_min': 18.23},
'name': 'Bara',
'sys': {'country': 'NG',
'message': 0.0034,
'sunrise': 1520400543,
'sunset': 1520443692},
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 356.501, 'speed': 0.91}}
city generated: mananjary,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A780828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -19.16, 'lon': 46.8},
'dt': 1520400239,
'id': 1056151,
'main': {'grnd_level': 872.17,
'humidity': 100,
'pressure': 872.17,
'sea_level': 1021.17,
'temp': 19.4,
'temp_max': 19.4,
'temp_min': 19.4},
'name': 'Mananjary',
'sys': {'country': 'MG',
'message': 0.0043,
'sunrise': 1520391179,
'sunset': 1520435658},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 226.501, 'speed': 1.16}}
duplicate city: east london,za
duplicate city: albany,au
duplicate city: hobart,au
duplicate city: thompson,ca
duplicate city: carnarvon,au
duplicate city: ribeira grande,pt
duplicate city: albany,au
duplicate city: narsaq,gl
duplicate city: vila franca do campo,pt
duplicate city: barrow,us
duplicate city: carnarvon,au
duplicate city: cabo san lucas,mx
duplicate city: amderma,ru
duplicate city: meulaboh,id
duplicate city: dikson,ru
duplicate city: sitka,us
duplicate city: hofn,is
duplicate city: ushuaia,ar
duplicate city: klaksvik,fo
duplicate city: port elizabeth,za
city generated: port-gentil,ga
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FFE3C8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: guerrero negro,mx
city generated: daultala,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC21A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 33.19, 'lon': 73.14},
'dt': 1520397000,
'id': 1177682,
'main': {'humidity': 52,
'pressure': 1015,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'DAULTALA',
'sys': {'country': 'PK',
'id': 7146,
'message': 0.0041,
'sunrise': 1520386100,
'sunset': 1520428143,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 323.501, 'speed': 2.01}}
duplicate city: ahipara,nz
city generated: iskateley,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF424A8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: dyersburg,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A683438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 36.03, 'lon': -89.39},
'dt': 1520398560,
'id': 4619800,
'main': {'humidity': 51,
'pressure': 1016,
'temp': 4.61,
'temp_max': 6,
'temp_min': 4},
'name': 'Dyersburg',
'sys': {'country': 'US',
'id': 2511,
'message': 0.0039,
'sunrise': 1520425154,
'sunset': 1520467093,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 310, 'gust': 11.3, 'speed': 6.2}}
duplicate city: sioux lookout,ca
duplicate city: puerto ayora,ec
duplicate city: atuona,pf
city generated: nizwa,om
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9928D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 22.93, 'lon': 57.53},
'dt': 1520400241,
'id': 286987,
'main': {'grnd_level': 961.09,
'humidity': 37,
'pressure': 961.09,
'sea_level': 1028.39,
'temp': 24.48,
'temp_max': 24.48,
'temp_min': 24.48},
'name': 'Nizwa',
'sys': {'country': 'OM',
'message': 0.0033,
'sunrise': 1520389573,
'sunset': 1520432151},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 49.0009, 'speed': 1.76}}
duplicate city: punta arenas,cl
duplicate city: thompson,ca
duplicate city: ahipara,nz
duplicate city: busselton,au
city generated: quesnel,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BB26A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 52.98, 'lon': -122.49},
'dt': 1520398800,
'id': 6115187,
'main': {'humidity': 79,
'pressure': 1023,
'temp': -6,
'temp_max': -6,
'temp_min': -6},
'name': 'Quesnel',
'sys': {'country': 'CA',
'id': 3331,
'message': 0.0046,
'sunrise': 1520433735,
'sunset': 1520474423,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'speed': 1}}
city generated: phan thiet,vn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6AA0B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 10.93, 'lon': 108.1},
'dt': 1520400242,
'id': 1571058,
'main': {'grnd_level': 1017.59,
'humidity': 73,
'pressure': 1017.59,
'sea_level': 1023.44,
'temp': 29.55,
'temp_max': 29.55,
'temp_min': 29.55},
'name': 'Phan Thiet',
'sys': {'country': 'VN',
'message': 0.0037,
'sunrise': 1520377163,
'sunset': 1520420280},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 86.0009, 'speed': 7.01}}
duplicate city: belushya guba,ru
duplicate city: port alfred,za
duplicate city: kapaa,us
duplicate city: kaitangata,nz
city generated: tuggurt,dz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19EDE390>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: nikolskoye,ru
duplicate city: mataura,pf
city generated: garowe,so
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B17F6D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 8.41, 'lon': 48.48},
'dt': 1520400155,
'id': 58933,
'main': {'grnd_level': 972.68,
'humidity': 34,
'pressure': 972.68,
'sea_level': 1027.62,
'temp': 24.98,
'temp_max': 24.98,
'temp_min': 24.98},
'name': 'Garowe',
'sys': {'country': 'SO',
'message': 0.0033,
'sunrise': 1520391411,
'sunset': 1520434643},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 60.0009, 'speed': 3.51}}
duplicate city: illoqqortoormiut,gl
duplicate city: kapaa,us
duplicate city: punta arenas,cl
duplicate city: nikolskoye,ru
city generated: araouane,ml
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A793D68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 18.9, 'lon': -3.53},
'dt': 1520400243,
'id': 2460954,
'main': {'grnd_level': 992.3,
'humidity': 56,
'pressure': 992.3,
'sea_level': 1026.65,
'temp': 13.9,
'temp_max': 13.9,
'temp_min': 13.9},
'name': 'Araouane',
'sys': {'country': 'ML',
'message': 0.0033,
'sunrise': 1520404123,
'sunset': 1520446901},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 8.00095, 'speed': 2.26}}
duplicate city: jamestown,sh
city generated: buenaventura,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CBCBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 3.89, 'lon': -77.07},
'dt': 1520400243,
'id': 3688451,
'main': {'grnd_level': 937.02,
'humidity': 99,
'pressure': 937.02,
'sea_level': 1022.43,
'temp': 20.68,
'temp_max': 20.68,
'temp_min': 20.68},
'name': 'Buenaventura',
'rain': {'3h': 0.605},
'sys': {'country': 'CO',
'message': 0.0032,
'sunrise': 1520421437,
'sunset': 1520464868},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 255.501, 'speed': 0.96}}
city generated: boende,cd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BD8400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -0.28, 'lon': 20.88},
'dt': 1520400244,
'id': 218680,
'main': {'grnd_level': 977.87,
'humidity': 100,
'pressure': 977.87,
'sea_level': 1024.82,
'temp': 22.9,
'temp_max': 22.9,
'temp_min': 22.9},
'name': 'Boende',
'sys': {'country': 'CD',
'message': 0.0035,
'sunrise': 1520397843,
'sunset': 1520441449},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 348.001, 'speed': 0.81}}
duplicate city: rikitea,pf
duplicate city: ushuaia,ar
duplicate city: karratha,au
duplicate city: provideniya,ru
duplicate city: mataura,pf
city generated: kalabo,zm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6D90F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -15, 'lon': 22.67},
'dt': 1520400244,
'id': 915471,
'main': {'grnd_level': 910.43,
'humidity': 69,
'pressure': 910.43,
'sea_level': 1024.13,
'temp': 22.18,
'temp_max': 22.18,
'temp_min': 22.18},
'name': 'Kalabo',
'sys': {'country': 'ZM',
'message': 0.0031,
'sunrise': 1520397076,
'sunset': 1520441345},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 332.001, 'speed': 1.36}}
city generated: cootamundra,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19952E10>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -34.64, 'lon': 148.03},
'dt': 1520400244,
'id': 2170430,
'main': {'grnd_level': 992.95,
'humidity': 40,
'pressure': 992.95,
'sea_level': 1036.7,
'temp': 24.28,
'temp_max': 24.28,
'temp_min': 24.28},
'name': 'Cootamundra',
'sys': {'country': 'AU',
'message': 0.0036,
'sunrise': 1520366403,
'sunset': 1520411834},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 94.0009, 'speed': 6.01}}
duplicate city: ketchikan,us
duplicate city: aklavik,ca
duplicate city: vaitupu,wf
duplicate city: nikolskoye,ru
duplicate city: barrow,us
duplicate city: new norfolk,au
duplicate city: necochea,ar
duplicate city: ilhabela,br
duplicate city: rikitea,pf
duplicate city: butaritari,ki
city generated: jaciara,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AADC50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': -15.95, 'lon': -54.98},
'dt': 1520400245,
'id': 3460355,
'main': {'grnd_level': 977.71,
'humidity': 89,
'pressure': 977.71,
'sea_level': 1022.35,
'temp': 23.7,
'temp_max': 23.7,
'temp_min': 23.7},
'name': 'Jaciara',
'sys': {'country': 'BR',
'message': 0.0032,
'sunrise': 1520415691,
'sunset': 1520459994},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 286.501, 'speed': 1.26}}
duplicate city: rikitea,pf
duplicate city: castro,cl
city generated: joshimath,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3666A0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: puerto ayora,ec
duplicate city: mar del plata,ar
duplicate city: port elizabeth,za
duplicate city: victoria,sc
duplicate city: hithadhoo,mv
duplicate city: busselton,au
duplicate city: kavieng,pg
duplicate city: port alfred,za
duplicate city: bredasdorp,za
duplicate city: mataura,pf
city generated: sobolevo,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0895F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 54.43, 'lon': 31.9},
'dt': 1520400245,
'id': 525426,
'main': {'grnd_level': 994.16,
'humidity': 92,
'pressure': 994.16,
'sea_level': 1020,
'temp': -5.83,
'temp_max': -5.83,
'temp_min': -5.83},
'name': 'Sobolevo',
'sys': {'country': 'RU',
'message': 0.0043,
'sunrise': 1520396820,
'sunset': 1520437246},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 126.001, 'speed': 5.41}}
duplicate city: nanortalik,gl
city generated: san pedro,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992C7F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -33.68, 'lon': -59.66},
'dt': 1520400249,
'id': 3428576,
'main': {'grnd_level': 1029.91,
'humidity': 94,
'pressure': 1029.91,
'sea_level': 1030.82,
'temp': 13.73,
'temp_max': 13.73,
'temp_min': 13.73},
'name': 'San Pedro',
'sys': {'country': 'AR',
'message': 0.0039,
'sunrise': 1520416311,
'sunset': 1520461602},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 57.0009, 'speed': 1.61}}
city generated: biltine,td
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B199828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.53, 'lon': 20.93},
'dt': 1520400249,
'id': 244878,
'main': {'grnd_level': 955.9,
'humidity': 17,
'pressure': 955.9,
'sea_level': 1025.63,
'temp': 21.8,
'temp_max': 21.8,
'temp_min': 21.8},
'name': 'Biltine',
'sys': {'country': 'TD',
'message': 0.0206,
'sunrise': 1520398156,
'sunset': 1520441125},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 98.0009, 'speed': 6.01}}
duplicate city: rikitea,pf
city generated: juarez,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A830668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -38.95, 'lon': -67.92},
'dt': 1520395200,
'id': 3843123,
'main': {'humidity': 52,
'pressure': 1013,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'Juarez',
'sys': {'country': 'AR',
'id': 4769,
'message': 0.0034,
'sunrise': 1520418102,
'sunset': 1520463767,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 180, 'speed': 1}}
duplicate city: barentsburg,sj
duplicate city: albany,au
city generated: grindavik,is
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A48DCF8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tsihombe,mg
duplicate city: bengkulu,id
city generated: srisailam,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A440DA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 16.07, 'lon': 78.87},
'dt': 1520400251,
'id': 1255621,
'main': {'grnd_level': 970.98,
'humidity': 21,
'pressure': 970.98,
'sea_level': 1024.62,
'temp': 34.05,
'temp_max': 34.05,
'temp_min': 34.05},
'name': 'Srisailam',
'sys': {'country': 'IN',
'message': 0.0027,
'sunrise': 1520384292,
'sunset': 1520427184},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 144.001, 'speed': 2.66}}
duplicate city: vaini,to
duplicate city: bredasdorp,za
duplicate city: khatanga,ru
duplicate city: makat,kz
duplicate city: yellowknife,ca
city generated: zhangye,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CA4CC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 38.94, 'lon': 100.46},
'dt': 1520400251,
'id': 1785036,
'main': {'grnd_level': 837.15,
'humidity': 83,
'pressure': 837.15,
'sea_level': 1039.9,
'temp': 5.78,
'temp_max': 5.78,
'temp_min': 5.78},
'name': 'Zhangye',
'sys': {'country': 'CN',
'message': 0.0031,
'sunrise': 1520379727,
'sunset': 1520421411},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 139.501, 'speed': 2.81}}
duplicate city: esperance,au
city generated: saint-pierre,pm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC8F5C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 48.95, 'lon': 4.24},
'dt': 1520398800,
'id': 2995603,
'main': {'humidity': 93,
'pressure': 992,
'temp': 5.55,
'temp_max': 6,
'temp_min': 5},
'name': 'Saint-Pierre',
'sys': {'country': 'FR',
'id': 5604,
'message': 0.0043,
'sunrise': 1520403174,
'sunset': 1520444157,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light intensity drizzle',
'icon': '09n',
'id': 300,
'main': 'Drizzle'}],
'wind': {'deg': 200, 'speed': 7.7}}
city generated: notodden,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A95E128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 59.56, 'lon': 9.26},
'dt': 1520398200,
'id': 3144075,
'main': {'humidity': 100,
'pressure': 1000,
'temp': -3,
'temp_max': -3,
'temp_min': -3},
'name': 'Notodden',
'sys': {'country': 'NO',
'id': 5340,
'message': 0.0032,
'sunrise': 1520402575,
'sunset': 1520442369,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 10, 'speed': 3.6}}
duplicate city: jamestown,sh
city generated: comodoro rivadavia,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19924F28>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -45.87, 'lon': -67.48},
'dt': 1520395200,
'id': 3860443,
'main': {'humidity': 50,
'pressure': 1005,
'temp': 24,
'temp_max': 24,
'temp_min': 24},
'name': 'Comodoro Rivadavia',
'sys': {'country': 'AR',
'id': 4741,
'message': 0.0033,
'sunrise': 1520417690,
'sunset': 1520463957,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 290, 'gust': 21.6, 'speed': 12.9}}
city generated: bilibino,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEDF470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 68.06, 'lon': 166.44},
'dt': 1520400253,
'id': 2126682,
'main': {'grnd_level': 970.74,
'humidity': 71,
'pressure': 970.74,
'sea_level': 1029.24,
'temp': -17.7,
'temp_max': -17.7,
'temp_min': -17.7},
'name': 'Bilibino',
'sys': {'country': 'RU',
'message': 0.0059,
'sunrise': 1520365805,
'sunset': 1520403736},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 48.5009, 'speed': 1.51}}
city generated: kasama,zm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6D9780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -10.21, 'lon': 31.19},
'dt': 1520400254,
'id': 912764,
'main': {'grnd_level': 881.73,
'humidity': 90,
'pressure': 881.73,
'sea_level': 1024.62,
'temp': 19.28,
'temp_max': 19.28,
'temp_min': 19.28},
'name': 'Kasama',
'sys': {'country': 'ZM',
'message': 0.0034,
'sunrise': 1520395146,
'sunset': 1520439191},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 333.001, 'speed': 1.96}}
city generated: saleaula,ws
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6B0F28>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: new norfolk,au
duplicate city: rikitea,pf
city generated: semey,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A725898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 50.41, 'lon': 80.25},
'dt': 1520400254,
'id': 1519422,
'main': {'grnd_level': 997.24,
'humidity': 89,
'pressure': 997.24,
'sea_level': 1030.13,
'temp': 0.4,
'temp_max': 0.4,
'temp_min': 0.4},
'name': 'Semey',
'sys': {'country': 'KZ',
'message': 0.0035,
'sunrise': 1520385025,
'sunset': 1520425829},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 266.001, 'speed': 6.41}}
duplicate city: hilo,us
duplicate city: makakilo city,us
duplicate city: new norfolk,au
duplicate city: punta arenas,cl
city generated: rafai,cf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BE7B70>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tasiilaq,gl
duplicate city: jamestown,sh
duplicate city: cidreira,br
duplicate city: hermanus,za
duplicate city: rikitea,pf
duplicate city: lokosovo,ru
duplicate city: kapaa,us
duplicate city: rikitea,pf
duplicate city: hilo,us
duplicate city: upernavik,gl
duplicate city: vila,vu
city generated: plouzane,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FD1E48>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: powell river,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BB1F28>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 49.84, 'lon': -124.52},
'dt': 1520398800,
'id': 6112608,
'main': {'humidity': 86,
'pressure': 1025,
'temp': 3.94,
'temp_max': 5,
'temp_min': 3},
'name': 'Powell River',
'sys': {'country': 'CA',
'id': 3263,
'message': 0.005,
'sunrise': 1520434071,
'sunset': 1520475055,
'type': 1},
'visibility': 32186,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 290, 'speed': 1}}
duplicate city: port elizabeth,za
city generated: harindanga,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A349128>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bambous virieux,mu
duplicate city: albany,au
duplicate city: taolanaro,mg
duplicate city: airai,pw
duplicate city: carnarvon,au
duplicate city: mataura,pf
duplicate city: hithadhoo,mv
duplicate city: rikitea,pf
duplicate city: busselton,au
duplicate city: natal,br
city generated: crotone,it
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A4C3780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: izumo,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A560668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 35.37, 'lon': 132.75},
'dt': 1520395200,
'id': 1861084,
'main': {'humidity': 52,
'pressure': 1028,
'temp': 7.43,
'temp_max': 8,
'temp_min': 7},
'name': 'Izumo',
'sys': {'country': 'JP',
'id': 7576,
'message': 0.0037,
'sunrise': 1520371871,
'sunset': 1520413766,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 70, 'speed': 11.3}}
duplicate city: atuona,pf
city generated: chippewa falls,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6D60B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 44.94, 'lon': -91.39},
'dt': 1520398560,
'id': 5248511,
'main': {'humidity': 79,
'pressure': 1016,
'temp': -6.75,
'temp_max': -6,
'temp_min': -8},
'name': 'Chippewa Falls',
'sys': {'country': 'US',
'id': 2986,
'message': 0.0042,
'sunrise': 1520425930,
'sunset': 1520467289,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 360, 'speed': 3.6}}
duplicate city: butaritari,ki
duplicate city: ponta do sol,cv
duplicate city: atuona,pf
duplicate city: kodiak,us
city generated: gondar,et
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F61630>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 41.82, 'lon': -8.78},
'dt': 1520398800,
'id': 2736041,
'main': {'humidity': 100,
'pressure': 1008,
'temp': 5.06,
'temp_max': 6,
'temp_min': 4},
'name': 'Gondar',
'sys': {'country': 'PT',
'id': 5507,
'message': 0.0038,
'sunrise': 1520406014,
'sunset': 1520447554,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 230, 'speed': 2.6}}
duplicate city: rawannawi,ki
duplicate city: illoqqortoormiut,gl
city generated: saumur,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FE4978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 47.26, 'lon': -0.08},
'dt': 1520398800,
'id': 2975758,
'main': {'humidity': 93,
'pressure': 995,
'temp': 4.06,
'temp_max': 5,
'temp_min': 3},
'name': 'Saumur',
'sys': {'country': 'FR',
'id': 5557,
'message': 0.0274,
'sunrise': 1520404136,
'sunset': 1520445265,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 230, 'speed': 2.6}}
city generated: okhotsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B012320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 59.36, 'lon': 143.24},
'dt': 1520400258,
'id': 2122605,
'main': {'grnd_level': 1012.56,
'humidity': 88,
'pressure': 1012.56,
'sea_level': 1019.55,
'temp': -8.18,
'temp_max': -8.18,
'temp_min': -8.18},
'name': 'Okhotsk',
'sys': {'country': 'RU',
'message': 0.0029,
'sunrise': 1520370470,
'sunset': 1520410174},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 38.5009, 'speed': 1.31}}
duplicate city: leningradskiy,ru
city generated: ibaraki,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5576A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 34.83, 'lon': 135.55},
'dt': 1520397000,
'id': 1862033,
'main': {'humidity': 46,
'pressure': 1028,
'temp': 10.49,
'temp_max': 12,
'temp_min': 9},
'name': 'Ibaraki',
'sys': {'country': 'JP',
'id': 7514,
'message': 0.0039,
'sunrise': 1520371183,
'sunset': 1520413109,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 30, 'speed': 2.6}}
duplicate city: busselton,au
duplicate city: rikitea,pf
duplicate city: anadyr,ru
duplicate city: butaritari,ki
duplicate city: arraial do cabo,br
duplicate city: kodiak,us
duplicate city: east london,za
duplicate city: yellowknife,ca
duplicate city: avarua,ck
duplicate city: chuy,uy
duplicate city: avarua,ck
duplicate city: saint-joseph,re
duplicate city: vaini,to
city generated: palmer,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CBC50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -34.85, 'lon': 139.16},
'dt': 1520398800,
'id': 2067070,
'main': {'humidity': 35,
'pressure': 1017,
'temp': 31,
'temp_max': 31,
'temp_min': 31},
'name': 'Palmer',
'sys': {'country': 'AU',
'id': 8204,
'message': 0.0037,
'sunrise': 1520368525,
'sunset': 1520413968,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 220, 'speed': 6.2}}
duplicate city: bambous virieux,mu
duplicate city: illoqqortoormiut,gl
duplicate city: kavieng,pg
duplicate city: nikolskoye,ru
city generated: black river,jm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A539438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 18.03, 'lon': -77.85},
'dt': 1520398800,
'id': 3491355,
'main': {'humidity': 69,
'pressure': 1015,
'temp': 23,
'temp_max': 23,
'temp_min': 23},
'name': 'Black River',
'sys': {'country': 'JM',
'id': 4112,
'message': 0.0044,
'sunrise': 1520421930,
'sunset': 1520464760,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 150, 'speed': 4.6}}
city generated: falun,se
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B139EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 60.61, 'lon': 15.63},
'dt': 1520398200,
'id': 2715459,
'main': {'humidity': 100,
'pressure': 1004,
'temp': -5,
'temp_max': -5,
'temp_min': -5},
'name': 'Falun',
'sys': {'country': 'SE',
'id': 5421,
'message': 0.0043,
'sunrise': 1520401129,
'sunset': 1520440761,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 80, 'speed': 2.1}}
duplicate city: mataura,pf
city generated: olafsvik,is
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A490320>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vila velha,br
duplicate city: saskylakh,ru
duplicate city: yellowknife,ca
duplicate city: hobart,au
duplicate city: barrow,us
city generated: mulchen,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C29748>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: puerto escondido,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A864B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 15.86, 'lon': -97.07},
'dt': 1520400261,
'id': 3520994,
'main': {'grnd_level': 1024.8,
'humidity': 100,
'pressure': 1024.8,
'sea_level': 1025.35,
'temp': 26.88,
'temp_max': 26.88,
'temp_min': 26.88},
'name': 'Puerto Escondido',
'sys': {'country': 'MX',
'message': 0.0176,
'sunrise': 1520426493,
'sunset': 1520469420},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 301.001, 'speed': 3.01}}
duplicate city: kodiak,us
city generated: tarakan,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A285780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: victoria,sc
duplicate city: narsaq,gl
duplicate city: ponta do sol,cv
duplicate city: rikitea,pf
city generated: verkhoyansk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0ECC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 67.55, 'lon': 133.39},
'dt': 1520400262,
'id': 2013465,
'main': {'grnd_level': 994.97,
'humidity': 56,
'pressure': 994.97,
'sea_level': 1042.82,
'temp': -24.35,
'temp_max': -24.35,
'temp_min': -24.35},
'name': 'Verkhoyansk',
'sys': {'country': 'RU',
'message': 0.0038,
'sunrise': 1520373644,
'sunset': 1520411755},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 344.501, 'speed': 1.66}}
duplicate city: puerto ayora,ec
city generated: tibiri,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E9E48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 13.59, 'lon': 7.06},
'dt': 1520400263,
'id': 2438774,
'main': {'grnd_level': 978.76,
'humidity': 59,
'pressure': 978.76,
'sea_level': 1023.32,
'temp': 16.7,
'temp_max': 16.7,
'temp_min': 16.7},
'name': 'Tibiri',
'sys': {'country': 'NE',
'message': 0.0031,
'sunrise': 1520401462,
'sunset': 1520444474},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 48.0009, 'speed': 1.16}}
duplicate city: bambous virieux,mu
duplicate city: nouadhibou,mr
city generated: macaboboni,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AB04860>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: sur,om
duplicate city: puerto ayora,ec
duplicate city: bambous virieux,mu
duplicate city: punta arenas,cl
duplicate city: ancud,cl
duplicate city: bredasdorp,za
duplicate city: busselton,au
city generated: warrington,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B359668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 53.39, 'lon': -2.59},
'dt': 1520398200,
'id': 2634739,
'main': {'humidity': 93,
'pressure': 990,
'temp': 2.15,
'temp_max': 4,
'temp_min': 1},
'name': 'Warrington',
'sys': {'country': 'GB',
'id': 5077,
'message': 0.0041,
'sunrise': 1520405027,
'sunset': 1520445590,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 150, 'speed': 2.1}}
duplicate city: vaini,to
city generated: olinda,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AE1860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -2.03, 'lon': -79.75},
'dt': 1520395200,
'id': 3650121,
'main': {'humidity': 74,
'pressure': 1010,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Olinda',
'sys': {'country': 'EC',
'id': 4356,
'message': 0.0037,
'sunrise': 1520421953,
'sunset': 1520465633,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 240, 'speed': 3.6}}
city generated: tsushima,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5A6EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 35.17, 'lon': 136.76},
'dt': 1520397180,
'id': 1849539,
'main': {'humidity': 81,
'pressure': 1029,
'temp': 9.44,
'temp_max': 11,
'temp_min': 8},
'name': 'Tsushima',
'sys': {'country': 'JP',
'id': 7565,
'message': 0.004,
'sunrise': 1520370904,
'sunset': 1520412809,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'speed': 2.6}}
duplicate city: rikitea,pf
duplicate city: khatanga,ru
city generated: bonoua,ci
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C194A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 5.27, 'lon': -3.6},
'dt': 1520398800,
'id': 2291087,
'main': {'humidity': 88,
'pressure': 1010,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Bonoua',
'sys': {'country': 'CI',
'id': 6267,
'message': 0.004,
'sunrise': 1520403838,
'sunset': 1520447208,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 240, 'speed': 1.5}}
city generated: polunochnoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B03D5C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': 60.87, 'lon': 60.43},
'dt': 1520400265,
'id': 1494482,
'main': {'grnd_level': 991.16,
'humidity': 63,
'pressure': 991.16,
'sea_level': 1008.36,
'temp': -14.35,
'temp_max': -14.35,
'temp_min': -14.35},
'name': 'Polunochnoye',
'sys': {'country': 'RU',
'message': 0.0039,
'sunrise': 1520390420,
'sunset': 1520429970},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 294.001, 'speed': 6.76}}
duplicate city: chokurdakh,ru
duplicate city: kodiak,us
city generated: dafeng,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C481D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 33.2, 'lon': 120.46},
'dt': 1520400265,
'id': 1813088,
'main': {'grnd_level': 1036.64,
'humidity': 100,
'pressure': 1036.64,
'sea_level': 1037.35,
'temp': 7.95,
'temp_max': 7.95,
'temp_min': 7.95},
'name': 'Dafeng',
'rain': {'3h': 0.84},
'sys': {'country': 'CN',
'message': 0.0032,
'sunrise': 1520374753,
'sunset': 1520416779},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 62.5009, 'speed': 4.91}}
city generated: nguruka,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B231940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -5.11, 'lon': 31.04},
'dt': 1520400266,
'id': 151567,
'main': {'grnd_level': 900.7,
'humidity': 97,
'pressure': 900.7,
'sea_level': 1025.06,
'temp': 20.48,
'temp_max': 20.48,
'temp_min': 20.48},
'name': 'Nguruka',
'sys': {'country': 'TZ',
'message': 0.003,
'sunrise': 1520395298,
'sunset': 1520439115},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 326.501, 'speed': 1.16}}
duplicate city: busselton,au
duplicate city: chuy,uy
city generated: ventaquemada,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D3BC88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 5.37, 'lon': -73.52},
'dt': 1520400266,
'id': 3666163,
'main': {'grnd_level': 758.68,
'humidity': 88,
'pressure': 758.68,
'sea_level': 1022.96,
'temp': 8.8,
'temp_max': 8.8,
'temp_min': 8.8},
'name': 'Ventaquemada',
'sys': {'country': 'CO',
'message': 0.0045,
'sunrise': 1520420616,
'sunset': 1520463985},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 132.501, 'speed': 0.91}}
city generated: kirkwall,gb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A045198>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: georgetown,sh
city generated: eskil,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1EA828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 38.4, 'lon': 33.41},
'dt': 1520400267,
'id': 315218,
'main': {'grnd_level': 916.43,
'humidity': 85,
'pressure': 916.43,
'sea_level': 1027.54,
'temp': 8.15,
'temp_max': 8.15,
'temp_min': 8.15},
'name': 'Eskil',
'sys': {'country': 'TR',
'message': 0.0042,
'sunrise': 1520395785,
'sunset': 1520437531},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 164.501, 'speed': 3.21}}
duplicate city: provideniya,ru
duplicate city: saint-philippe,re
duplicate city: vila velha,br
duplicate city: norman wells,ca
city generated: bathsheba,bb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19996128>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: longyearbyen,sj
duplicate city: kodiak,us
duplicate city: rikitea,pf
duplicate city: naze,jp
duplicate city: rocha,uy
city generated: petropavlovsk-kamchatskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B02F748>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: itarema,br
duplicate city: port alfred,za
duplicate city: natitingou,bj
duplicate city: hobyo,so
duplicate city: lebu,cl
duplicate city: upernavik,gl
city generated: mahuta,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B223DA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -10.87, 'lon': 39.42},
'dt': 1520400268,
'id': 878121,
'main': {'grnd_level': 991.49,
'humidity': 94,
'pressure': 991.49,
'sea_level': 1023.65,
'temp': 25.68,
'temp_max': 25.68,
'temp_min': 25.68},
'name': 'Mahuta',
'sys': {'country': 'TZ',
'message': 0.0041,
'sunrise': 1520393155,
'sunset': 1520437231},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 310.501, 'speed': 2.91}}
duplicate city: rikitea,pf
duplicate city: rikitea,pf
city generated: sentyabrskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B069E10>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: sertanopolis,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B34C88>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vardo,no
city generated: seoul,kr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7195F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 37.57, 'lon': 126.98},
'dt': 1520398560,
'id': 1835848,
'main': {'humidity': 40,
'pressure': 1026,
'temp': 9.98,
'temp_max': 11,
'temp_min': 9},
'name': 'Seoul',
'sys': {'country': 'KR',
'id': 7673,
'message': 0.004,
'sunrise': 1520373324,
'sunset': 1520415085,
'type': 1},
'visibility': 11265,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 100, 'speed': 3.6}}
duplicate city: albany,au
duplicate city: rikitea,pf
duplicate city: puerto escondido,mx
duplicate city: port elizabeth,za
duplicate city: belushya guba,ru
duplicate city: vaini,to
duplicate city: ushuaia,ar
city generated: inirida,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CE5860>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: dikson,ru
duplicate city: bluff,nz
city generated: mpika,zm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6DD7F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -11.84, 'lon': 31.4},
'dt': 1520400270,
'id': 905846,
'main': {'grnd_level': 871.19,
'humidity': 100,
'pressure': 871.19,
'sea_level': 1024.78,
'temp': 18.58,
'temp_max': 18.58,
'temp_min': 18.58},
'name': 'Mpika',
'sys': {'country': 'ZM',
'message': 0.0036,
'sunrise': 1520395057,
'sunset': 1520439177},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 151.001, 'speed': 1.36}}
duplicate city: bredasdorp,za
city generated: waingapu,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2889B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -9.65, 'lon': 120.26},
'dt': 1520400271,
'id': 1622318,
'main': {'grnd_level': 984.68,
'humidity': 90,
'pressure': 984.68,
'sea_level': 1020,
'temp': 27.03,
'temp_max': 27.03,
'temp_min': 27.03},
'name': 'Waingapu',
'rain': {'3h': 3.31},
'sys': {'country': 'ID',
'message': 0.003,
'sunrise': 1520373781,
'sunset': 1520417809},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 254.001, 'speed': 2.06}}
duplicate city: port alfred,za
duplicate city: butaritari,ki
duplicate city: hilo,us
duplicate city: rikitea,pf
duplicate city: hobart,au
duplicate city: tiksi,ru
duplicate city: cidreira,br
duplicate city: vardo,no
duplicate city: port elizabeth,za
duplicate city: necochea,ar
city generated: upata,ve
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6A1C50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 8.02, 'lon': -62.41},
'dt': 1520400271,
'id': 3625710,
'main': {'grnd_level': 977.95,
'humidity': 95,
'pressure': 977.95,
'sea_level': 1024.7,
'temp': 22.4,
'temp_max': 22.4,
'temp_min': 22.4},
'name': 'Upata',
'sys': {'country': 'VE',
'message': 0.0032,
'sunrise': 1520418008,
'sunset': 1520461265},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 67.5009, 'speed': 2.36}}
duplicate city: barentsburg,sj
duplicate city: ushuaia,ar
city generated: antofagasta,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C1EE48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -23.65, 'lon': -70.4},
'dt': 1520395200,
'id': 3899539,
'main': {'humidity': 63,
'pressure': 1012,
'temp': 19,
'temp_max': 19,
'temp_min': 19},
'name': 'Antofagasta',
'sys': {'country': 'CL',
'id': 4647,
'message': 0.004,
'sunrise': 1520419195,
'sunset': 1520463884,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 70, 'speed': 1.5}}
duplicate city: busselton,au
duplicate city: barentsburg,sj
duplicate city: mataura,pf
city generated: jos,ng
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8F74A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 9.92, 'lon': 8.9},
'dt': 1520399998,
'id': 2335953,
'main': {'grnd_level': 922.59,
'humidity': 70,
'pressure': 922.59,
'sea_level': 1023.89,
'temp': 14.15,
'temp_max': 14.15,
'temp_min': 14.15},
'name': 'Jos',
'sys': {'country': 'NG',
'message': 0.0032,
'sunrise': 1520400940,
'sunset': 1520444111},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 217.501, 'speed': 1.66}}
duplicate city: faya,td
duplicate city: avarua,ck
city generated: manggar,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A26EBE0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ushuaia,ar
duplicate city: new norfolk,au
duplicate city: saint-philippe,re
city generated: bundaberg,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19950F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -24.87, 'lon': 152.35},
'dt': 1520400273,
'id': 2173323,
'main': {'grnd_level': 1024.48,
'humidity': 95,
'pressure': 1024.48,
'sea_level': 1025.15,
'temp': 27.4,
'temp_max': 27.4,
'temp_min': 27.4},
'name': 'Bundaberg',
'sys': {'country': 'AU',
'message': 0.0032,
'sunrise': 1520365683,
'sunset': 1520410493},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 120.001, 'speed': 11.76}}
duplicate city: hermanus,za
duplicate city: carnarvon,au
duplicate city: hilo,us
city generated: poum,nc
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E2A90>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 41.28, 'lon': 20.71},
'dt': 1520400273,
'id': 787487,
'main': {'grnd_level': 893.65,
'humidity': 86,
'pressure': 893.65,
'sea_level': 1017.08,
'temp': 4.58,
'temp_max': 4.58,
'temp_min': 4.58},
'name': 'Poum',
'rain': {'3h': 0.14},
'sys': {'country': 'MK',
'message': 0.0034,
'sunrise': 1520398925,
'sunset': 1520440489},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 240.001, 'speed': 1.76}}
duplicate city: kidal,ml
city generated: port augusta,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19962748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': -32.49, 'lon': 137.76},
'dt': 1520398800,
'id': 2063056,
'main': {'humidity': 35,
'pressure': 1015,
'temp': 30,
'temp_max': 30,
'temp_min': 30},
'name': 'Port Augusta',
'sys': {'country': 'AU',
'id': 8241,
'message': 0.0087,
'sunrise': 1520368945,
'sunset': 1520414223,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 170, 'speed': 6.2}}
duplicate city: okhotsk,ru
duplicate city: victoria,sc
duplicate city: east london,za
duplicate city: chokurdakh,ru
duplicate city: barrow,us
duplicate city: rikitea,pf
duplicate city: busselton,au
duplicate city: kodiak,us
duplicate city: attawapiskat,ca
duplicate city: umzimvubu,za
duplicate city: dikson,ru
city generated: mutis,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CFBB00>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: aykhal,ru
duplicate city: cape town,za
city generated: emba,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A71F6D8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: axim,gh
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A08B780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 4.87, 'lon': -2.24},
'dt': 1520400275,
'id': 2303611,
'main': {'grnd_level': 1021.56,
'humidity': 100,
'pressure': 1021.56,
'sea_level': 1023.89,
'temp': 27.03,
'temp_max': 27.03,
'temp_min': 27.03},
'name': 'Axim',
'sys': {'country': 'GH',
'message': 0.0032,
'sunrise': 1520403503,
'sunset': 1520446890},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 197.001, 'speed': 4.36}}
duplicate city: rikitea,pf
city generated: catalao,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A68FD0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ribeira grande,pt
duplicate city: half moon bay,us
duplicate city: meulaboh,id
city generated: saint-georges,gf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A089D30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 46.12, 'lon': -70.67},
'dt': 1520400275,
'id': 6295855,
'main': {'grnd_level': 988.97,
'humidity': 73,
'pressure': 988.97,
'sea_level': 1033.9,
'temp': -3.98,
'temp_max': -3.98,
'temp_min': -3.98},
'name': 'Saint-Georges',
'sys': {'country': 'CA',
'message': 0.0042,
'sunrise': 1520421009,
'sunset': 1520462267},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 93.0009, 'speed': 2.66}}
duplicate city: rikitea,pf
city generated: buckeye,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CE1D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 33.37, 'lon': -112.58},
'dt': 1520398680,
'id': 5287262,
'main': {'humidity': 16,
'pressure': 1016,
'temp': 15.71,
'temp_max': 17,
'temp_min': 13},
'name': 'Buckeye',
'sys': {'country': 'US',
'id': 293,
'message': 0.0042,
'sunrise': 1520430638,
'sunset': 1520472735,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 340, 'speed': 4.6}}
duplicate city: rikitea,pf
duplicate city: kavieng,pg
duplicate city: bredasdorp,za
city generated: eureka,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2EE048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 40.8, 'lon': -124.16},
'dt': 1520398500,
'id': 5563397,
'main': {'humidity': 66,
'pressure': 1017,
'temp': 8.5,
'temp_max': 9,
'temp_min': 8},
'name': 'Eureka',
'sys': {'country': 'US',
'id': 350,
'message': 0.0034,
'sunrise': 1520433639,
'sunset': 1520475300,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 204.501, 'speed': 0.36}}
duplicate city: port macquarie,au
city generated: alta floresta,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A30240>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': -9.87, 'lon': -56.08},
'dt': 1520400277,
'id': 6316343,
'main': {'grnd_level': 997.97,
'humidity': 95,
'pressure': 997.97,
'sea_level': 1023.89,
'temp': 22.55,
'temp_max': 22.55,
'temp_min': 22.55},
'name': 'Alta Floresta',
'rain': {'3h': 3.48},
'sys': {'country': 'BR',
'message': 0.0032,
'sunrise': 1520416099,
'sunset': 1520460120},
'weather': [{'description': 'moderate rain',
'icon': '10n',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 277.001, 'speed': 0.96}}
duplicate city: banda aceh,id
duplicate city: atuona,pf
duplicate city: kapaa,us
duplicate city: te anau,nz
duplicate city: grand river south east,mu
duplicate city: atuona,pf
city generated: manasa,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3AFB38>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: butaritari,ki
city generated: taytayan,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ABFA400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 11.05, 'lon': 123.99},
'dt': 1520400278,
'id': 1724435,
'main': {'grnd_level': 1017.99,
'humidity': 91,
'pressure': 1017.99,
'sea_level': 1022.02,
'temp': 28.95,
'temp_max': 28.95,
'temp_min': 28.95},
'name': 'Taytayan',
'sys': {'country': 'PH',
'message': 0.0034,
'sunrise': 1520373354,
'sunset': 1520416464},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 69.0009, 'speed': 4.56}}
city generated: andevoranto,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A77C278>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: kuusamo,fi
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F6CA20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 65.96, 'lon': 29.19},
'dt': 1520398200,
'id': 649924,
'main': {'humidity': 74,
'pressure': 1014,
'temp': -31,
'temp_max': -31,
'temp_min': -31},
'name': 'Kuusamo',
'sys': {'country': 'FI',
'id': 5030,
'message': 0.0035,
'sunrise': 1520398388,
'sunset': 1520437013,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 89.5009, 'speed': 1.06}}
city generated: itumbiara,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AAD0B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': -18.41, 'lon': -49.22},
'dt': 1520400279,
'id': 3460522,
'main': {'grnd_level': 952.9,
'humidity': 89,
'pressure': 952.9,
'sea_level': 1021.86,
'temp': 22.58,
'temp_max': 22.58,
'temp_min': 22.58},
'name': 'Itumbiara',
'sys': {'country': 'BR',
'message': 0.003,
'sunrise': 1520414248,
'sunset': 1520458671},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 338.001, 'speed': 1.51}}
duplicate city: busselton,au
duplicate city: hithadhoo,mv
city generated: olga,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B016A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 34.11, 'lon': -118.17},
'dt': 1520398680,
'id': 5368361,
'main': {'humidity': 22,
'pressure': 1017,
'temp': 15.56,
'temp_max': 18,
'temp_min': 9},
'name': 'Olga',
'sys': {'country': 'US',
'id': 362,
'message': 0.0044,
'sunrise': 1520431999,
'sunset': 1520474057,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 13.0009, 'speed': 1.21}}
duplicate city: cidreira,br
duplicate city: tasiilaq,gl
duplicate city: salalah,om
duplicate city: bambous virieux,mu
duplicate city: coihaique,cl
duplicate city: bathsheba,bb
duplicate city: nikolskoye,ru
city generated: egvekinot,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF1C5F8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: albany,au
city generated: asau,tv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B203F98>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: gamba,ga
city generated: mincivan,az
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1996E710>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: roebourne,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19962DD8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -20.77, 'lon': 117.15},
'dt': 1520400281,
'id': 2062276,
'main': {'grnd_level': 1005.11,
'humidity': 23,
'pressure': 1005.11,
'sea_level': 1018.13,
'temp': 39.78,
'temp_max': 39.78,
'temp_min': 39.78},
'name': 'Roebourne',
'sys': {'country': 'AU',
'message': 0.0384,
'sunrise': 1520374248,
'sunset': 1520418824},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 77.0009, 'speed': 1.96}}
duplicate city: saskylakh,ru
duplicate city: port blair,in
duplicate city: atuona,pf
duplicate city: vaini,to
duplicate city: haines junction,ca
duplicate city: faanui,pf
city generated: hunza,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC2D390>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bluff,nz
duplicate city: bluff,nz
city generated: fernie,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B89160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 49.5, 'lon': -115.06},
'dt': 1520398800,
'id': 5952370,
'main': {'humidity': 79,
'pressure': 1023,
'temp': -5,
'temp_max': -5,
'temp_min': -5},
'name': 'Fernie',
'sys': {'country': 'CA',
'id': 3264,
'message': 0.004,
'sunrise': 1520431789,
'sunset': 1520472797,
'type': 1},
'visibility': 40233,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 234.501, 'speed': 0.66}}
duplicate city: mar del plata,ar
duplicate city: nome,us
duplicate city: albany,au
duplicate city: saint george,bm
city generated: cardston,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B787B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 49.2, 'lon': -113.32},
'dt': 1520398800,
'id': 5916821,
'main': {'humidity': 68,
'pressure': 1019,
'temp': -10.07,
'temp_max': -4,
'temp_min': -13},
'name': 'Cardston',
'sys': {'country': 'CA',
'id': 3200,
'message': 0.0049,
'sunrise': 1520431359,
'sunset': 1520472391,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 260, 'speed': 8.2}}
duplicate city: busselton,au
city generated: cockburn harbour,tc
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B196F60>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: la palma,pa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9A5438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 5.36, 'lon': -74.39},
'dt': 1520400284,
'id': 3687505,
'main': {'grnd_level': 912.7,
'humidity': 100,
'pressure': 912.7,
'sea_level': 1023,
'temp': 18.05,
'temp_max': 18.05,
'temp_min': 18.05},
'name': 'La Palma',
'rain': {'3h': 4.395},
'sys': {'country': 'CO',
'message': 0.0041,
'sunrise': 1520420825,
'sunset': 1520464194},
'weather': [{'description': 'moderate rain',
'icon': '10n',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 138.001, 'speed': 0.41}}
duplicate city: castro,cl
city generated: riachao,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B0D198>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: punta arenas,cl
duplicate city: kodiak,us
city generated: santa comba,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F48FD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 43.03, 'lon': -8.81},
'dt': 1520398800,
'id': 3109966,
'main': {'humidity': 93,
'pressure': 1007,
'temp': 4.51,
'temp_max': 5,
'temp_min': 4},
'name': 'Santa Comba',
'sys': {'country': 'ES',
'id': 5500,
'message': 0.0044,
'sunrise': 1520406064,
'sunset': 1520447520,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 220, 'speed': 2.1}}
city generated: tumannyy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0C6A20>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: wagga wagga,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19965DD8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -35.12, 'lon': 147.37},
'dt': 1520398800,
'id': 2145110,
'main': {'humidity': 26,
'pressure': 1022,
'temp': 29,
'temp_max': 29,
'temp_min': 29},
'name': 'Wagga Wagga',
'sys': {'country': 'AU',
'id': 8235,
'message': 0.0036,
'sunrise': 1520366544,
'sunset': 1520412009,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 60, 'speed': 4.6}}
duplicate city: albany,au
duplicate city: thompson,ca
duplicate city: busselton,au
duplicate city: tasiilaq,gl
duplicate city: busselton,au
duplicate city: jamestown,sh
duplicate city: yar-sale,ru
city generated: ajaccio,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F778D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 41.93, 'lon': 8.74},
'dt': 1520398800,
'id': 6452235,
'main': {'humidity': 81,
'pressure': 1001,
'temp': 12.25,
'temp_max': 13,
'temp_min': 12},
'name': 'Ajaccio',
'sys': {'country': 'FR',
'id': 5561,
'message': 0.0093,
'sunrise': 1520401818,
'sunset': 1520443342,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 260, 'speed': 2.1}}
duplicate city: general roca,ar
city generated: kwinana,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1995B1D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: belushya guba,ru
duplicate city: attawapiskat,ca
city generated: isa khel,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC2D4E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 36.67, 'lon': 68.84},
'dt': 1520400287,
'id': 1135690,
'main': {'grnd_level': 947.8,
'humidity': 77,
'pressure': 947.8,
'sea_level': 1036.13,
'temp': 13.68,
'temp_max': 13.68,
'temp_min': 13.68},
'name': 'Isa Khel',
'rain': {'3h': 0.115},
'sys': {'country': 'AF',
'message': 0.0034,
'sunrise': 1520387235,
'sunset': 1520429075},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 0.500946, 'speed': 1.46}}
duplicate city: upernavik,gl
duplicate city: katsuura,jp
city generated: saharanpur,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A41B320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 29.96, 'lon': 77.54},
'dt': 1520400287,
'id': 1257806,
'main': {'grnd_level': 995.78,
'humidity': 78,
'pressure': 995.78,
'sea_level': 1026.32,
'temp': 21.68,
'temp_max': 21.68,
'temp_min': 21.68},
'name': 'Saharanpur',
'sys': {'country': 'IN',
'message': 0.0027,
'sunrise': 1520384954,
'sunset': 1520427173},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 315.501, 'speed': 2.11}}
duplicate city: kaitangata,nz
duplicate city: katsuura,jp
duplicate city: albany,au
duplicate city: belushya guba,ru
duplicate city: bambous virieux,mu
duplicate city: hamilton,bm
duplicate city: bluff,nz
city generated: sabha,ly
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7720B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 27.03, 'lon': 14.43},
'dt': 1520400288,
'id': 2212775,
'main': {'grnd_level': 973.9,
'humidity': 42,
'pressure': 973.9,
'sea_level': 1025.79,
'temp': 12.58,
'temp_max': 12.58,
'temp_min': 12.58},
'name': 'Sabha',
'sys': {'country': 'LY',
'message': 0.0031,
'sunrise': 1520400012,
'sunset': 1520442400},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 225.501, 'speed': 1.16}}
city generated: goure,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E5E80>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: esperance,au
duplicate city: bluff,nz
duplicate city: jamestown,sh
duplicate city: ushuaia,ar
duplicate city: port alfred,za
duplicate city: pevek,ru
duplicate city: nikolskoye,ru
duplicate city: cidreira,br
duplicate city: albany,au
city generated: krasnoselkup,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF91748>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: atuona,pf
duplicate city: rikitea,pf
duplicate city: dikson,ru
duplicate city: albany,au
duplicate city: ponta do sol,cv
duplicate city: nikolskoye,ru
duplicate city: mar del plata,ar
duplicate city: ushuaia,ar
duplicate city: leningradskiy,ru
city generated: ngunguru,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A985400>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bilibino,ru
duplicate city: cape town,za
duplicate city: katsuura,jp
duplicate city: busselton,au
city generated: sulangan,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ABDE978>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: chokurdakh,ru
city generated: quang ngai,vn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6AA320>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: pisco,pe
city generated: puri,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A401710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -7.54, 'lon': 112.45},
'dt': 1520400290,
'id': 1635111,
'main': {'grnd_level': 977.55,
'humidity': 100,
'pressure': 977.55,
'sea_level': 1020.57,
'temp': 26.3,
'temp_max': 26.3,
'temp_min': 26.3},
'name': 'Puri',
'rain': {'3h': 5.415},
'sys': {'country': 'ID',
'message': 0.0037,
'sunrise': 1520375705,
'sunset': 1520419635},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 148.501, 'speed': 1.51}}
duplicate city: mys shmidta,ru
duplicate city: barentsburg,sj
duplicate city: constitucion,mx
duplicate city: hobart,au
city generated: porvoo,fi
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F72208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 60.4, 'lon': 25.66},
'dt': 1520398200,
'id': 660562,
'main': {'humidity': 78,
'pressure': 1008,
'temp': -12,
'temp_max': -12,
'temp_min': -12},
'name': 'Porvoo',
'sys': {'country': 'FI',
'id': 5019,
'message': 0.0048,
'sunrise': 1520398710,
'sunset': 1520438365,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 50, 'speed': 5.7}}
duplicate city: port hardy,ca
duplicate city: mataura,pf
duplicate city: qaanaaq,gl
duplicate city: atuona,pf
duplicate city: vaini,to
city generated: dingle,ie
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A292EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 11, 'lon': 122.67},
'dt': 1520400264,
'id': 1714733,
'main': {'grnd_level': 1001.62,
'humidity': 66,
'pressure': 1001.62,
'sea_level': 1021.7,
'temp': 29.78,
'temp_max': 29.78,
'temp_min': 29.78},
'name': 'Dingle',
'sys': {'country': 'PH',
'message': 0.0034,
'sunrise': 1520373669,
'sunset': 1520416782},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 54.0009, 'speed': 6.71}}
duplicate city: ribeira grande,pt
city generated: lisakovsk,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7239E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 52.55, 'lon': 62.49},
'dt': 1520400292,
'id': 1521315,
'main': {'grnd_level': 1001.62,
'humidity': 80,
'pressure': 1001.62,
'sea_level': 1029.68,
'temp': -13.2,
'temp_max': -13.2,
'temp_min': -13.2},
'name': 'Lisakovsk',
'sys': {'country': 'KZ',
'message': 0.004,
'sunrise': 1520389388,
'sunset': 1520429993},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 272.001, 'speed': 8.76}}
duplicate city: carnarvon,au
duplicate city: severo-kurilsk,ru
duplicate city: ushuaia,ar
duplicate city: hermanus,za
duplicate city: busselton,au
city generated: novoanninskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFFAF98>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 50.53, 'lon': 42.67},
'dt': 1520400292,
'id': 519062,
'main': {'grnd_level': 1016.37,
'humidity': 84,
'pressure': 1016.37,
'sea_level': 1032.6,
'temp': -11.58,
'temp_max': -11.58,
'temp_min': -11.58},
'name': 'Novoanninskiy',
'sys': {'country': 'RU',
'message': 0.0088,
'sunrise': 1520394037,
'sunset': 1520434853},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 129.501, 'speed': 6.01}}
duplicate city: acapulco,mx
duplicate city: kirakira,sb
duplicate city: cabo san lucas,mx
city generated: dudinka,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF15E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 69.41, 'lon': 86.18},
'dt': 1520400072,
'id': 1507116,
'main': {'grnd_level': 1020.1,
'humidity': 81,
'pressure': 1020.1,
'sea_level': 1028.23,
'temp': -15.58,
'temp_max': -15.58,
'temp_min': -15.58},
'name': 'Dudinka',
'sys': {'country': 'RU',
'message': 0.0037,
'sunrise': 1520385208,
'sunset': 1520422857},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 102.001, 'speed': 6.61}}
duplicate city: hofn,is
duplicate city: coihaique,cl
city generated: viedma,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992E3C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -40.81, 'lon': -62.99},
'dt': 1520400293,
'id': 3832899,
'main': {'grnd_level': 1021.88,
'humidity': 39,
'pressure': 1021.88,
'sea_level': 1025.51,
'temp': 16.38,
'temp_max': 16.38,
'temp_min': 16.38},
'name': 'Viedma',
'sys': {'country': 'AR',
'message': 0.008,
'sunrise': 1520416842,
'sunset': 1520462658},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 323.501, 'speed': 5.01}}
duplicate city: hobart,au
city generated: ulaangom,mn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7A5518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 49.98, 'lon': 92.07},
'dt': 1520400293,
'id': 1515029,
'main': {'grnd_level': 821.67,
'humidity': 86,
'pressure': 821.67,
'sea_level': 1039.78,
'temp': -4.28,
'temp_max': -4.28,
'temp_min': -4.28},
'name': 'Ulaangom',
'sys': {'country': 'MN',
'message': 0.0034,
'sunrise': 1520382172,
'sunset': 1520423009},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 111.501, 'speed': 1.06}}
duplicate city: aklavik,ca
duplicate city: tasiilaq,gl
city generated: la baneza,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F30D68>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: jhudo,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC2E208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 24.96, 'lon': 69.3},
'dt': 1520400294,
'id': 1169367,
'main': {'grnd_level': 1023.83,
'humidity': 35,
'pressure': 1023.83,
'sea_level': 1026.12,
'temp': 30.98,
'temp_max': 30.98,
'temp_min': 30.98},
'name': 'Jhudo',
'sys': {'country': 'PK',
'message': 0.0033,
'sunrise': 1520386800,
'sunset': 1520429277},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 94.5009, 'speed': 2.56}}
duplicate city: qaanaaq,gl
duplicate city: constitucion,mx
city generated: susehri,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1FE6D8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: cidreira,br
city generated: porto seguro,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B047B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -16.44, 'lon': -39.06},
'dt': 1520398800,
'id': 3452640,
'main': {'humidity': 88,
'pressure': 1009,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Porto Seguro',
'sys': {'country': 'BR',
'id': 4559,
'message': 0.0037,
'sunrise': 1520411858,
'sunset': 1520456187,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 360, 'speed': 3.6}}
duplicate city: mys shmidta,ru
duplicate city: katsuura,jp
city generated: ukiah,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B319470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 39.15, 'lon': -123.21},
'dt': 1520398560,
'id': 5404476,
'main': {'humidity': 61,
'pressure': 1017,
'temp': 10,
'temp_max': 10,
'temp_min': 10},
'name': 'Ukiah',
'sys': {'country': 'US',
'id': 503,
'message': 0.0036,
'sunrise': 1520433358,
'sunset': 1520475124,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 84.5009, 'speed': 0.91}}
duplicate city: cape town,za
duplicate city: sorong,id
city generated: sept-iles,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BC1550>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: kodiak,us
city generated: moindou,nc
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E23C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -21.69, 'lon': 165.68},
'dt': 1520398800,
'id': 2140466,
'main': {'humidity': 94,
'pressure': 1004,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Moindou',
'sys': {'country': 'NC',
'id': 8344,
'message': 0.0064,
'sunrise': 1520362573,
'sunset': 1520407208,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 180, 'speed': 5.7}}
duplicate city: vaini,to
duplicate city: busselton,au
city generated: klyuchi,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF75588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 52.25, 'lon': 79.17},
'dt': 1520400296,
'id': 1503153,
'main': {'grnd_level': 1008.1,
'humidity': 81,
'pressure': 1008.1,
'sea_level': 1026.6,
'temp': -3.95,
'temp_max': -3.95,
'temp_min': -3.95},
'name': 'Klyuchi',
'sys': {'country': 'RU',
'message': 0.0036,
'sunrise': 1520385376,
'sunset': 1520426000},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 243.501, 'speed': 10.91}}
duplicate city: port lincoln,au
duplicate city: puerto escondido,mx
city generated: sirjan,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A48A7F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 29.44, 'lon': 55.67},
'dt': 1520400296,
'id': 114259,
'main': {'grnd_level': 824.83,
'humidity': 41,
'pressure': 824.83,
'sea_level': 1027.29,
'temp': 14.48,
'temp_max': 14.48,
'temp_min': 14.48},
'name': 'Sirjan',
'sys': {'country': 'IR',
'message': 0.0033,
'sunrise': 1520390185,
'sunset': 1520432438},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 121.501, 'speed': 1.71}}
duplicate city: hermanus,za
city generated: aksarka,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEAFE10>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tiksi,ru
city generated: pontiac,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B389EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 42.64, 'lon': -83.29},
'dt': 1520399700,
'id': 5006166,
'main': {'humidity': 93,
'pressure': 1005,
'temp': 0.11,
'temp_max': 1,
'temp_min': -1},
'name': 'Pontiac',
'sys': {'country': 'US',
'id': 1460,
'message': 0.0046,
'sunrise': 1520423904,
'sunset': 1520465424,
'type': 1},
'visibility': 11265,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 60, 'speed': 2.1}}
duplicate city: vila franca do campo,pt
city generated: northam,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19962358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 51.04, 'lon': -4.21},
'dt': 1520394600,
'id': 2641434,
'main': {'humidity': 93,
'pressure': 991,
'temp': 4,
'temp_max': 4,
'temp_min': 4},
'name': 'Northam',
'sys': {'country': 'GB',
'id': 5071,
'message': 0.0034,
'sunrise': 1520405296,
'sunset': 1520446094,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 270, 'speed': 3.1}}
duplicate city: baruun-urt,mn
duplicate city: grand river south east,mu
duplicate city: bluff,nz
city generated: whitehorse,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BD1F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 60.72, 'lon': -135.06},
'dt': 1520398800,
'id': 6180550,
'main': {'humidity': 61,
'pressure': 1018,
'temp': -10,
'temp_max': -10,
'temp_min': -10},
'name': 'Whitehorse',
'sys': {'country': 'CA',
'id': 3963,
'message': 0.0031,
'sunrise': 1520437226,
'sunset': 1520476983,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 180, 'speed': 6.7}}
city generated: talnakh,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0AEE48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 69.49, 'lon': 88.39},
'dt': 1520400299,
'id': 1490256,
'main': {'grnd_level': 1007.13,
'humidity': 88,
'pressure': 1007.13,
'sea_level': 1030.13,
'temp': -21.53,
'temp_max': -21.53,
'temp_min': -21.53},
'name': 'Talnakh',
'sys': {'country': 'RU',
'message': 0.0046,
'sunrise': 1520384692,
'sunset': 1520422313},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 81.0009, 'speed': 1.31}}
duplicate city: rikitea,pf
city generated: ilheus,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A9C048>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: torbay,ca
duplicate city: sao filipe,cv
duplicate city: ushuaia,ar
duplicate city: atuona,pf
duplicate city: meulaboh,id
duplicate city: olafsvik,is
duplicate city: port alfred,za
duplicate city: mataura,pf
duplicate city: nanortalik,gl
duplicate city: ushuaia,ar
duplicate city: zhigansk,ru
duplicate city: saskylakh,ru
duplicate city: torbay,ca
duplicate city: cape town,za
duplicate city: ngukurr,au
duplicate city: punta arenas,cl
duplicate city: mataura,pf
city generated: labuhan,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A268828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': -2.54, 'lon': 115.51},
'dt': 1520400300,
'id': 1641899,
'main': {'grnd_level': 996.84,
'humidity': 95,
'pressure': 996.84,
'sea_level': 1022.43,
'temp': 24.7,
'temp_max': 24.7,
'temp_min': 24.7},
'name': 'Labuhan',
'rain': {'3h': 4.795},
'sys': {'country': 'ID',
'message': 0.0042,
'sunrise': 1520375085,
'sunset': 1520418791},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 311.501, 'speed': 1.26}}
duplicate city: tiksi,ru
duplicate city: tasiilaq,gl
duplicate city: mataura,pf
city generated: brownsville,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A68BBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 25.91, 'lon': -97.49},
'dt': 1520398500,
'id': 4676740,
'main': {'humidity': 87,
'pressure': 1020,
'temp': 15.48,
'temp_max': 18,
'temp_min': 14},
'name': 'Brownsville',
'sys': {'country': 'US',
'id': 2570,
'message': 0.0031,
'sunrise': 1520426826,
'sunset': 1520469298,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 330, 'speed': 2.6}}
duplicate city: hobart,au
duplicate city: georgetown,sh
duplicate city: cape town,za
duplicate city: tasiilaq,gl
duplicate city: maldonado,uy
duplicate city: ushuaia,ar
duplicate city: sibolga,id
duplicate city: barentsburg,sj
duplicate city: illoqqortoormiut,gl
duplicate city: east london,za
city generated: yantal,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B108550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 56.85, 'lon': 105.25},
'dt': 1520400301,
'id': 2055868,
'main': {'grnd_level': 972.28,
'humidity': 40,
'pressure': 972.28,
'sea_level': 1040.79,
'temp': -10.45,
'temp_max': -10.45,
'temp_min': -10.45},
'name': 'Yantal',
'sys': {'country': 'RU',
'message': 0.0036,
'sunrise': 1520379394,
'sunset': 1520419475},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 161.501, 'speed': 2.11}}
city generated: ahlat,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1DDCF8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 38.75, 'lon': 42.49},
'dt': 1520400301,
'id': 325103,
'main': {'grnd_level': 823.94,
'humidity': 98,
'pressure': 823.94,
'sea_level': 1031.63,
'temp': 2.83,
'temp_max': 2.83,
'temp_min': 2.83},
'name': 'Ahlat',
'sys': {'country': 'TR',
'message': 0.0053,
'sunrise': 1520393619,
'sunset': 1520435340},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 183.501, 'speed': 1.66}}
city generated: padang,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2739B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': -0.92, 'lon': 100.36},
'dt': 1520400302,
'id': 1633419,
'main': {'grnd_level': 1017.51,
'humidity': 100,
'pressure': 1017.51,
'sea_level': 1022.88,
'temp': 26.13,
'temp_max': 26.13,
'temp_min': 26.13},
'name': 'Padang',
'sys': {'country': 'ID',
'message': 0.0036,
'sunrise': 1520378757,
'sunset': 1520422391},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 175.501, 'speed': 2.36}}
city generated: nelson bay,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1995EDA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -32.72, 'lon': 152.14},
'dt': 1520398800,
'id': 2155562,
'main': {'humidity': 53,
'pressure': 1024,
'temp': 24,
'temp_max': 24,
'temp_min': 24},
'name': 'Nelson Bay',
'sys': {'country': 'AU',
'id': 8242,
'message': 0.0038,
'sunrise': 1520365484,
'sunset': 1520410783,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 110, 'speed': 7.7}}
duplicate city: punta arenas,cl
duplicate city: puerto ayora,ec
duplicate city: kapaa,us
duplicate city: mataura,pf
duplicate city: ushuaia,ar
city generated: huicungo,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9C2B38>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: asau,tv
duplicate city: cape town,za
duplicate city: sur,om
duplicate city: samusu,ws
duplicate city: artyk,ru
duplicate city: kendari,id
duplicate city: illoqqortoormiut,gl
duplicate city: provideniya,ru
duplicate city: vaini,to
duplicate city: nikolskoye,ru
duplicate city: punta arenas,cl
duplicate city: hobart,au
duplicate city: ushuaia,ar
city generated: dharmavaram,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A320BE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.41, 'lon': 77.72},
'dt': 1520400303,
'id': 1272842,
'main': {'grnd_level': 980.14,
'humidity': 21,
'pressure': 980.14,
'sea_level': 1024.5,
'temp': 33.63,
'temp_max': 33.63,
'temp_min': 33.63},
'name': 'Dharmavaram',
'sys': {'country': 'IN',
'message': 0.0031,
'sunrise': 1520384530,
'sunset': 1520427497},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 123.001, 'speed': 2.56}}
duplicate city: bluff,nz
city generated: deputatskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF0B5C0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: esperance,au
duplicate city: arlit,ne
duplicate city: belaya gora,ru
city generated: beloha,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A77CB70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': -25.17, 'lon': 45.06},
'dt': 1520400304,
'id': 1067565,
'main': {'grnd_level': 1006.48,
'humidity': 67,
'pressure': 1006.48,
'sea_level': 1022.75,
'temp': 26.98,
'temp_max': 26.98,
'temp_min': 26.98},
'name': 'Beloha',
'sys': {'country': 'MG',
'message': 0.02,
'sunrise': 1520391432,
'sunset': 1520436233},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 167.501, 'speed': 4.46}}
duplicate city: mataura,pf
duplicate city: bredasdorp,za
duplicate city: bredasdorp,za
city generated: osoyoos,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BAADA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 49.03, 'lon': -119.47},
'dt': 1520398800,
'id': 6094665,
'main': {'humidity': 86,
'pressure': 1025,
'temp': -1,
'temp_max': -1,
'temp_min': -1},
'name': 'Osoyoos',
'sys': {'country': 'CA',
'id': 3319,
'message': 0.0064,
'sunrise': 1520432825,
'sunset': 1520473876,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 155.501, 'speed': 0.76}}
city generated: bantry,ie
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A28E5F8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: hilo,us
duplicate city: mar del plata,ar
city generated: huilong,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C5CCC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 28.89, 'lon': 110.18},
'dt': 1520400305,
'id': 1795424,
'main': {'grnd_level': 980.79,
'humidity': 100,
'pressure': 980.79,
'sea_level': 1040.22,
'temp': 5.73,
'temp_max': 5.73,
'temp_min': 5.73},
'name': 'Huilong',
'rain': {'3h': 0.425},
'sys': {'country': 'CN',
'message': 0.0047,
'sunrise': 1520377098,
'sunset': 1520419364},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 54.0009, 'speed': 1.61}}
duplicate city: saldanha,za
duplicate city: sao filipe,cv
duplicate city: castro,cl
duplicate city: albany,au
city generated: mouila,ga
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FFBBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 100},
'cod': 200,
'coord': {'lat': -1.86, 'lon': 11.06},
'dt': 1520400306,
'id': 2398073,
'main': {'grnd_level': 1001.38,
'humidity': 86,
'pressure': 1001.38,
'sea_level': 1025.55,
'temp': 23.18,
'temp_max': 23.18,
'temp_min': 23.18},
'name': 'Mouila',
'rain': {'3h': 0.325},
'sys': {'country': 'GA',
'message': 0.0047,
'sunrise': 1520400165,
'sunset': 1520443839},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 61.5009, 'speed': 1.06}}
duplicate city: carnarvon,au
city generated: gornopravdinsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF2AEB8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 60.06, 'lon': 69.92},
'dt': 1520400306,
'id': 1506268,
'main': {'grnd_level': 985.81,
'humidity': 83,
'pressure': 985.81,
'sea_level': 994.75,
'temp': -6.35,
'temp_max': -6.35,
'temp_min': -6.35},
'name': 'Gornopravdinsk',
'sys': {'country': 'RU',
'message': 0.0243,
'sunrise': 1520388084,
'sunset': 1520427750},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 269.501, 'speed': 7.96}}
city generated: taoudenni,ml
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A799588>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: marzuq,ly
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A76EC88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.4, 'lon': 46.47},
'dt': 1520400307,
'id': 72181,
'main': {'grnd_level': 869.41,
'humidity': 24,
'pressure': 869.41,
'sea_level': 1029.97,
'temp': 21.55,
'temp_max': 21.55,
'temp_min': 21.55},
'name': 'Marzuq',
'sys': {'country': 'YE',
'message': 0.0042,
'sunrise': 1520392026,
'sunset': 1520434998},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 325.501, 'speed': 1.51}}
duplicate city: illoqqortoormiut,gl
duplicate city: illoqqortoormiut,gl
duplicate city: punta arenas,cl
duplicate city: mataura,pf
duplicate city: albany,au
duplicate city: hithadhoo,mv
duplicate city: rikitea,pf
duplicate city: fairbanks,us
duplicate city: hobart,au
city generated: teahupoo,pf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E20B8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: troitskoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0BFC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 52.98, 'lon': 84.68},
'dt': 1520400308,
'id': 1489209,
'main': {'grnd_level': 994.32,
'humidity': 100,
'pressure': 994.32,
'sea_level': 1022.55,
'temp': 5.78,
'temp_max': 5.78,
'temp_min': 5.78},
'name': 'Troitskoye',
'rain': {'3h': 2.175},
'sys': {'country': 'RU',
'message': 0.0111,
'sunrise': 1520384094,
'sunset': 1520424639},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 242.001, 'speed': 5.66}}
duplicate city: talnakh,ru
city generated: ambilobe,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A77BDD8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': -13.19, 'lon': 49.05},
'dt': 1520400308,
'id': 1082243,
'main': {'grnd_level': 999.59,
'humidity': 100,
'pressure': 999.59,
'sea_level': 1023.24,
'temp': 23.23,
'temp_max': 23.23,
'temp_min': 23.23},
'name': 'Ambilobe',
'rain': {'3h': 0.74},
'sys': {'country': 'MG',
'message': 0.0069,
'sunrise': 1520390788,
'sunset': 1520434974},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 270.501, 'speed': 2.06}}
duplicate city: ndende,ga
duplicate city: new norfolk,au
city generated: hutchinson,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B3A6DD8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 38.06, 'lon': -97.93},
'dt': 1520398560,
'id': 4273299,
'main': {'humidity': 63,
'pressure': 1025,
'temp': -1.68,
'temp_max': 0,
'temp_min': -4},
'name': 'Hutchinson',
'sys': {'country': 'US',
'id': 1075,
'message': 0.0087,
'sunrise': 1520427263,
'sunset': 1520469085,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 340, 'speed': 7.7}}
city generated: nauta,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9CB550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -4.51, 'lon': -73.58},
'dt': 1520400309,
'id': 3692020,
'main': {'grnd_level': 1008.83,
'humidity': 99,
'pressure': 1008.83,
'sea_level': 1022.27,
'temp': 23.38,
'temp_max': 23.38,
'temp_min': 23.38},
'name': 'Nauta',
'sys': {'country': 'PE',
'message': 0.0117,
'sunrise': 1520420418,
'sunset': 1520464204},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 206.501, 'speed': 1.26}}
duplicate city: busselton,au
city generated: bronnoysund,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A940F28>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: khasan,ru
duplicate city: ushuaia,ar
duplicate city: pangnirtung,ca
duplicate city: cape town,za
city generated: foz,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F29AC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 100},
'cod': 200,
'coord': {'lat': 43.57, 'lon': -7.26},
'dt': 1520400310,
'id': 3122172,
'main': {'grnd_level': 1015.56,
'humidity': 100,
'pressure': 1015.56,
'sea_level': 1020.04,
'temp': 10.23,
'temp_max': 10.23,
'temp_min': 10.23},
'name': 'Foz',
'rain': {'3h': 0.23},
'sys': {'country': 'ES',
'message': 0.0034,
'sunrise': 1520405712,
'sunset': 1520447129},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 250.001, 'speed': 9.06}}
city generated: krasnoarmeysk,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7236A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 56.12, 'lon': 38.15},
'dt': 1520397000,
'id': 542463,
'main': {'humidity': 78,
'pressure': 1012,
'temp': -11,
'temp_max': -11,
'temp_min': -11},
'name': 'Krasnoarmeysk',
'sys': {'country': 'RU',
'id': 7323,
'message': 0.0036,
'sunrise': 1520395423,
'sunset': 1520435648,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light snow',
'icon': '13d',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 90, 'speed': 5}}
duplicate city: mataura,pf
duplicate city: rikitea,pf
city generated: mogadishu,so
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B17FCC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 2.04, 'lon': 45.34},
'dt': 1520398800,
'id': 53654,
'main': {'humidity': 83,
'pressure': 1011,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Mogadishu',
'sys': {'country': 'SO',
'id': 6376,
'message': 0.0031,
'sunrise': 1520392025,
'sunset': 1520435531,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 40, 'speed': 4.6}}
duplicate city: okhotsk,ru
duplicate city: sao filipe,cv
duplicate city: hilo,us
duplicate city: albany,au
city generated: sungairaya,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A282D30>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
city generated: dunedin,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A97BC50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -45.87, 'lon': 170.5},
'dt': 1520400037,
'id': 2191562,
'main': {'grnd_level': 990.51,
'humidity': 85,
'pressure': 990.51,
'sea_level': 1030.41,
'temp': 14.43,
'temp_max': 14.43,
'temp_min': 14.43},
'name': 'Dunedin',
'sys': {'country': 'NZ',
'message': 0.0054,
'sunrise': 1520360519,
'sunset': 1520406916},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 203.501, 'speed': 3.41}}
duplicate city: ushuaia,ar
duplicate city: ushuaia,ar
duplicate city: norman wells,ca
city generated: kampot,kh
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A712A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 10.62, 'lon': 104.18},
'dt': 1520400312,
'id': 1831112,
'main': {'grnd_level': 1014.02,
'humidity': 73,
'pressure': 1014.02,
'sea_level': 1023.4,
'temp': 31.23,
'temp_max': 31.23,
'temp_min': 31.23},
'name': 'Kampot',
'sys': {'country': 'KH',
'message': 0.0028,
'sunrise': 1520378097,
'sunset': 1520421228},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 116.501, 'speed': 1.96}}
city generated: canals,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F1EC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 38.96, 'lon': -0.58},
'dt': 1520398800,
'id': 2520320,
'main': {'humidity': 70,
'pressure': 1006,
'temp': 8,
'temp_max': 8,
'temp_min': 8},
'name': 'Canals',
'sys': {'country': 'ES',
'id': 5503,
'message': 0.0029,
'sunrise': 1520403952,
'sunset': 1520445677,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 280, 'speed': 2.1}}
city generated: surgut,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0A60B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 61.25, 'lon': 73.4},
'dt': 1520397000,
'id': 1490624,
'main': {'humidity': 93,
'pressure': 978,
'temp': 0,
'temp_max': 0,
'temp_min': 0},
'name': 'Surgut',
'sys': {'country': 'RU',
'id': 7313,
'message': 0.0036,
'sunrise': 1520387345,
'sunset': 1520426821,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 150, 'gust': 12, 'speed': 7}}
city generated: laureles,py
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACDA390>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 20.73, 'lon': -103.39},
'dt': 1520398440,
'id': 4005539,
'main': {'humidity': 25,
'pressure': 1021,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'Laureles',
'sys': {'country': 'MX',
'id': 3982,
'message': 0.0031,
'sunrise': 1520428118,
'sunset': 1520470832,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 280, 'speed': 2.1}}
duplicate city: kasongo-lunda,cd
city generated: qaqortoq,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A093E48>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: korla,cn
city generated: baculin,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AA09DA0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: eyl,so
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B17F588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 7.98, 'lon': 49.82},
'dt': 1520400315,
'id': 60019,
'main': {'grnd_level': 1016.37,
'humidity': 90,
'pressure': 1016.37,
'sea_level': 1027.58,
'temp': 25.08,
'temp_max': 25.08,
'temp_min': 25.08},
'name': 'Eyl',
'sys': {'country': 'SO',
'message': 0.0031,
'sunrise': 1520391080,
'sunset': 1520434331},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 30.5009, 'speed': 7.21}}
city generated: bauchi,ng
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8EE048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 10.31, 'lon': 9.85},
'dt': 1520400315,
'id': 2347470,
'main': {'grnd_level': 949.17,
'humidity': 53,
'pressure': 949.17,
'sea_level': 1023.12,
'temp': 16.73,
'temp_max': 16.73,
'temp_min': 16.73},
'name': 'Bauchi',
'sys': {'country': 'NG',
'message': 0.0035,
'sunrise': 1520400721,
'sunset': 1520443874},
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 256.001, 'speed': 1.76}}
city generated: komsomolskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF7C710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 67.55, 'lon': 63.78},
'dt': 1520400316,
'id': 1486910,
'main': {'grnd_level': 983.38,
'humidity': 82,
'pressure': 983.38,
'sea_level': 1004.76,
'temp': -12.78,
'temp_max': -12.78,
'temp_min': -12.78},
'name': 'Komsomolskiy',
'sys': {'country': 'RU',
'message': 0.0039,
'sunrise': 1520390303,
'sunset': 1520428504},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 47.0009, 'speed': 8.96}}
duplicate city: grindavik,is
duplicate city: hilo,us
duplicate city: ribeira grande,pt
city generated: bahia blanca,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19924B00>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: yar-sale,ru
duplicate city: ushuaia,ar
duplicate city: hermanus,za
duplicate city: punta arenas,cl
city generated: ulladulla,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19965B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -35.36, 'lon': 150.48},
'dt': 1520398800,
'id': 2145554,
'main': {'humidity': 43,
'pressure': 1026,
'temp': 23,
'temp_max': 23,
'temp_min': 23},
'name': 'Ulladulla',
'sys': {'country': 'AU',
'id': 8231,
'message': 0.0041,
'sunrise': 1520365788,
'sunset': 1520411272,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 120, 'speed': 5.7}}
duplicate city: hobart,au
duplicate city: atuona,pf
duplicate city: ushuaia,ar
city generated: rawson,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992AC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -43.3, 'lon': -65.11},
'dt': 1520400317,
'id': 3839307,
'main': {'grnd_level': 1010.37,
'humidity': 61,
'pressure': 1010.37,
'sea_level': 1021.38,
'temp': 14.95,
'temp_max': 14.95,
'temp_min': 14.95},
'name': 'Rawson',
'sys': {'country': 'AR',
'message': 0.0039,
'sunrise': 1520417243,
'sunset': 1520463271},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 353.501, 'speed': 1.11}}
duplicate city: qaanaaq,gl
city generated: vondrozo,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A783748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -22.82, 'lon': 47.32},
'dt': 1520400317,
'id': 1053507,
'main': {'grnd_level': 993.43,
'humidity': 89,
'pressure': 993.43,
'sea_level': 1020.36,
'temp': 26.45,
'temp_max': 26.45,
'temp_min': 26.45},
'name': 'Vondrozo',
'sys': {'country': 'MG',
'message': 0.0034,
'sunrise': 1520390956,
'sunset': 1520435627},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 246.001, 'speed': 0.86}}
duplicate city: ushuaia,ar
duplicate city: jamestown,sh
duplicate city: severo-kurilsk,ru
city generated: campbell river,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B76D68>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: voyvozh,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0FD630>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: fare,pf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9DDEB8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vaini,to
duplicate city: puerto ayora,ec
duplicate city: busselton,au
duplicate city: kahului,us
duplicate city: san patricio,mx
city generated: nantucket,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B3E31D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hami,cn
duplicate city: sao filipe,cv
duplicate city: tasiilaq,gl
city generated: wilmington,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A629F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 39.75, 'lon': -75.55},
'dt': 1520399280,
'id': 4145381,
'main': {'humidity': 100,
'pressure': 1012,
'temp': 0.25,
'temp_max': 2,
'temp_min': -1},
'name': 'Wilmington',
'sys': {'country': 'US',
'id': 636,
'message': 0.0043,
'sunrise': 1520421951,
'sunset': 1520463658,
'type': 1},
'visibility': 1609,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 50, 'speed': 3.1}}
duplicate city: vaini,to
city generated: esso,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF1E710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 55.93, 'lon': 158.7},
'dt': 1520400320,
'id': 2125711,
'main': {'grnd_level': 890.32,
'humidity': 67,
'pressure': 890.32,
'sea_level': 1019.76,
'temp': -14.93,
'temp_max': -14.93,
'temp_min': -14.93},
'name': 'Esso',
'sys': {'country': 'RU',
'message': 0.0032,
'sunrise': 1520366531,
'sunset': 1520406685},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 263.001, 'speed': 3.11}}
duplicate city: souillac,mu
city generated: sosnogorsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B08E7B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 63.59, 'lon': 53.93},
'dt': 1520400320,
'id': 490391,
'main': {'grnd_level': 994.32,
'humidity': 63,
'pressure': 994.32,
'sea_level': 1012.05,
'temp': -14.3,
'temp_max': -14.3,
'temp_min': -14.3},
'name': 'Sosnogorsk',
'sys': {'country': 'RU',
'message': 0.0032,
'sunrise': 1520392217,
'sunset': 1520431302},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 326.001, 'speed': 4.36}}
city generated: itumba,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B218DD8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mataura,pf
duplicate city: mogadishu,so
duplicate city: busselton,au
city generated: monroe,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6CAA58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 41.91, 'lon': -83.4},
'dt': 1520399820,
'id': 5002344,
'main': {'humidity': 93,
'pressure': 1004,
'temp': 1.27,
'temp_max': 3,
'temp_min': 0},
'name': 'Monroe',
'sys': {'country': 'US',
'id': 1435,
'message': 0.004,
'sunrise': 1520423905,
'sunset': 1520465474,
'type': 1},
'visibility': 11265,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'},
{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 157.001, 'speed': 2.21}}
duplicate city: saleaula,ws
duplicate city: honiara,sb
duplicate city: cherskiy,ru
duplicate city: ushuaia,ar
duplicate city: ilulissat,gl
city generated: chatakonda,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A307828>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: borovoy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEEEE10>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 63.23, 'lon': 52.89},
'dt': 1520400322,
'id': 572091,
'main': {'grnd_level': 990.6,
'humidity': 71,
'pressure': 990.6,
'sea_level': 1014.24,
'temp': -14.3,
'temp_max': -14.3,
'temp_min': -14.3},
'name': 'Borovoy',
'sys': {'country': 'RU',
'message': 0.006,
'sunrise': 1520392431,
'sunset': 1520431585},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 317.001, 'speed': 6.11}}
duplicate city: bijie,cn
city generated: la trinidad,ni
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A904630>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 12.97, 'lon': -86.24},
'dt': 1520400323,
'id': 3619194,
'main': {'grnd_level': 934.75,
'humidity': 91,
'pressure': 934.75,
'sea_level': 1025.06,
'temp': 12.9,
'temp_max': 12.9,
'temp_min': 12.9},
'name': 'La Trinidad',
'sys': {'country': 'NI',
'message': 0.0034,
'sunrise': 1520423831,
'sunset': 1520466881},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 37.5009, 'speed': 1.41}}
duplicate city: amderma,ru
duplicate city: punta arenas,cl
duplicate city: albany,au
city generated: brae,gb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A00FE80>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: venado tuerto,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992E240>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -33.75, 'lon': -61.97},
'dt': 1520400323,
'id': 3833062,
'main': {'grnd_level': 1018.4,
'humidity': 70,
'pressure': 1018.4,
'sea_level': 1030.82,
'temp': 12.8,
'temp_max': 12.8,
'temp_min': 12.8},
'name': 'Venado Tuerto',
'sys': {'country': 'AR',
'message': 0.0032,
'sunrise': 1520416863,
'sunset': 1520462158},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 65.0009, 'speed': 1.41}}
city generated: thalgau,at
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199490F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 47.84, 'lon': 13.25},
'dt': 1520398200,
'id': 2763749,
'main': {'humidity': 93,
'pressure': 995,
'temp': 2,
'temp_max': 2,
'temp_min': 2},
'name': 'Thalgau',
'sys': {'country': 'AT',
'id': 5933,
'message': 0.004,
'sunrise': 1520400966,
'sunset': 1520442039,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 160, 'speed': 3.6}}
duplicate city: ushuaia,ar
duplicate city: atuona,pf
duplicate city: chokurdakh,ru
duplicate city: port lincoln,au
duplicate city: sentyabrskiy,ru
city generated: langarud,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A482278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 37.2, 'lon': 50.15},
'dt': 1520398800,
'id': 125897,
'main': {'humidity': 100,
'pressure': 1017,
'temp': 9.51,
'temp_max': 10,
'temp_min': 9},
'name': 'Langarud',
'sys': {'country': 'IR',
'id': 7029,
'message': 0.0036,
'sunrise': 1520391733,
'sunset': 1520433548,
'type': 1},
'visibility': 4000,
'weather': [{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 70.0009, 'speed': 1.61}}
city generated: severnoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B06EDD8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 54.09, 'lon': 52.54},
'dt': 1520400324,
'id': 496381,
'main': {'grnd_level': 1006.81,
'humidity': 81,
'pressure': 1006.81,
'sea_level': 1036.25,
'temp': -14.43,
'temp_max': -14.43,
'temp_min': -14.43},
'name': 'Severnoye',
'sys': {'country': 'RU',
'message': 0.0036,
'sunrise': 1520391856,
'sunset': 1520432304},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 279.501, 'speed': 4.01}}
duplicate city: vaini,to
duplicate city: vardo,no
duplicate city: ushuaia,ar
duplicate city: barentsburg,sj
duplicate city: ushuaia,ar
duplicate city: port alfred,za
duplicate city: jamestown,sh
city generated: tiznit,ma
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A773AC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 29.7, 'lon': -9.73},
'dt': 1520400325,
'id': 2527089,
'main': {'grnd_level': 1010.62,
'humidity': 99,
'pressure': 1010.62,
'sea_level': 1029.12,
'temp': 15.78,
'temp_max': 15.78,
'temp_min': 15.78},
'name': 'Tiznit',
'rain': {'3h': 0.51},
'sys': {'country': 'MA',
'message': 0.003,
'sunrise': 1520405875,
'sunset': 1520448134},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 239.001, 'speed': 2.31}}
duplicate city: punta arenas,cl
duplicate city: bredasdorp,za
duplicate city: mnogovershinnyy,ru
duplicate city: ushuaia,ar
duplicate city: qaanaaq,gl
city generated: jieshi,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C64710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 22.82, 'lon': 115.83},
'dt': 1520400325,
'id': 1805857,
'main': {'grnd_level': 1026.58,
'humidity': 82,
'pressure': 1026.58,
'sea_level': 1028.96,
'temp': 21.4,
'temp_max': 21.4,
'temp_min': 21.4},
'name': 'Jieshi',
'sys': {'country': 'CN',
'message': 0.0038,
'sunrise': 1520375587,
'sunset': 1520418158},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 87.0009, 'speed': 5.66}}
city generated: bargal,so
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B17BDA0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: barroualie,vc
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B693400>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: puerto ayora,ec
duplicate city: vaini,to
duplicate city: korla,cn
duplicate city: belushya guba,ru
duplicate city: saint george,bm
city generated: blackfoot,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B36F160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 43.19, 'lon': -112.35},
'dt': 1520398380,
'id': 5586093,
'main': {'humidity': 58,
'pressure': 1027,
'temp': -6.59,
'temp_max': -2,
'temp_min': -11},
'name': 'Blackfoot',
'sys': {'country': 'US',
'id': 932,
'message': 0.0084,
'sunrise': 1520430890,
'sunset': 1520472385,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 120, 'speed': 2.1}}
duplicate city: nome,us
duplicate city: saint george,bm
duplicate city: new norfolk,au
duplicate city: tuktoyaktuk,ca
city generated: lamu,ke
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A708A90>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 0.57, 'lon': 122.3},
'dt': 1520400327,
'id': 1623890,
'main': {'grnd_level': 983.38,
'humidity': 100,
'pressure': 983.38,
'sea_level': 1021.3,
'temp': 25.23,
'temp_max': 25.23,
'temp_min': 25.23},
'name': 'Lamu',
'rain': {'3h': 6.34},
'sys': {'country': 'ID',
'message': 0.0038,
'sunrise': 1520373525,
'sunset': 1520417095},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 272.001, 'speed': 0.86}}
duplicate city: rikitea,pf
duplicate city: bluff,nz
duplicate city: saskylakh,ru
duplicate city: ponta delgada,pt
duplicate city: hobart,au
duplicate city: kavieng,pg
duplicate city: cidreira,br
duplicate city: koumac,nc
duplicate city: hilo,us
duplicate city: mataura,pf
city generated: bonavista,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B73C88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 48.65, 'lon': -53.11},
'dt': 1520400327,
'id': 5905393,
'main': {'grnd_level': 1026.83,
'humidity': 89,
'pressure': 1026.83,
'sea_level': 1029.04,
'temp': -0.53,
'temp_max': -0.53,
'temp_min': -0.53},
'name': 'Bonavista',
'sys': {'country': 'CA',
'message': 0.0033,
'sunrise': 1520416905,
'sunset': 1520457948},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 35.5009, 'speed': 11.76}}
duplicate city: ushuaia,ar
duplicate city: dikson,ru
duplicate city: deputatskiy,ru
duplicate city: busselton,au
duplicate city: rikitea,pf
city generated: north bend,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A652F98>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 43.41, 'lon': -124.22},
'dt': 1520398560,
'id': 5742974,
'main': {'humidity': 87,
'pressure': 1018,
'temp': 9.63,
'temp_max': 10,
'temp_min': 9},
'name': 'North Bend',
'sys': {'country': 'US',
'id': 2302,
'message': 0.0037,
'sunrise': 1520433743,
'sunset': 1520475229,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 160, 'speed': 2.6}}
duplicate city: kodiak,us
duplicate city: castro,cl
duplicate city: new norfolk,au
duplicate city: klyuchi,ru
duplicate city: arlit,ne
duplicate city: hithadhoo,mv
duplicate city: laguna,br
duplicate city: kavieng,pg
city generated: evensk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF1E978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 61.92, 'lon': 159.24},
'dt': 1520400328,
'id': 2125693,
'main': {'grnd_level': 1002.03,
'humidity': 96,
'pressure': 1002.03,
'sea_level': 1010.88,
'temp': -5.73,
'temp_max': -5.73,
'temp_min': -5.73},
'name': 'Evensk',
'sys': {'country': 'RU',
'message': 0.0035,
'sunrise': 1520366846,
'sunset': 1520406126},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 30.5009, 'speed': 7.21}}
duplicate city: barrow,us
duplicate city: cabo san lucas,mx
duplicate city: kahului,us
city generated: atbasar,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A71B978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 51.81, 'lon': 68.36},
'dt': 1520400328,
'id': 1526038,
'main': {'grnd_level': 989.14,
'humidity': 86,
'pressure': 989.14,
'sea_level': 1028.27,
'temp': -8.88,
'temp_max': -8.88,
'temp_min': -8.88},
'name': 'Atbasar',
'sys': {'country': 'KZ',
'message': 0.0033,
'sunrise': 1520387944,
'sunset': 1520428619},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 259.501, 'speed': 9.81}}
duplicate city: busselton,au
duplicate city: hermanus,za
duplicate city: arraial do cabo,br
duplicate city: albany,au
city generated: nipawin,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BA6F98>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 53.36, 'lon': -104.02},
'dt': 1520398800,
'id': 6088469,
'main': {'humidity': 92,
'pressure': 1025,
'temp': -7,
'temp_max': -7,
'temp_min': -7},
'name': 'Nipawin',
'sys': {'country': 'CA',
'id': 3923,
'message': 0.0042,
'sunrise': 1520429329,
'sunset': 1520469966,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 250, 'speed': 3.1}}
duplicate city: egvekinot,ru
duplicate city: mataura,pf
city generated: qasigiannguit,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A093EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 68.82, 'lon': -51.19},
'dt': 1520398200,
'id': 3420768,
'main': {'humidity': 65,
'pressure': 1025,
'temp': -14,
'temp_max': -14,
'temp_min': -14},
'name': 'Qasigiannguit',
'sys': {'country': 'GL',
'id': 4805,
'message': 0.0039,
'sunrise': 1520417988,
'sunset': 1520456001,
'type': 1},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 90, 'speed': 8.2}}
duplicate city: rikitea,pf
city generated: misratah,ly
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A76EDD8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: kapaa,us
duplicate city: kapaa,us
duplicate city: rikitea,pf
duplicate city: vaini,to
duplicate city: cidreira,br
duplicate city: esperance,au
city generated: tessalit,ml
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7996D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 20.2, 'lon': 1.01},
'dt': 1520400330,
'id': 2449893,
'main': {'grnd_level': 966.85,
'humidity': 55,
'pressure': 966.85,
'sea_level': 1027.21,
'temp': 12.8,
'temp_max': 12.8,
'temp_min': 12.8},
'name': 'Tessalit',
'sys': {'country': 'ML',
'message': 0.0097,
'sunrise': 1520403064,
'sunset': 1520445782},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 33.5009, 'speed': 1.16}}
duplicate city: taolanaro,mg
duplicate city: nikolskoye,ru
city generated: puerto carreno,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D0AE48>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: cochrane,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B7DFD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -47.25, 'lon': -72.57},
'dt': 1520400331,
'id': 3894483,
'main': {'grnd_level': 928.83,
'humidity': 94,
'pressure': 928.83,
'sea_level': 1017.73,
'temp': 7.9,
'temp_max': 7.9,
'temp_min': 7.9},
'name': 'Cochrane',
'sys': {'country': 'CL',
'message': 0.022,
'sunrise': 1520418842,
'sunset': 1520465245},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 357.501, 'speed': 0.86}}
duplicate city: thompson,ca
duplicate city: barrow,us
duplicate city: hasaki,jp
duplicate city: tuktoyaktuk,ca
duplicate city: provideniya,ru
duplicate city: taolanaro,mg
duplicate city: tessalit,ml
duplicate city: bluff,nz
duplicate city: qaanaaq,gl
duplicate city: cape town,za
duplicate city: rikitea,pf
city generated: jinchang,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C64CF8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 38.52, 'lon': 102.19},
'dt': 1520400332,
'id': 1805733,
'main': {'grnd_level': 815.1,
'humidity': 87,
'pressure': 815.1,
'sea_level': 1041.07,
'temp': 3.3,
'temp_max': 3.3,
'temp_min': 3.3},
'name': 'Jinchang',
'sys': {'country': 'CN',
'message': 0.0045,
'sunrise': 1520379298,
'sunset': 1520421009},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 342.001, 'speed': 1.86}}
duplicate city: port hardy,ca
duplicate city: punta arenas,cl
city generated: montbrison,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FC5710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 45.61, 'lon': 4.07},
'dt': 1520398800,
'id': 2992890,
'main': {'humidity': 65,
'pressure': 998,
'temp': 5,
'temp_max': 5,
'temp_min': 5},
'name': 'Montbrison',
'sys': {'country': 'FR',
'id': 5581,
'message': 0.0035,
'sunrise': 1520403074,
'sunset': 1520444332,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 190, 'speed': 6.7}}
duplicate city: tiksi,ru
city generated: puerto colombia,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D0AEF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 10.99, 'lon': -74.96},
'dt': 1520398800,
'id': 3671497,
'main': {'humidity': 78,
'pressure': 1010,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Puerto Colombia',
'sys': {'country': 'CO',
'id': 4246,
'message': 0.0027,
'sunrise': 1520421082,
'sunset': 1520464215,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 350, 'speed': 4.1}}
duplicate city: rikitea,pf
city generated: miyako,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A577D30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 33.63, 'lon': 130.94},
'dt': 1520397000,
'id': 1848087,
'main': {'humidity': 47,
'pressure': 1022,
'temp': 11.52,
'temp_max': 15,
'temp_min': 10},
'name': 'Miyako',
'sys': {'country': 'JP',
'id': 7546,
'message': 0.005,
'sunrise': 1520372253,
'sunset': 1520414251,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 20, 'speed': 2.1}}
city generated: waitati,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A98E940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -45.75, 'lon': 170.57},
'dt': 1520400333,
'id': 2179825,
'main': {'grnd_level': 990.51,
'humidity': 85,
'pressure': 990.51,
'sea_level': 1030.41,
'temp': 14.43,
'temp_max': 14.43,
'temp_min': 14.43},
'name': 'Waitati',
'sys': {'country': 'NZ',
'message': 0.0034,
'sunrise': 1520360509,
'sunset': 1520406893},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 203.501, 'speed': 3.41}}
duplicate city: hobart,au
duplicate city: longyearbyen,sj
city generated: asyut,eg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F07EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 27.18, 'lon': 31.19},
'dt': 1520398800,
'id': 359783,
'main': {'humidity': 42,
'pressure': 1017,
'temp': 19,
'temp_max': 19,
'temp_min': 19},
'name': 'Asyut',
'sys': {'country': 'EG',
'id': 6387,
'message': 0.0027,
'sunrise': 1520395996,
'sunset': 1520438373,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 350, 'speed': 2.1}}
duplicate city: hilo,us
duplicate city: dingle,ie
city generated: virginia beach,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6C3160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 36.85, 'lon': -75.98},
'dt': 1520398740,
'id': 4791259,
'main': {'humidity': 93,
'pressure': 1007,
'temp': 7,
'temp_max': 9,
'temp_min': 6},
'name': 'Virginia Beach',
'sys': {'country': 'US',
'id': 2869,
'message': 0.0042,
'sunrise': 1520421963,
'sunset': 1520463849,
'type': 1},
'visibility': 8047,
'weather': [{'description': 'moderate rain',
'icon': '10n',
'id': 501,
'main': 'Rain'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 110, 'speed': 4.1}}
city generated: luang prabang,la
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A72A470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 19.89, 'lon': 102.14},
'dt': 1520395200,
'id': 1655559,
'main': {'humidity': 54,
'pressure': 1012,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Luang Prabang',
'sys': {'country': 'LA',
'id': 7894,
'message': 0.0039,
'sunrise': 1520378799,
'sunset': 1520421512,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 180, 'speed': 1}}
city generated: saint anthony,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BB6E10>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 43.97, 'lon': -111.68},
'dt': 1520398560,
'id': 5606187,
'main': {'humidity': 85,
'pressure': 1027,
'temp': -12.69,
'temp_max': -11,
'temp_min': -16},
'name': 'Saint Anthony',
'sys': {'country': 'US',
'id': 933,
'message': 0.0047,
'sunrise': 1520430757,
'sunset': 1520472197,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 50, 'speed': 1.5}}
city generated: la cruz,cr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D47748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 23.92, 'lon': -106.89},
'dt': 1520400336,
'id': 4002745,
'main': {'grnd_level': 1006.56,
'humidity': 69,
'pressure': 1006.56,
'sea_level': 1025.59,
'temp': 18.13,
'temp_max': 18.13,
'temp_min': 18.13},
'name': 'La Cruz',
'sys': {'country': 'MX',
'message': 0.0031,
'sunrise': 1520429032,
'sunset': 1520471601},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 320.501, 'speed': 1.76}}
duplicate city: kapaa,us
duplicate city: hermanus,za
duplicate city: havoysund,no
city generated: douglas,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CE898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 58.28, 'lon': -134.39},
'dt': 1520398560,
'id': 5554072,
'main': {'humidity': 92,
'pressure': 1027,
'temp': -2,
'temp_max': -2,
'temp_min': -2},
'name': 'Douglas',
'sys': {'country': 'US',
'id': 86,
'message': 0.0034,
'sunrise': 1520436893,
'sunset': 1520476988,
'type': 1},
'visibility': 9656,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 80, 'speed': 2.6}}
duplicate city: upernavik,gl
duplicate city: ponta do sol,cv
city generated: moranbah,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1995E2E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -22, 'lon': 148.04},
'dt': 1520400336,
'id': 6533368,
'main': {'grnd_level': 988.49,
'humidity': 63,
'pressure': 988.49,
'sea_level': 1021.58,
'temp': 27.23,
'temp_max': 27.23,
'temp_min': 27.23},
'name': 'Moranbah',
'rain': {'3h': 0.16},
'sys': {'country': 'AU',
'message': 0.0028,
'sunrise': 1520366799,
'sunset': 1520411448},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 90.0009, 'speed': 7.86}}
duplicate city: lasa,cn
duplicate city: punta arenas,cl
city generated: shu,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A725FD0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: kapaa,us
city generated: springdale,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BC47F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 36.19, 'lon': -94.13},
'dt': 1520398680,
'id': 4132093,
'main': {'humidity': 55,
'pressure': 1021,
'temp': 1,
'temp_max': 1,
'temp_min': 1},
'name': 'Springdale',
'sys': {'country': 'US',
'id': 281,
'message': 0.0044,
'sunrise': 1520426295,
'sunset': 1520468227,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 330, 'gust': 9.3, 'speed': 5.7}}
duplicate city: punta arenas,cl
duplicate city: yellowknife,ca
city generated: lazaro cardenas,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A83B208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 28.39, 'lon': -105.62},
'dt': 1520400338,
'id': 3996234,
'main': {'grnd_level': 884.25,
'humidity': 23,
'pressure': 884.25,
'sea_level': 1032.16,
'temp': 10.65,
'temp_max': 10.65,
'temp_min': 10.65},
'name': 'Lazaro Cardenas',
'sys': {'country': 'MX',
'message': 0.0034,
'sunrise': 1520428837,
'sunset': 1520471190},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 46.5009, 'speed': 3.91}}
duplicate city: mataura,pf
city generated: ashdod,il
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2A2E48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 31.8, 'lon': 34.65},
'dt': 1520398200,
'id': 295629,
'main': {'humidity': 87,
'pressure': 1018,
'temp': 14.02,
'temp_max': 15,
'temp_min': 13},
'name': 'Ashdod',
'sys': {'country': 'IL',
'id': 5913,
'message': 0.0045,
'sunrise': 1520395290,
'sunset': 1520437423,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'speed': 0.5}}
city generated: serafimovich,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B069EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 49.58, 'lon': 42.73},
'dt': 1520400339,
'id': 496957,
'main': {'grnd_level': 1017.59,
'humidity': 90,
'pressure': 1017.59,
'sea_level': 1031.87,
'temp': -9.88,
'temp_max': -9.88,
'temp_min': -9.88},
'name': 'Serafimovich',
'sys': {'country': 'RU',
'message': 0.0037,
'sunrise': 1520393978,
'sunset': 1520434881},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 123.001, 'speed': 5.91}}
city generated: mayo,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BA0E48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 63.59, 'lon': -135.9},
'dt': 1520398800,
'id': 6068416,
'main': {'humidity': 83,
'pressure': 1021,
'temp': -22,
'temp_max': -22,
'temp_min': -22},
'name': 'Mayo',
'sys': {'country': 'CA',
'id': 3955,
'message': 0.003,
'sunrise': 1520437667,
'sunset': 1520476955,
'type': 1},
'visibility': 32186,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 52.0009, 'speed': 1.21}}
duplicate city: ilinskiy,ru
duplicate city: nikolskoye,ru
duplicate city: belushya guba,ru
city generated: can,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1E4470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 46.08, 'lon': 11.97},
'dt': 1520398500,
'id': 3177120,
'main': {'humidity': 79,
'pressure': 992,
'temp': 4.08,
'temp_max': 7,
'temp_min': -4},
'name': 'Can',
'sys': {'country': 'IT',
'id': 5876,
'message': 0.0069,
'sunrise': 1520401200,
'sunset': 1520442416,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 110, 'speed': 2.1}}
city generated: haibowan,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C55BE0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: busselton,au
city generated: sawtell,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199650B8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vardo,no
duplicate city: saint-augustin,ca
duplicate city: punta arenas,cl
city generated: ilabaya,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9C2DA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -17.42, 'lon': -70.51},
'dt': 1520400341,
'id': 3938455,
'main': {'grnd_level': 843.23,
'humidity': 85,
'pressure': 843.23,
'sea_level': 1024.13,
'temp': 11.08,
'temp_max': 11.08,
'temp_min': 11.08},
'name': 'Ilabaya',
'sys': {'country': 'PE',
'message': 0.0039,
'sunrise': 1520419383,
'sunset': 1520463755},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 75.0009, 'speed': 1.06}}
city generated: adolfo lopez mateos,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7CB2B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 26.8, 'lon': -109.39},
'dt': 1520400341,
'id': 3979962,
'main': {'grnd_level': 1002.67,
'humidity': 61,
'pressure': 1002.67,
'sea_level': 1027.09,
'temp': 13.68,
'temp_max': 13.68,
'temp_min': 13.68},
'name': 'Adolfo Lopez Mateos',
'sys': {'country': 'MX',
'message': 0.0088,
'sunrise': 1520429702,
'sunset': 1520472134},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 272.001, 'speed': 0.76}}
city generated: chardara,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A71F278>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: pochutla,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A862C18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 15.74, 'lon': -96.47},
'dt': 1520400342,
'id': 3517970,
'main': {'grnd_level': 1014.83,
'humidity': 100,
'pressure': 1014.83,
'sea_level': 1025.19,
'temp': 25.63,
'temp_max': 25.63,
'temp_min': 25.63},
'name': 'Pochutla',
'sys': {'country': 'MX',
'message': 0.0061,
'sunrise': 1520426346,
'sunset': 1520469279},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 285.501, 'speed': 3.06}}
duplicate city: ancud,cl
city generated: hadejia,ng
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8F08D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 12.45, 'lon': 10.04},
'dt': 1520400343,
'id': 2339631,
'main': {'grnd_level': 983.95,
'humidity': 50,
'pressure': 983.95,
'sea_level': 1023,
'temp': 17.03,
'temp_max': 17.03,
'temp_min': 17.03},
'name': 'Hadejia',
'sys': {'country': 'NG',
'message': 0.0053,
'sunrise': 1520400722,
'sunset': 1520443783},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 11.0009, 'speed': 1.21}}
duplicate city: cape town,za
duplicate city: bluff,nz
duplicate city: bluff,nz
duplicate city: mar del plata,ar
city generated: killybegs,ie
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2988D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tuktoyaktuk,ca
duplicate city: amderma,ru
duplicate city: samusu,ws
duplicate city: attawapiskat,ca
city generated: igunga,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B218128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -4.28, 'lon': 33.88},
'dt': 1520400343,
'id': 159386,
'main': {'grnd_level': 899.4,
'humidity': 100,
'pressure': 899.4,
'sea_level': 1025.83,
'temp': 18.3,
'temp_max': 18.3,
'temp_min': 18.3},
'name': 'Igunga',
'sys': {'country': 'TZ',
'message': 0.0039,
'sunrise': 1520394635,
'sunset': 1520438415},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 46.0009, 'speed': 2.86}}
duplicate city: albany,au
city generated: pampa,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6A0AC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 35.54, 'lon': -100.96},
'dt': 1520398500,
'id': 5527953,
'main': {'humidity': 28,
'pressure': 1026,
'temp': 2.05,
'temp_max': 4,
'temp_min': 0},
'name': 'Pampa',
'sys': {'country': 'US',
'id': 2695,
'message': 0.0068,
'sunrise': 1520427914,
'sunset': 1520469885,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 40, 'speed': 5.1}}
duplicate city: ushuaia,ar
city generated: alta gracia,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19924978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -31.66, 'lon': -64.43},
'dt': 1520395200,
'id': 3866163,
'main': {'humidity': 77,
'pressure': 1019,
'temp': 16,
'temp_max': 16,
'temp_min': 16},
'name': 'Alta Gracia',
'sys': {'country': 'AR',
'id': 4688,
'message': 0.0038,
'sunrise': 1520417524,
'sunset': 1520462681,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 340, 'speed': 1.5}}
duplicate city: clyde river,ca
city generated: apatou,gf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A089518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 5.16, 'lon': -54.34},
'dt': 1520400345,
'id': 3382527,
'main': {'grnd_level': 1019.29,
'humidity': 87,
'pressure': 1019.29,
'sea_level': 1024.78,
'temp': 24.55,
'temp_max': 24.55,
'temp_min': 24.55},
'name': 'Apatou',
'rain': {'3h': 0.195},
'sys': {'country': 'SR',
'message': 0.003,
'sunrise': 1520416010,
'sunset': 1520459387},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 60.5009, 'speed': 1.76}}
city generated: yulin,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CA2EB8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 38.3, 'lon': 109.75},
'dt': 1520400345,
'id': 1785777,
'main': {'grnd_level': 899.81,
'humidity': 76,
'pressure': 899.81,
'sea_level': 1039.98,
'temp': 4.58,
'temp_max': 4.58,
'temp_min': 4.58},
'name': 'Yulin',
'sys': {'country': 'CN',
'message': 0.0034,
'sunrise': 1520377478,
'sunset': 1520419200},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 331.001, 'speed': 9.01}}
duplicate city: tuatapere,nz
duplicate city: vaini,to
duplicate city: rikitea,pf
duplicate city: cape town,za
city generated: santa barbara,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A879C50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 34.42, 'lon': -119.7},
'dt': 1520398680,
'id': 5392952,
'main': {'humidity': 40,
'pressure': 1017,
'temp': 12.42,
'temp_max': 14,
'temp_min': 10},
'name': 'Santa Barbara',
'sys': {'country': 'US',
'id': 486,
'message': 0.0043,
'sunrise': 1520432375,
'sunset': 1520474416,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 318.501, 'speed': 2.86}}
city generated: dirba,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A325AC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': 10.1, 'lon': 13.23},
'dt': 1520400346,
'id': 2329821,
'main': {'grnd_level': 946.34,
'humidity': 55,
'pressure': 946.34,
'sea_level': 1022.31,
'temp': 17.7,
'temp_max': 17.7,
'temp_min': 17.7},
'name': 'Dirba',
'sys': {'country': 'NG',
'message': 0.0035,
'sunrise': 1520399905,
'sunset': 1520443068},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 1.00095, 'speed': 1.11}}
duplicate city: vaini,to
duplicate city: busselton,au
duplicate city: sitka,us
city generated: iralaya,hn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A1943C8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ponta do sol,cv
duplicate city: atuona,pf
duplicate city: constitucion,mx
duplicate city: paamiut,gl
duplicate city: half moon bay,us
duplicate city: taolanaro,mg
duplicate city: taolanaro,mg
duplicate city: ushuaia,ar
duplicate city: ushuaia,ar
city generated: yantai,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CA02B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 37.53, 'lon': 121.39},
'dt': 1520400347,
'id': 1787093,
'main': {'grnd_level': 1038.01,
'humidity': 87,
'pressure': 1038.01,
'sea_level': 1040.1,
'temp': 4.15,
'temp_max': 4.15,
'temp_min': 4.15},
'name': 'Yantai',
'sys': {'country': 'CN',
'message': 0.0052,
'sunrise': 1520374663,
'sunset': 1520416429},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 149.001, 'speed': 2.21}}
duplicate city: jumla,np
duplicate city: aklavik,ca
duplicate city: puerto ayora,ec
city generated: luganville,vu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6AE4E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': -15.51, 'lon': 167.18},
'dt': 1520400347,
'id': 2136150,
'main': {'grnd_level': 1012.64,
'humidity': 97,
'pressure': 1012.64,
'sea_level': 1015.05,
'temp': 29.33,
'temp_max': 29.33,
'temp_min': 29.33},
'name': 'Luganville',
'sys': {'country': 'VU',
'message': 0.005,
'sunrise': 1520362376,
'sunset': 1520406691},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 350.001, 'speed': 6.71}}
city generated: norfolk,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5D3A58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 36.85, 'lon': -76.29},
'dt': 1520398740,
'id': 4776222,
'main': {'humidity': 93,
'pressure': 1008,
'temp': 6.77,
'temp_max': 9,
'temp_min': 6},
'name': 'Norfolk',
'sys': {'country': 'US',
'id': 2865,
'message': 0.0042,
'sunrise': 1520422038,
'sunset': 1520463923,
'type': 1},
'visibility': 9656,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'},
{'description': 'moderate rain',
'icon': '10n',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 130, 'speed': 4.1}}
city generated: bowen,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199509E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -20.01, 'lon': 148.25},
'dt': 1520395200,
'id': 2174444,
'main': {'humidity': 70,
'pressure': 1007,
'temp': 30,
'temp_max': 30,
'temp_min': 30},
'name': 'Bowen',
'sys': {'country': 'AU',
'id': 8174,
'message': 0.0029,
'sunrise': 1520366803,
'sunset': 1520411345,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 110, 'speed': 9.3}}
duplicate city: saskylakh,ru
duplicate city: saint-philippe,re
duplicate city: ribeira grande,pt
city generated: ornskoldsvik,se
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B143400>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: nizhniy tsasuchey,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFF6908>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mataura,pf
duplicate city: port keats,au
duplicate city: namibe,ao
duplicate city: rikitea,pf
duplicate city: clyde river,ca
duplicate city: rawannawi,ki
city generated: kotturu,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A394710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.82, 'lon': 76.23},
'dt': 1520400349,
'id': 1265905,
'main': {'grnd_level': 959.71,
'humidity': 30,
'pressure': 959.71,
'sea_level': 1024.17,
'temp': 32.55,
'temp_max': 32.55,
'temp_min': 32.55},
'name': 'Kotturu',
'sys': {'country': 'IN',
'message': 0.0039,
'sunrise': 1520384897,
'sunset': 1520427845},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 136.501, 'speed': 3.96}}
duplicate city: amderma,ru
duplicate city: kapaa,us
duplicate city: hithadhoo,mv
city generated: miranorte,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AD17B8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: nikolskoye,ru
city generated: taltal,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C2AF60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -25.41, 'lon': -70.49},
'dt': 1520400350,
'id': 3870243,
'main': {'grnd_level': 868.44,
'humidity': 100,
'pressure': 868.44,
'sea_level': 1025.11,
'temp': 8.2,
'temp_max': 8.2,
'temp_min': 8.2},
'name': 'Taltal',
'sys': {'country': 'CL',
'message': 0.0031,
'sunrise': 1520419167,
'sunset': 1520463953},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 13.0009, 'speed': 0.91}}
duplicate city: caravelas,br
duplicate city: bredasdorp,za
city generated: ambon,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A24F828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 47.55, 'lon': -2.56},
'dt': 1520398800,
'id': 3037899,
'main': {'humidity': 93,
'pressure': 995,
'temp': 5,
'temp_max': 5,
'temp_min': 5},
'name': 'Ambon',
'sys': {'country': 'FR',
'id': 5644,
'message': 0.008,
'sunrise': 1520404743,
'sunset': 1520445849,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 260, 'speed': 2.6}}
duplicate city: punta arenas,cl
duplicate city: atuona,pf
city generated: guilin,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C556A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 25.28, 'lon': 110.29},
'dt': 1520395200,
'id': 1809498,
'main': {'humidity': 93,
'pressure': 1021,
'temp': 10,
'temp_max': 10,
'temp_min': 10},
'name': 'Guilin',
'sys': {'country': 'CN',
'id': 7417,
'message': 0.0054,
'sunrise': 1520376977,
'sunset': 1520419428,
'type': 1},
'visibility': 4500,
'weather': [{'description': 'light intensity shower rain',
'icon': '09d',
'id': 520,
'main': 'Rain'},
{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 80, 'speed': 3}}
duplicate city: bathsheba,bb
city generated: mana,gf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A089A58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 43.52, 'lon': 20.24},
'dt': 1520398800,
'id': 789988,
'main': {'humidity': 86,
'pressure': 1000,
'temp': 4,
'temp_max': 4,
'temp_min': 4},
'name': 'Mana',
'sys': {'country': 'RS',
'id': 5971,
'message': 0.0042,
'sunrise': 1520399118,
'sunset': 1520440525,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 140, 'speed': 1.5}}
duplicate city: arraial do cabo,br
city generated: arrifes,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC96F98>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: saleaula,ws
city generated: kashin,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF58B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 57.36, 'lon': 37.61},
'dt': 1520400353,
'id': 551986,
'main': {'grnd_level': 1012.16,
'humidity': 82,
'pressure': 1012.16,
'sea_level': 1030.74,
'temp': -14.63,
'temp_max': -14.63,
'temp_min': -14.63},
'name': 'Kashin',
'sys': {'country': 'RU',
'message': 0.0031,
'sunrise': 1520395631,
'sunset': 1520435702},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 127.501, 'speed': 4.81}}
duplicate city: port lincoln,au
city generated: elizabeth city,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A621860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 36.3, 'lon': -76.22},
'dt': 1520398740,
'id': 4465088,
'main': {'humidity': 100,
'pressure': 1007,
'temp': 8.1,
'temp_max': 10,
'temp_min': 7},
'name': 'Elizabeth City',
'sys': {'country': 'US',
'id': 1779,
'message': 0.0041,
'sunrise': 1520422004,
'sunset': 1520463922,
'type': 1},
'visibility': 9656,
'weather': [{'description': 'moderate rain',
'icon': '10n',
'id': 501,
'main': 'Rain'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 120, 'speed': 5.7}}
duplicate city: albany,au
city generated: katobu,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A264F28>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -4.94, 'lon': 122.53},
'dt': 1520400354,
'id': 1640972,
'main': {'grnd_level': 1016.61,
'humidity': 100,
'pressure': 1016.61,
'sea_level': 1019.76,
'temp': 28.55,
'temp_max': 28.55,
'temp_min': 28.55},
'name': 'Katobu',
'rain': {'3h': 2.045},
'sys': {'country': 'ID',
'message': 0.0036,
'sunrise': 1520373346,
'sunset': 1520417159},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 276.001, 'speed': 2.51}}
duplicate city: iqaluit,ca
duplicate city: kaitangata,nz
city generated: sola,vu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6AE6D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 62.78, 'lon': 29.36},
'dt': 1520398200,
'id': 643453,
'main': {'humidity': 76,
'pressure': 1013,
'temp': -20,
'temp_max': -20,
'temp_min': -20},
'name': 'Sola',
'sys': {'country': 'FI',
'id': 5024,
'message': 0.0072,
'sunrise': 1520398024,
'sunset': 1520437284,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 50, 'speed': 3.1}}
city generated: severomuysk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0715F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 56.17, 'lon': 113.57},
'dt': 1520400357,
'id': 2016907,
'main': {'grnd_level': 866.25,
'humidity': 65,
'pressure': 866.25,
'sea_level': 1047.52,
'temp': -19.83,
'temp_max': -19.83,
'temp_min': -19.83},
'name': 'Severomuysk',
'sys': {'country': 'RU',
'message': 0.0031,
'sunrise': 1520377357,
'sunset': 1520417518},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 239.001, 'speed': 1.16}}
duplicate city: punta arenas,cl
city generated: moron,mn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7A5278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 10.49, 'lon': -68.2},
'dt': 1520400358,
'id': 3631878,
'main': {'grnd_level': 952.01,
'humidity': 97,
'pressure': 952.01,
'sea_level': 1025.02,
'temp': 20.65,
'temp_max': 20.65,
'temp_min': 20.65},
'name': 'Moron',
'rain': {'3h': 0.195},
'sys': {'country': 'VE',
'message': 0.0033,
'sunrise': 1520419450,
'sunset': 1520462603},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 359.001, 'speed': 1.31}}
city generated: makokou,ga
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FFB6A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 0.56, 'lon': 12.85},
'dt': 1520400358,
'id': 2399371,
'main': {'grnd_level': 979.49,
'humidity': 100,
'pressure': 979.49,
'sea_level': 1025.75,
'temp': 20.38,
'temp_max': 20.38,
'temp_min': 20.38},
'name': 'Makokou',
'rain': {'3h': 10.465},
'sys': {'country': 'GA',
'message': 0.0033,
'sunrise': 1520399789,
'sunset': 1520443359},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 193.501, 'speed': 1.26}}
city generated: turrialba,cr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D51400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 9.91, 'lon': -83.68},
'dt': 1520398800,
'id': 3621184,
'main': {'humidity': 72,
'pressure': 1016,
'temp': 19,
'temp_max': 19,
'temp_min': 19},
'name': 'Turrialba',
'sys': {'country': 'CR',
'id': 4220,
'message': 0.004,
'sunrise': 1520423151,
'sunset': 1520466330,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 70, 'speed': 6.7}}
duplicate city: naze,jp
duplicate city: vaini,to
city generated: camacha,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC9BCC0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: avarua,ck
city generated: skalistyy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B082F60>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mar del plata,ar
duplicate city: clyde river,ca
duplicate city: punta arenas,cl
duplicate city: ahipara,nz
duplicate city: mahebourg,mu
duplicate city: busselton,au
duplicate city: east london,za
duplicate city: bengkulu,id
duplicate city: illoqqortoormiut,gl
city generated: marshall,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5C8828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 39.39, 'lon': -87.69},
'dt': 1520399160,
'id': 4243951,
'main': {'humidity': 92,
'pressure': 1009,
'temp': -0.19,
'temp_max': 1,
'temp_min': -1},
'name': 'Marshall',
'sys': {'country': 'US',
'id': 989,
'message': 0.0044,
'sunrise': 1520424850,
'sunset': 1520466585,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 280, 'speed': 7.2}}
city generated: ust-maya,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0DC7B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 60.42, 'lon': 134.54},
'dt': 1520400361,
'id': 2013918,
'main': {'grnd_level': 1003.81,
'humidity': 45,
'pressure': 1003.81,
'sea_level': 1037.35,
'temp': -21.88,
'temp_max': -21.88,
'temp_min': -21.88},
'name': 'Ust-Maya',
'sys': {'country': 'RU',
'message': 0.0032,
'sunrise': 1520372635,
'sunset': 1520412187},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 307.001, 'speed': 3.66}}
city generated: tashtagol,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0B2160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 52.76, 'lon': 87.85},
'dt': 1520400361,
'id': 1490042,
'main': {'grnd_level': 957.44,
'humidity': 58,
'pressure': 957.44,
'sea_level': 1024.98,
'temp': 4.43,
'temp_max': 4.43,
'temp_min': 4.43},
'name': 'Tashtagol',
'sys': {'country': 'RU',
'message': 0.0042,
'sunrise': 1520383323,
'sunset': 1520423888},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 174.501, 'speed': 2.06}}
duplicate city: nikolskoye,ru
city generated: keti bandar,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC32470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 24.14, 'lon': 67.45},
'dt': 1520400361,
'id': 1174451,
'main': {'grnd_level': 1025.94,
'humidity': 84,
'pressure': 1025.94,
'sea_level': 1026,
'temp': 26.55,
'temp_max': 26.55,
'temp_min': 26.55},
'name': 'Keti Bandar',
'sys': {'country': 'PK',
'message': 0.0095,
'sunrise': 1520387223,
'sunset': 1520429741},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 0.500946, 'speed': 1.86}}
duplicate city: saint-philippe,re
duplicate city: yialos,gr
duplicate city: butaritari,ki
duplicate city: cherskiy,ru
city generated: witu,ke
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A710A90>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': -2.39, 'lon': 40.44},
'dt': 1520400362,
'id': 178093,
'main': {'grnd_level': 1020.5,
'humidity': 76,
'pressure': 1020.5,
'sea_level': 1025.31,
'temp': 28.18,
'temp_max': 28.18,
'temp_min': 28.18},
'name': 'Witu',
'sys': {'country': 'KE',
'message': 0.0037,
'sunrise': 1520393103,
'sunset': 1520436801},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 323.001, 'speed': 1.96}}
city generated: la baule-escoublac,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FAEB00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 47.28, 'lon': -2.4},
'dt': 1520398800,
'id': 3019766,
'main': {'humidity': 93,
'pressure': 995,
'temp': 3.89,
'temp_max': 5,
'temp_min': 3},
'name': 'La Baule-Escoublac',
'sys': {'country': 'FR',
'id': 5644,
'message': 0.007,
'sunrise': 1520404693,
'sunset': 1520445821,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 260, 'speed': 2.6}}
duplicate city: qaanaaq,gl
duplicate city: belushya guba,ru
duplicate city: cabedelo,br
duplicate city: ushuaia,ar
city generated: yumen,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CA2F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 40.29, 'lon': 97.04},
'dt': 1520400363,
'id': 1528998,
'main': {'grnd_level': 856.12,
'humidity': 74,
'pressure': 856.12,
'sea_level': 1039.09,
'temp': 6.55,
'temp_max': 6.55,
'temp_min': 6.55},
'name': 'Yumen',
'sys': {'country': 'CN',
'message': 0.005,
'sunrise': 1520380592,
'sunset': 1520422189},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 66.5009, 'speed': 2.21}}
duplicate city: dikson,ru
city generated: jiwani,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC2E2E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: punta arenas,cl
duplicate city: kapaa,us
duplicate city: kodiak,us
city generated: moerai,pf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9DF6A0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: desaguadero,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9BEAC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -16.56, 'lon': -69.04},
'dt': 1520400364,
'id': 3941492,
'main': {'grnd_level': 648.77,
'humidity': 98,
'pressure': 648.77,
'sea_level': 1024.74,
'temp': 6.15,
'temp_max': 6.15,
'temp_min': 6.15},
'name': 'Desaguadero',
'rain': {'3h': 1.97},
'sys': {'country': 'PE',
'message': 0.0034,
'sunrise': 1520419051,
'sunset': 1520463381},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 222.501, 'speed': 1.51}}
city generated: mandello del lario,it
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A4E0BE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 45.92, 'lon': 9.32},
'dt': 1520398500,
'id': 3174107,
'main': {'humidity': 100,
'pressure': 996,
'temp': 4.34,
'temp_max': 5,
'temp_min': 3},
'name': 'Mandello del Lario',
'sys': {'country': 'IT',
'id': 6012,
'message': 0.0051,
'sunrise': 1520401828,
'sunset': 1520443059,
'type': 1},
'visibility': 5000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'},
{'description': 'light intensity drizzle',
'icon': '09n',
'id': 300,
'main': 'Drizzle'}],
'wind': {'deg': 360, 'speed': 1}}
duplicate city: luderitz,na
duplicate city: bluff,nz
duplicate city: quelimane,mz
duplicate city: yellowknife,ca
duplicate city: ushuaia,ar
duplicate city: grand river south east,mu
city generated: nova olinda do norte,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19ADEAC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -3.89, 'lon': -59.1},
'dt': 1520400365,
'id': 3393838,
'main': {'grnd_level': 1020.26,
'humidity': 89,
'pressure': 1020.26,
'sea_level': 1022.84,
'temp': 25.78,
'temp_max': 25.78,
'temp_min': 25.78},
'name': 'Nova Olinda do Norte',
'sys': {'country': 'BR',
'message': 0.0037,
'sunrise': 1520416957,
'sunset': 1520460717},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 88.0009, 'speed': 2.06}}
duplicate city: mocuba,mz
duplicate city: bathsheba,bb
duplicate city: albany,au
duplicate city: puerto ayora,ec
city generated: shingu,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A595C18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 33.72, 'lon': 135.99},
'dt': 1520395200,
'id': 1847947,
'main': {'humidity': 58,
'pressure': 1027,
'temp': 13,
'temp_max': 13,
'temp_min': 13},
'name': 'Shingu',
'sys': {'country': 'JP',
'id': 7515,
'message': 0.0048,
'sunrise': 1520371045,
'sunset': 1520413036,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 290, 'speed': 3.1}}
duplicate city: ushuaia,ar
duplicate city: lompoc,us
duplicate city: nikolskoye,ru
duplicate city: lagoa,pt
duplicate city: busselton,au
city generated: omsukchan,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B019128>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: valparaiso,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C2F550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 41.47, 'lon': -87.06},
'dt': 1520399520,
'id': 4927537,
'main': {'humidity': 99,
'pressure': 1006,
'temp': 0.99,
'temp_max': 2,
'temp_min': 0},
'name': 'Valparaiso',
'sys': {'country': 'US',
'id': 1053,
'message': 0.0044,
'sunrise': 1520424768,
'sunset': 1520466368,
'type': 1},
'visibility': 6437,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 340, 'speed': 4.1}}
city generated: grand gaube,mu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7B4F60>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: ciudad bolivar,ve
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B696C88>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: harlingen,nl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A91D080>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 26.19, 'lon': -97.7},
'dt': 1520398500,
'id': 4696233,
'main': {'humidity': 87,
'pressure': 1021,
'temp': 15.51,
'temp_max': 18,
'temp_min': 14},
'name': 'Harlingen',
'sys': {'country': 'US',
'id': 2629,
'message': 0.0035,
'sunrise': 1520426883,
'sunset': 1520469342,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 330, 'speed': 3.6}}
duplicate city: vardo,no
city generated: atar,mr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7A81D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 20.52, 'lon': -13.05},
'dt': 1520400367,
'id': 2381334,
'main': {'grnd_level': 997,
'humidity': 67,
'pressure': 997,
'sea_level': 1027.46,
'temp': 14.15,
'temp_max': 14.15,
'temp_min': 14.15},
'name': 'Atar',
'sys': {'country': 'MR',
'message': 0.0035,
'sunrise': 1520406444,
'sunset': 1520449150},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 60.0009, 'speed': 2.06}}
city generated: marawi,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B134A58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 8, 'lon': 124.29},
'dt': 1520400368,
'id': 1701054,
'main': {'grnd_level': 934.18,
'humidity': 86,
'pressure': 934.18,
'sea_level': 1020.57,
'temp': 24.53,
'temp_max': 24.53,
'temp_min': 24.53},
'name': 'Marawi',
'rain': {'3h': 6.91},
'sys': {'country': 'PH',
'message': 0.004,
'sunrise': 1520373213,
'sunset': 1520416458},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 3.00095, 'speed': 1.36}}
duplicate city: ngukurr,au
duplicate city: qaanaaq,gl
duplicate city: cherskiy,ru
duplicate city: east london,za
city generated: mikuni,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A577240>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: butaritari,ki
duplicate city: thompson,ca
city generated: lodwar,ke
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A708D68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 3.12, 'lon': 35.6},
'dt': 1520400118,
'id': 189280,
'main': {'grnd_level': 953.55,
'humidity': 71,
'pressure': 953.55,
'sea_level': 1025.23,
'temp': 25.33,
'temp_max': 25.33,
'temp_min': 25.33},
'name': 'Lodwar',
'sys': {'country': 'KE',
'message': 0.0032,
'sunrise': 1520394386,
'sunset': 1520437846},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 5.00095, 'speed': 1.61}}
city generated: wasilla,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CBF60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 61.58, 'lon': -149.44},
'dt': 1520399100,
'id': 5877641,
'main': {'humidity': 79,
'pressure': 1017,
'temp': -4.84,
'temp_max': -4,
'temp_min': -6},
'name': 'Wasilla',
'sys': {'country': 'US',
'id': 32,
'message': 0.0054,
'sunrise': 1520440737,
'sunset': 1520480376,
'type': 1},
'visibility': 8047,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 85.0009, 'speed': 0.96}}
city generated: polyarnyy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B03D7F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: tura,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0CA048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.52, 'lon': 90.21},
'dt': 1520400370,
'id': 1254046,
'main': {'grnd_level': 1015.32,
'humidity': 60,
'pressure': 1015.32,
'sea_level': 1026.44,
'temp': 24.2,
'temp_max': 24.2,
'temp_min': 24.2},
'name': 'Tura',
'sys': {'country': 'IN',
'message': 0.0029,
'sunrise': 1520381799,
'sunset': 1520424243},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 49.5009, 'speed': 1.16}}
duplicate city: taolanaro,mg
duplicate city: mataura,pf
city generated: chabahar,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A478710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.29, 'lon': 60.65},
'dt': 1520400370,
'id': 1161724,
'main': {'grnd_level': 1026.75,
'humidity': 89,
'pressure': 1026.75,
'sea_level': 1027.78,
'temp': 23.88,
'temp_max': 23.88,
'temp_min': 23.88},
'name': 'Chabahar',
'sys': {'country': 'IR',
'message': 0.0032,
'sunrise': 1520388883,
'sunset': 1520431346},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 288.501, 'speed': 2.51}}
duplicate city: bredasdorp,za
city generated: oyama,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A58CB00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 36.31, 'lon': 139.8},
'dt': 1520396700,
'id': 1853483,
'main': {'humidity': 52,
'pressure': 1034,
'temp': 6.61,
'temp_max': 7,
'temp_min': 6},
'name': 'Oyama',
'sys': {'country': 'JP',
'id': 7509,
'message': 0.0038,
'sunrise': 1520370210,
'sunset': 1520412045,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 60, 'speed': 5.7}}
duplicate city: codrington,ag
city generated: wadi maliz,tn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1DD400>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: butaritari,ki
duplicate city: tuktoyaktuk,ca
duplicate city: katsuura,jp
duplicate city: caravelas,br
duplicate city: nikolskoye,ru
duplicate city: saint-augustin,ca
duplicate city: rikitea,pf
duplicate city: rikitea,pf
duplicate city: nikolskoye,ru
city generated: belmonte,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A476D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 40.36, 'lon': -7.35},
'dt': 1520400372,
'id': 8010472,
'main': {'grnd_level': 956.71,
'humidity': 96,
'pressure': 956.71,
'sea_level': 1025.96,
'temp': -1.3,
'temp_max': -1.3,
'temp_min': -1.3},
'name': 'Belmonte',
'sys': {'country': 'PT',
'message': 0.0053,
'sunrise': 1520405621,
'sunset': 1520447259},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 230.501, 'speed': 0.96}}
duplicate city: hermanus,za
duplicate city: hovd,mn
duplicate city: poum,nc
duplicate city: illoqqortoormiut,gl
city generated: cordoba,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19927198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 5.59, 'lon': -73.79},
'dt': 1520400305,
'id': 3686513,
'main': {'grnd_level': 758.68,
'humidity': 88,
'pressure': 758.68,
'sea_level': 1022.96,
'temp': 8.8,
'temp_max': 8.8,
'temp_min': 8.8},
'name': 'Cordoba',
'sys': {'country': 'CO',
'message': 0.0052,
'sunrise': 1520420686,
'sunset': 1520464046},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 132.501, 'speed': 0.91}}
duplicate city: nizhneyansk,ru
duplicate city: belushya guba,ru
duplicate city: hermanus,za
duplicate city: vaini,to
duplicate city: buraydah,sa
duplicate city: hobyo,so
duplicate city: rikitea,pf
duplicate city: mataura,pf
duplicate city: hamilton,bm
duplicate city: hermanus,za
duplicate city: mayo,ca
duplicate city: inhambane,mz
duplicate city: ushuaia,ar
duplicate city: punta arenas,cl
duplicate city: ukiah,us
duplicate city: ushuaia,ar
duplicate city: huarmey,pe
duplicate city: barrow,us
duplicate city: iquique,cl
city generated: horqueta,py
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACD9898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -23.34, 'lon': -57.05},
'dt': 1520400373,
'id': 3480780,
'main': {'grnd_level': 1008.1,
'humidity': 89,
'pressure': 1008.1,
'sea_level': 1022.79,
'temp': 23.15,
'temp_max': 23.15,
'temp_min': 23.15},
'name': 'Horqueta',
'rain': {'3h': 0.9},
'sys': {'country': 'PY',
'message': 0.0047,
'sunrise': 1520415998,
'sunset': 1520460674},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 134.501, 'speed': 1.36}}
city generated: northview,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B3F8710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 37.29, 'lon': -93},
'dt': 1520398320,
'id': 4397238,
'main': {'humidity': 59,
'pressure': 1019,
'temp': 1,
'temp_max': 1,
'temp_min': 1},
'name': 'Northview',
'sys': {'country': 'US',
'id': 1661,
'message': 0.0034,
'sunrise': 1520426057,
'sunset': 1520467924,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 320, 'gust': 14.4, 'speed': 8.7}}
duplicate city: athabasca,ca
duplicate city: new norfolk,au
city generated: mahenge,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B223BA8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -8.68, 'lon': 36.72},
'dt': 1520400373,
'id': 155274,
'main': {'grnd_level': 986.22,
'humidity': 93,
'pressure': 986.22,
'sea_level': 1024.78,
'temp': 22.63,
'temp_max': 22.63,
'temp_min': 22.63},
'name': 'Mahenge',
'rain': {'3h': 0.68},
'sys': {'country': 'TZ',
'message': 0.0032,
'sunrise': 1520393854,
'sunset': 1520437830},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 178.001, 'speed': 1.31}}
duplicate city: dingle,ie
duplicate city: yellowknife,ca
duplicate city: atuona,pf
duplicate city: nizhneyansk,ru
duplicate city: tasiilaq,gl
duplicate city: albany,au
duplicate city: lodwar,ke
city generated: indramayu,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2616D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -4.05, 'lon': 103.78},
'dt': 1520400374,
'id': 1624987,
'main': {'grnd_level': 955.25,
'humidity': 99,
'pressure': 955.25,
'sea_level': 1022.43,
'temp': 24.03,
'temp_max': 24.03,
'temp_min': 24.03},
'name': 'Indramayu',
'rain': {'3h': 1.85},
'sys': {'country': 'ID',
'message': 0.0031,
'sunrise': 1520377866,
'sunset': 1520421638},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 305.001, 'speed': 1.21}}
duplicate city: cape town,za
city generated: kovur,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A394898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.5, 'lon': 79.99},
'dt': 1520400374,
'id': 1265888,
'main': {'grnd_level': 1020.02,
'humidity': 45,
'pressure': 1020.02,
'sea_level': 1025.43,
'temp': 31.9,
'temp_max': 31.9,
'temp_min': 31.9},
'name': 'Kovur',
'sys': {'country': 'IN',
'message': 0.0039,
'sunrise': 1520383987,
'sunset': 1520426950},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 150.001, 'speed': 2.76}}
duplicate city: hermanus,za
duplicate city: rikitea,pf
duplicate city: haines junction,ca
duplicate city: kahului,us
duplicate city: atuona,pf
duplicate city: ushuaia,ar
duplicate city: poum,nc
duplicate city: rikitea,pf
duplicate city: bethel,us
city generated: igrim,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF39518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 63.19, 'lon': 64.42},
'dt': 1520400374,
'id': 1505965,
'main': {'grnd_level': 993.43,
'humidity': 74,
'pressure': 993.43,
'sea_level': 997.62,
'temp': -9.3,
'temp_max': -9.3,
'temp_min': -9.3},
'name': 'Igrim',
'sys': {'country': 'RU',
'message': 0.0043,
'sunrise': 1520389667,
'sunset': 1520428816},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 292.001, 'speed': 5.21}}
duplicate city: butaritari,ki
city generated: libenge,cd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BDD6D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 3.65, 'lon': 18.64},
'dt': 1520400375,
'id': 2313762,
'main': {'grnd_level': 981.76,
'humidity': 100,
'pressure': 981.76,
'sea_level': 1024.05,
'temp': 22.3,
'temp_max': 22.3,
'temp_min': 22.3},
'name': 'Libenge',
'sys': {'country': 'CD',
'message': 0.0045,
'sunrise': 1520398467,
'sunset': 1520441904},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 194.501, 'speed': 1.66}}
duplicate city: vila velha,br
duplicate city: punta arenas,cl
duplicate city: bengkulu,id
duplicate city: belushya guba,ru
city generated: madera,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A83D550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 36.96, 'lon': -120.06},
'dt': 1520398500,
'id': 5369568,
'main': {'humidity': 66,
'pressure': 1018,
'temp': 12.17,
'temp_max': 15,
'temp_min': 9},
'name': 'Madera',
'sys': {'country': 'US',
'id': 418,
'message': 0.0037,
'sunrise': 1520432535,
'sunset': 1520474432,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 65.0009, 'speed': 1.16}}
duplicate city: ushuaia,ar
city generated: lima,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9C6438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -12.06, 'lon': -77.04},
'dt': 1520400296,
'id': 3936456,
'main': {'grnd_level': 876.87,
'humidity': 84,
'pressure': 876.87,
'sea_level': 1024.05,
'temp': 14.88,
'temp_max': 14.88,
'temp_min': 14.88},
'name': 'Lima',
'sys': {'country': 'PE',
'message': 0.0034,
'sunrise': 1520421079,
'sunset': 1520465197},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 36.5009, 'speed': 0.56}}
city generated: hervey bay,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199585F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -25.3, 'lon': 152.85},
'dt': 1520400376,
'id': 2146219,
'main': {'grnd_level': 1024.48,
'humidity': 90,
'pressure': 1024.48,
'sea_level': 1025.96,
'temp': 27.13,
'temp_max': 27.13,
'temp_min': 27.13},
'name': 'Hervey Bay',
'sys': {'country': 'AU',
'message': 0.0044,
'sunrise': 1520365550,
'sunset': 1520410385},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 124.501, 'speed': 8.41}}
city generated: bardiyah,ly
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A76E6D8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: bolhrad,ua
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2455F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 45.69, 'lon': 28.61},
'dt': 1520398800,
'id': 711841,
'main': {'humidity': 100,
'pressure': 998,
'temp': 3,
'temp_max': 3,
'temp_min': 3},
'name': 'Bolhrad',
'sys': {'country': 'UA',
'id': 5998,
'message': 0.0042,
'sunrise': 1520397195,
'sunset': 1520438434,
'type': 1},
'visibility': 400,
'weather': [{'description': 'fog', 'icon': '50d', 'id': 741, 'main': 'Fog'}],
'wind': {'deg': 150, 'speed': 3.6}}
duplicate city: saint-francois,gp
city generated: sindor,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B082588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 62.87, 'lon': 51.9},
'dt': 1520400377,
'id': 492860,
'main': {'grnd_level': 996.84,
'humidity': 71,
'pressure': 996.84,
'sea_level': 1015.78,
'temp': -13.08,
'temp_max': -13.08,
'temp_min': -13.08},
'name': 'Sindor',
'sys': {'country': 'RU',
'message': 0.0039,
'sunrise': 1520392635,
'sunset': 1520431855},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 321.501, 'speed': 5.96}}
duplicate city: hobyo,so
duplicate city: dikson,ru
duplicate city: lebanon,us
duplicate city: bredasdorp,za
duplicate city: mataura,pf
duplicate city: bambous virieux,mu
duplicate city: ushuaia,ar
duplicate city: georgetown,sh
duplicate city: ushuaia,ar
city generated: ixtapa,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A827978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 20.71, 'lon': -105.21},
'dt': 1520397780,
'id': 4004293,
'main': {'humidity': 100,
'pressure': 1012,
'temp': 19,
'temp_max': 19,
'temp_min': 19},
'name': 'Ixtapa',
'sys': {'country': 'MX',
'id': 4011,
'message': 0.0038,
'sunrise': 1520428554,
'sunset': 1520471269,
'type': 1},
'visibility': 19312,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 344.001, 'speed': 0.41}}
duplicate city: souillac,mu
duplicate city: atuona,pf
duplicate city: vaitupu,wf
duplicate city: ilulissat,gl
duplicate city: saldanha,za
duplicate city: bluff,nz
duplicate city: longyearbyen,sj
city generated: am timan,td
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B199320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 11.04, 'lon': 20.28},
'dt': 1520400378,
'id': 245338,
'main': {'grnd_level': 976.17,
'humidity': 18,
'pressure': 976.17,
'sea_level': 1023.61,
'temp': 20.93,
'temp_max': 20.93,
'temp_min': 20.93},
'name': 'Am Timan',
'sys': {'country': 'TD',
'message': 0.0037,
'sunrise': 1520398234,
'sunset': 1520441356},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 80.5009, 'speed': 5.01}}
city generated: skelleftea,se
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B143AC8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: taltal,cl
city generated: kayes,ml
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7977F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.44, 'lon': -11.44},
'dt': 1520400379,
'id': 2455518,
'main': {'grnd_level': 1010.86,
'humidity': 39,
'pressure': 1010.86,
'sea_level': 1023.32,
'temp': 22.23,
'temp_max': 22.23,
'temp_min': 22.23},
'name': 'Kayes',
'sys': {'country': 'ML',
'message': 0.0029,
'sunrise': 1520405919,
'sunset': 1520448897},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 47.0009, 'speed': 3.91}}
duplicate city: ushuaia,ar
city generated: shemonaikha,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A725BE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 50.63, 'lon': 81.92},
'dt': 1520400379,
'id': 1519226,
'main': {'grnd_level': 977.3,
'humidity': 98,
'pressure': 977.3,
'sea_level': 1029.52,
'temp': 3.08,
'temp_max': 3.08,
'temp_min': 3.08},
'name': 'Shemonaikha',
'rain': {'3h': 2.32},
'sys': {'country': 'KZ',
'message': 0.017,
'sunrise': 1520384636,
'sunset': 1520425417},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 212.501, 'speed': 7.16}}
duplicate city: pevek,ru
duplicate city: ushuaia,ar
duplicate city: butaritari,ki
duplicate city: hithadhoo,mv
city generated: alamosa,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B31DBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 37.47, 'lon': -105.87},
'dt': 1520399100,
'id': 5411479,
'main': {'humidity': 29,
'pressure': 1024,
'temp': -5.46,
'temp_max': -5,
'temp_min': -6},
'name': 'Alamosa',
'sys': {'country': 'US',
'id': 534,
'message': 0.0034,
'sunrise': 1520429149,
'sunset': 1520471009,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 246.501, 'speed': 1.21}}
duplicate city: hilo,us
duplicate city: vaini,to
duplicate city: sola,vu
duplicate city: norman wells,ca
duplicate city: avarua,ck
duplicate city: ushuaia,ar
duplicate city: sao filipe,cv
duplicate city: jamestown,sh
duplicate city: cape town,za
duplicate city: cape town,za
city generated: deogarh,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A319898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 21.53, 'lon': 84.72},
'dt': 1520400380,
'id': 1273246,
'main': {'grnd_level': 993.03,
'humidity': 38,
'pressure': 993.03,
'sea_level': 1026.81,
'temp': 30.73,
'temp_max': 30.73,
'temp_min': 30.73},
'name': 'Deogarh',
'sys': {'country': 'IN',
'message': 0.004,
'sunrise': 1520383017,
'sunset': 1520425656},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 25.5009, 'speed': 2.66}}
duplicate city: east london,za
duplicate city: hithadhoo,mv
duplicate city: nabire,id
duplicate city: iqaluit,ca
city generated: rafaela,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992AB38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -31.25, 'lon': -61.49},
'dt': 1520400135,
'id': 3839479,
'main': {'grnd_level': 1023.67,
'humidity': 61,
'pressure': 1023.67,
'sea_level': 1030.41,
'temp': 11.7,
'temp_max': 11.7,
'temp_min': 11.7},
'name': 'Rafaela',
'sys': {'country': 'AR',
'message': 0.0029,
'sunrise': 1520416831,
'sunset': 1520461963},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 122.001, 'speed': 2.51}}
duplicate city: kodiak,us
city generated: satitoa,ws
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6B36D8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: jamestown,sh
duplicate city: rikitea,pf
duplicate city: jamestown,sh
city generated: vestmannaeyjar,is
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A4906D8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: santiago del estero,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992CB38>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: thompson,ca
duplicate city: bethel,us
city generated: sharkan,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B074B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 57.3, 'lon': 53.87},
'dt': 1520400382,
'id': 495688,
'main': {'grnd_level': 1000.65,
'humidity': 82,
'pressure': 1000.65,
'sea_level': 1027.21,
'temp': -15.95,
'temp_max': -15.95,
'temp_min': -15.95},
'name': 'Sharkan',
'sys': {'country': 'RU',
'message': 0.0033,
'sunrise': 1520391732,
'sunset': 1520431797},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 295.001, 'speed': 8.16}}
duplicate city: mahebourg,mu
duplicate city: provideniya,ru
duplicate city: qaqortoq,gl
duplicate city: taltal,cl
city generated: ostrogozhsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B01BDA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 50.86, 'lon': 39.08},
'dt': 1520400383,
'id': 514198,
'main': {'grnd_level': 1006.73,
'humidity': 88,
'pressure': 1006.73,
'sea_level': 1026.65,
'temp': -9.7,
'temp_max': -9.7,
'temp_min': -9.7},
'name': 'Ostrogozhsk',
'sys': {'country': 'RU',
'message': 0.0043,
'sunrise': 1520394913,
'sunset': 1520435700},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 122.501, 'speed': 5.46}}
duplicate city: mys shmidta,ru
city generated: bacolod,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AA094A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 10.68, 'lon': 122.95},
'dt': 1520400383,
'id': 1729564,
'main': {'grnd_level': 1005.35,
'humidity': 74,
'pressure': 1005.35,
'sea_level': 1021.98,
'temp': 28.7,
'temp_max': 28.7,
'temp_min': 28.7},
'name': 'Bacolod',
'sys': {'country': 'PH',
'message': 0.0039,
'sunrise': 1520373595,
'sunset': 1520416722},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 60.0009, 'speed': 5.66}}
duplicate city: east london,za
duplicate city: port elizabeth,za
duplicate city: kapaa,us
duplicate city: tasiilaq,gl
duplicate city: mataura,pf
duplicate city: kapaa,us
duplicate city: ushuaia,ar
duplicate city: ushuaia,ar
duplicate city: kirakira,sb
city generated: luena,ao
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19924128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -11.78, 'lon': 19.91},
'dt': 1520400384,
'id': 3347719,
'main': {'grnd_level': 879.54,
'humidity': 83,
'pressure': 879.54,
'sea_level': 1024.82,
'temp': 17.03,
'temp_max': 17.03,
'temp_min': 17.03},
'name': 'Luena',
'sys': {'country': 'AO',
'message': 0.0031,
'sunrise': 1520397816,
'sunset': 1520441932},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 258.501, 'speed': 1.21}}
city generated: kondoa,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2203C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -4.91, 'lon': 35.78},
'dt': 1520400384,
'id': 156510,
'main': {'grnd_level': 877.76,
'humidity': 100,
'pressure': 877.76,
'sea_level': 1026.77,
'temp': 16.78,
'temp_max': 16.78,
'temp_min': 16.78},
'name': 'Kondoa',
'rain': {'3h': 3.89},
'sys': {'country': 'TZ',
'message': 0.0028,
'sunrise': 1520394165,
'sunset': 1520437973},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 344.001, 'speed': 1.81}}
city generated: fresno,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CDAA58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 36.74, 'lon': -119.78},
'dt': 1520398560,
'id': 5350937,
'main': {'humidity': 44,
'pressure': 1018,
'temp': 11.8,
'temp_max': 15,
'temp_min': 9},
'name': 'Fresno',
'sys': {'country': 'US',
'id': 389,
'message': 0.0048,
'sunrise': 1520432462,
'sunset': 1520474371,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 50, 'speed': 2.1}}
duplicate city: busselton,au
duplicate city: saldanha,za
duplicate city: bredasdorp,za
duplicate city: port alfred,za
duplicate city: mys shmidta,ru
duplicate city: bilma,ne
duplicate city: barentsburg,sj
city generated: tilichiki,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0BA828>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ostrovnoy,ru
city generated: wrexham,gb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A07C940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 53.05, 'lon': -2.99},
'dt': 1520398200,
'id': 2633485,
'main': {'humidity': 93,
'pressure': 990,
'temp': 2.24,
'temp_max': 4,
'temp_min': 1},
'name': 'Wrexham',
'sys': {'country': 'GB',
'id': 5077,
'message': 0.014,
'sunrise': 1520405105,
'sunset': 1520445703,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 150, 'speed': 2.1}}
duplicate city: khani,ru
duplicate city: ostrovnoy,ru
city generated: sharjah,ae
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF198ECDA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.36, 'lon': 55.39},
'dt': 1520398800,
'id': 292672,
'main': {'humidity': 60,
'pressure': 1016,
'temp': 21.76,
'temp_max': 23,
'temp_min': 21},
'name': 'Sharjah',
'sys': {'country': 'AE',
'id': 7100,
'message': 0.0076,
'sunrise': 1520390146,
'sunset': 1520432607,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'speed': 1.5}}
duplicate city: sarangani,ph
duplicate city: atuona,pf
duplicate city: hobart,au
duplicate city: chardara,kz
duplicate city: ushuaia,ar
duplicate city: ushuaia,ar
duplicate city: punta arenas,cl
duplicate city: provideniya,ru
duplicate city: cape town,za
city generated: ilebo,cd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BDB4E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -4.33, 'lon': 20.59},
'dt': 1520400386,
'id': 215976,
'main': {'grnd_level': 981.11,
'humidity': 96,
'pressure': 981.11,
'sea_level': 1024.33,
'temp': 22.7,
'temp_max': 22.7,
'temp_min': 22.7},
'name': 'Ilebo',
'sys': {'country': 'CD',
'message': 0.003,
'sunrise': 1520397823,
'sunset': 1520441605},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 146.501, 'speed': 1.26}}
duplicate city: yellowknife,ca
city generated: kimberley,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B958D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': -28.74, 'lon': 24.76},
'dt': 1520398800,
'id': 990930,
'main': {'humidity': 88,
'pressure': 1019,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'Kimberley',
'sys': {'country': 'ZA',
'id': 6564,
'message': 0.0037,
'sunrise': 1520396200,
'sunset': 1520441204,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 16.5009, 'speed': 3.91}}
city generated: louisbourg,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B9D940>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: namatanai,pg
city generated: nioro,ml
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A799080>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 13.79, 'lon': -15.05},
'dt': 1520400387,
'id': 2413070,
'main': {'grnd_level': 1020.02,
'humidity': 66,
'pressure': 1020.02,
'sea_level': 1023.24,
'temp': 20.9,
'temp_max': 20.9,
'temp_min': 20.9},
'name': 'Nioro',
'sys': {'country': 'GM',
'message': 0.0039,
'sunrise': 1520406771,
'sunset': 1520449777},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 201.001, 'speed': 0.91}}
duplicate city: khatanga,ru
duplicate city: upernavik,gl
duplicate city: chokurdakh,ru
duplicate city: barrow,us
duplicate city: yellowknife,ca
duplicate city: leningradskiy,ru
city generated: coromandel,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A97BA58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -36.76, 'lon': 175.5},
'dt': 1520398800,
'id': 2192093,
'main': {'humidity': 68,
'pressure': 1001,
'temp': 21,
'temp_max': 21,
'temp_min': 21},
'name': 'Coromandel',
'sys': {'country': 'NZ',
'id': 8276,
'message': 0.0135,
'sunrise': 1520359727,
'sunset': 1520405324,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 280, 'speed': 5.1}}
duplicate city: ushuaia,ar
duplicate city: yellowknife,ca
city generated: aasiaat,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A0936D8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ushuaia,ar
duplicate city: busselton,au
duplicate city: vaini,to
duplicate city: upernavik,gl
duplicate city: lorengau,pg
city generated: shenkursk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B07C0F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 62.11, 'lon': 42.91},
'dt': 1520400388,
'id': 494884,
'main': {'grnd_level': 1023.59,
'humidity': 76,
'pressure': 1023.59,
'sea_level': 1029.97,
'temp': -14.78,
'temp_max': -14.78,
'temp_min': -14.78},
'name': 'Shenkursk',
'sys': {'country': 'RU',
'message': 0.0037,
'sunrise': 1520394720,
'sunset': 1520434083},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 303.501, 'speed': 3.01}}
duplicate city: yellowknife,ca
duplicate city: barrow,us
duplicate city: lavrentiya,ru
city generated: milkovo,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFD5B70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 41.53, 'lon': 24.68},
'dt': 1520398800,
'id': 727030,
'main': {'humidity': 100,
'pressure': 1001,
'temp': 7.1,
'temp_max': 9,
'temp_min': 5},
'name': 'Milkovo',
'sys': {'country': 'BG',
'id': 5441,
'message': 0.0036,
'sunrise': 1520397982,
'sunset': 1520439527,
'type': 1},
'visibility': 4300,
'weather': [{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'},
{'description': 'fog', 'icon': '50d', 'id': 741, 'main': 'Fog'}],
'wind': {'deg': 280, 'speed': 2.1}}
duplicate city: hithadhoo,mv
duplicate city: qaanaaq,gl
duplicate city: ushuaia,ar
duplicate city: ushuaia,ar
city generated: prokuplje,rs
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEA05F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 43.23, 'lon': 21.59},
'dt': 1520398800,
'id': 786690,
'main': {'humidity': 61,
'pressure': 1000,
'temp': 10,
'temp_max': 10,
'temp_min': 10},
'name': 'Prokuplje',
'sys': {'country': 'RS',
'id': 5973,
'message': 0.0034,
'sunrise': 1520398784,
'sunset': 1520440211,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 170, 'speed': 2.6}}
city generated: xinpu,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C99588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 24.83, 'lon': 121.07},
'dt': 1520397000,
'id': 1675151,
'main': {'humidity': 77,
'pressure': 1015,
'temp': 22.61,
'temp_max': 24,
'temp_min': 21},
'name': 'Xinpu',
'sys': {'country': 'TW',
'id': 7477,
'message': 0.0037,
'sunrise': 1520374380,
'sunset': 1520416851,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 30, 'speed': 6.2}}
duplicate city: nizhneyansk,ru
duplicate city: port elizabeth,za
duplicate city: taolanaro,mg
city generated: shakhunya,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0742B0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: porto novo,cv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D64320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -23.68, 'lon': -45.44},
'dt': 1520395200,
'id': 6322184,
'main': {'humidity': 88,
'pressure': 1013,
'temp': 23,
'temp_max': 23,
'temp_min': 23},
'name': 'Porto Novo',
'sys': {'country': 'BR',
'id': 4571,
'message': 0.0042,
'sunrise': 1520413202,
'sunset': 1520457898,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 90, 'speed': 1.5}}
duplicate city: busselton,au
duplicate city: arraial do cabo,br
duplicate city: vestmannaeyjar,is
city generated: carolina,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A68278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 18.38, 'lon': -65.96},
'dt': 1520398560,
'id': 4563243,
'main': {'humidity': 64,
'pressure': 1018,
'temp': 23,
'temp_max': 23,
'temp_min': 23},
'name': 'Carolina',
'sys': {'country': 'PR',
'id': 4068,
'message': 0.0035,
'sunrise': 1520419086,
'sunset': 1520461898,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 120, 'speed': 1.5}}
duplicate city: victoria,sc
duplicate city: kaitangata,nz
duplicate city: namibe,ao
duplicate city: thompson,ca
city generated: auki,sb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B130320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 12.18, 'lon': 6.51},
'dt': 1520400391,
'id': 2339937,
'main': {'grnd_level': 967.57,
'humidity': 49,
'pressure': 967.57,
'sea_level': 1023.24,
'temp': 14.53,
'temp_max': 14.53,
'temp_min': 14.53},
'name': 'Auki',
'sys': {'country': 'NG',
'message': 0.0051,
'sunrise': 1520401563,
'sunset': 1520444636},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 153.501, 'speed': 1.21}}
city generated: shobu,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5979E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: colima,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7FB898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 19.25, 'lon': -103.72},
'dt': 1520400248,
'id': 4013516,
'main': {'grnd_level': 948.61,
'humidity': 92,
'pressure': 948.61,
'sea_level': 1025.35,
'temp': 13.98,
'temp_max': 13.98,
'temp_min': 13.98},
'name': 'Colima',
'sys': {'country': 'MX',
'message': 0.0065,
'sunrise': 1520428163,
'sunset': 1520470944},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 18.0009, 'speed': 1.06}}
duplicate city: bluff,nz
duplicate city: port elizabeth,za
duplicate city: cidreira,br
duplicate city: nikolskoye,ru
duplicate city: tuktoyaktuk,ca
duplicate city: dikson,ru
duplicate city: thompson,ca
duplicate city: umzimvubu,za
duplicate city: puerto ayora,ec
duplicate city: saint-philippe,re
duplicate city: teahupoo,pf
city generated: livingston,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5D0DA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 32.58, 'lon': -88.19},
'dt': 1520395080,
'id': 4073383,
'main': {'humidity': 46,
'pressure': 1015,
'temp': 8.9,
'temp_max': 10,
'temp_min': 8},
'name': 'Livingston',
'sys': {'country': 'US',
'id': 1694,
'message': 0.003,
'sunrise': 1520424768,
'sunset': 1520466899,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 270, 'speed': 3.1}}
duplicate city: qaanaaq,gl
duplicate city: kaitangata,nz
city generated: vysokogornyy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B100FD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 50.1, 'lon': 139.13},
'dt': 1520400393,
'id': 2013216,
'main': {'grnd_level': 953.23,
'humidity': 52,
'pressure': 953.23,
'sea_level': 1040.47,
'temp': -15.88,
'temp_max': -15.88,
'temp_min': -15.88},
'name': 'Vysokogornyy',
'sys': {'country': 'RU',
'message': 0.0031,
'sunrise': 1520370900,
'sunset': 1520411696},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 267.501, 'speed': 4.41}}
city generated: jabiru,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19958B00>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: thompson,ca
duplicate city: busselton,au
duplicate city: hilo,us
duplicate city: taolanaro,mg
city generated: velsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0E4BA8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ushuaia,ar
duplicate city: airai,pw
city generated: noumea,nc
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E2550>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: pisco,pe
city generated: bull savanna,jm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5394E0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: beringovskiy,ru
city generated: pueblo nuevo,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9D01D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 23.99, 'lon': -106.96},
'dt': 1520400193,
'id': 4002745,
'main': {'grnd_level': 1006.56,
'humidity': 69,
'pressure': 1006.56,
'sea_level': 1025.59,
'temp': 18.13,
'temp_max': 18.13,
'temp_min': 18.13},
'name': 'Pueblo Nuevo',
'sys': {'country': 'MX',
'message': 0.0033,
'sunrise': 1520429050,
'sunset': 1520471616},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 320.501, 'speed': 1.76}}
duplicate city: grindavik,is
duplicate city: tsihombe,mg
duplicate city: mataura,pf
duplicate city: bluff,nz
duplicate city: porto novo,cv
duplicate city: lasa,cn
duplicate city: kloulklubed,pw
duplicate city: shingu,jp
duplicate city: bonavista,ca
duplicate city: padang,id
duplicate city: castro,cl
duplicate city: amderma,ru
duplicate city: hobart,au
duplicate city: zhigansk,ru
city generated: korgen,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9529E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 66.08, 'lon': 13.83},
'dt': 1520398200,
'id': 3149492,
'main': {'humidity': 56,
'pressure': 1005,
'temp': -9.48,
'temp_max': -5,
'temp_min': -12},
'name': 'Korgen',
'sys': {'country': 'NO',
'id': 5321,
'message': 0.0041,
'sunrise': 1520402078,
'sunset': 1520440695,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 70, 'speed': 7.7}}
duplicate city: mataura,pf
city generated: mwinilunga,zm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6DDE80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -11.73, 'lon': 24.43},
'dt': 1520400396,
'id': 902620,
'main': {'grnd_level': 875.09,
'humidity': 86,
'pressure': 875.09,
'sea_level': 1024.46,
'temp': 20.23,
'temp_max': 20.23,
'temp_min': 20.23},
'name': 'Mwinilunga',
'sys': {'country': 'ZM',
'message': 0.0055,
'sunrise': 1520396732,
'sunset': 1520440847},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 190.001, 'speed': 1.21}}
duplicate city: avarua,ck
duplicate city: port alfred,za
city generated: kozluk,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1F2A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 38.17, 'lon': 41.5},
'dt': 1520399220,
'id': 306041,
'main': {'humidity': 100,
'pressure': 1017,
'temp': 5.51,
'temp_max': 7,
'temp_min': 4},
'name': 'Kozluk',
'sys': {'country': 'TR',
'id': 6072,
'message': 0.0045,
'sunrise': 1520393837,
'sunset': 1520435595,
'type': 1},
'visibility': 700,
'weather': [{'description': 'fog', 'icon': '50d', 'id': 741, 'main': 'Fog'}],
'wind': {'deg': 330, 'speed': 2.6}}
duplicate city: ushuaia,ar
duplicate city: illoqqortoormiut,gl
duplicate city: rikitea,pf
duplicate city: busselton,au
duplicate city: constitucion,mx
duplicate city: punta arenas,cl
duplicate city: havre-saint-pierre,ca
city generated: tucuma,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B46390>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: luderitz,na
duplicate city: kapaa,us
duplicate city: ponta do sol,cv
city generated: fortuna,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2EE940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 38.18, 'lon': -1.13},
'dt': 1520398800,
'id': 2517679,
'main': {'humidity': 66,
'pressure': 1007,
'temp': 9,
'temp_max': 9,
'temp_min': 9},
'name': 'Fortuna',
'sys': {'country': 'ES',
'id': 5464,
'message': 0.0032,
'sunrise': 1520404058,
'sunset': 1520445833,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 310, 'speed': 3.1}}
city generated: paranaiba,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AEC4E0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: kadykchan,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF47860>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ahipara,nz
duplicate city: hilo,us
duplicate city: san quintin,mx
duplicate city: grand river south east,mu
duplicate city: kapaa,us
duplicate city: ribeira grande,pt
city generated: wau,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E87F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bonavista,ca
duplicate city: vaini,to
duplicate city: kodiak,us
duplicate city: chuy,uy
duplicate city: ilulissat,gl
city generated: baherden,tm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1D0748>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: kavaratti,in
duplicate city: klaksvik,fo
city generated: hailey,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B36F6D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 43.52, 'lon': -114.32},
'dt': 1520398380,
'id': 5594956,
'main': {'humidity': 73,
'pressure': 1026,
'temp': -7,
'temp_max': -7,
'temp_min': -7},
'name': 'Hailey',
'sys': {'country': 'US',
'id': 920,
'message': 0.0043,
'sunrise': 1520431374,
'sunset': 1520472847,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 290, 'speed': 2.6}}
city generated: tual,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A288518>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hithadhoo,mv
duplicate city: bethel,us
city generated: lebork,pl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC674E0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: saint-philippe,re
duplicate city: pangnirtung,ca
duplicate city: arraial do cabo,br
duplicate city: rikitea,pf
duplicate city: kapaa,us
duplicate city: mount gambier,au
city generated: sangar,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B064550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 63.92, 'lon': 127.47},
'dt': 1520400400,
'id': 2017215,
'main': {'grnd_level': 1007.46,
'humidity': 54,
'pressure': 1007.46,
'sea_level': 1039.21,
'temp': -23.85,
'temp_max': -23.85,
'temp_min': -23.85},
'name': 'Sangar',
'sys': {'country': 'RU',
'message': 0.0075,
'sunrise': 1520374641,
'sunset': 1520413585},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 284.001, 'speed': 2.11}}
duplicate city: jamestown,sh
duplicate city: georgetown,sh
duplicate city: qaanaaq,gl
duplicate city: taolanaro,mg
city generated: lidkoping,se
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B13F400>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: honiara,sb
duplicate city: carnarvon,au
duplicate city: attawapiskat,ca
duplicate city: atuona,pf
duplicate city: fort nelson,ca
city generated: tendukheda,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A44D898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 23.4, 'lon': 79.54},
'dt': 1520400401,
'id': 1254751,
'main': {'grnd_level': 981.11,
'humidity': 51,
'pressure': 981.11,
'sea_level': 1027.25,
'temp': 28.45,
'temp_max': 28.45,
'temp_min': 28.45},
'name': 'Tendukheda',
'sys': {'country': 'IN',
'message': 0.0041,
'sunrise': 1520384305,
'sunset': 1520426856},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 54.0009, 'speed': 2.01}}
duplicate city: saskylakh,ru
city generated: juba,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B134128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 57.82, 'lon': 26.93},
'dt': 1520398200,
'id': 587450,
'main': {'humidity': 78,
'pressure': 1006,
'temp': -12,
'temp_max': -12,
'temp_min': -12},
'name': 'Juba',
'sys': {'country': 'EE',
'id': 5015,
'message': 0.0036,
'sunrise': 1520398220,
'sunset': 1520438240,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 50, 'speed': 2.1}}
duplicate city: samusu,ws
duplicate city: lompoc,us
city generated: gat,ly
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A76E908>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.69, 'lon': -16.54},
'dt': 1520398800,
'id': 2249901,
'main': {'humidity': 57,
'pressure': 1010,
'temp': 24,
'temp_max': 24,
'temp_min': 24},
'name': 'Gat',
'sys': {'country': 'SN',
'id': 6162,
'message': 0.0045,
'sunrise': 1520407148,
'sunset': 1520450115,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 17.0009, 'speed': 5.21}}
duplicate city: chokurdakh,ru
city generated: kuche,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C699E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: karratha,au
duplicate city: butaritari,ki
duplicate city: bredasdorp,za
city generated: tumpat,my
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8D6A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 6.2, 'lon': 102.17},
'dt': 1520398800,
'id': 1736356,
'main': {'humidity': 74,
'pressure': 1010,
'temp': 29.28,
'temp_max': 30,
'temp_min': 29},
'name': 'Tumpat',
'sys': {'country': 'MY',
'id': 8126,
'message': 0.0036,
'sunrise': 1520378481,
'sunset': 1520421805,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 90, 'speed': 5.1}}
city generated: arkadak,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEBF710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 51.94, 'lon': 43.49},
'dt': 1520400403,
'id': 581080,
'main': {'grnd_level': 1011.18,
'humidity': 83,
'pressure': 1011.18,
'sea_level': 1034.67,
'temp': -12.48,
'temp_max': -12.48,
'temp_min': -12.48},
'name': 'Arkadak',
'sys': {'country': 'RU',
'message': 0.0037,
'sunrise': 1520393910,
'sunset': 1520434589},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 138.001, 'speed': 4.56}}
city generated: abeche,td
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B199198>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: nara,ml
city generated: malakal,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B134898>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
duplicate city: ngukurr,au
city generated: kropotkin,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF9C518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 45.43, 'lon': 40.58},
'dt': 1520400404,
'id': 540761,
'main': {'grnd_level': 1011.51,
'humidity': 96,
'pressure': 1011.51,
'sea_level': 1025.47,
'temp': 2.7,
'temp_max': 2.7,
'temp_min': 2.7},
'name': 'Kropotkin',
'rain': {'3h': 0.855},
'sys': {'country': 'RU',
'message': 0.0041,
'sunrise': 1520394316,
'sunset': 1520435568},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 129.501, 'speed': 3.31}}
duplicate city: port alfred,za
duplicate city: bethel,us
duplicate city: poum,nc
duplicate city: rikitea,pf
duplicate city: cherskiy,ru
duplicate city: upernavik,gl
duplicate city: mar del plata,ar
duplicate city: constitucion,mx
duplicate city: mar del plata,ar
duplicate city: port alfred,za
city generated: bozeman,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5D0550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 45.68, 'lon': -111.04},
'dt': 1520397300,
'id': 5641727,
'main': {'humidity': 67,
'pressure': 1025,
'temp': -5.11,
'temp_max': -1,
'temp_min': -9},
'name': 'Bozeman',
'sys': {'country': 'US',
'id': 1716,
'message': 0.0048,
'sunrise': 1520430668,
'sunset': 1520471982,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 180, 'speed': 8.7}}
duplicate city: illoqqortoormiut,gl
duplicate city: mahebourg,mu
duplicate city: grand river south east,mu
duplicate city: puerto ayora,ec
city generated: teya,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0BA198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 21.05, 'lon': -89.07},
'dt': 1520398140,
'id': 3526662,
'main': {'humidity': 78,
'pressure': 1015,
'temp': 24,
'temp_max': 24,
'temp_min': 24},
'name': 'Teya',
'sys': {'country': 'MX',
'id': 3996,
'message': 0.0031,
'sunrise': 1520424691,
'sunset': 1520467387,
'type': 1},
'visibility': 11265,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 142.001, 'speed': 2.96}}
duplicate city: husavik,is
duplicate city: qasigiannguit,gl
duplicate city: ushuaia,ar
duplicate city: kapaa,us
duplicate city: bethel,us
duplicate city: meulaboh,id
duplicate city: butaritari,ki
duplicate city: hilo,us
duplicate city: kodiak,us
duplicate city: bluff,nz
duplicate city: provideniya,ru
duplicate city: rikitea,pf
duplicate city: bluff,nz
duplicate city: attawapiskat,ca
duplicate city: ushuaia,ar
duplicate city: natal,br
city generated: dickson,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A683390>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 36.08, 'lon': -87.39},
'dt': 1520398560,
'id': 4618057,
'main': {'humidity': 39,
'pressure': 1011,
'temp': 6.59,
'temp_max': 9,
'temp_min': 4},
'name': 'Dickson',
'sys': {'country': 'US',
'id': 2533,
'message': 0.0046,
'sunrise': 1520424676,
'sunset': 1520466611,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 310, 'speed': 9.3}}
duplicate city: port elizabeth,za
duplicate city: taolanaro,mg
duplicate city: chuy,uy
duplicate city: taolanaro,mg
duplicate city: albany,au
duplicate city: hobart,au
duplicate city: mahebourg,mu
duplicate city: rikitea,pf
duplicate city: ahipara,nz
duplicate city: hasaki,jp
duplicate city: illoqqortoormiut,gl
city generated: cuiluan,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C48048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 47.72, 'lon': 128.65},
'dt': 1520400406,
'id': 2033413,
'main': {'grnd_level': 992.95,
'humidity': 52,
'pressure': 992.95,
'sea_level': 1045.78,
'temp': -10.55,
'temp_max': -10.55,
'temp_min': -10.55},
'name': 'Cuiluan',
'sys': {'country': 'CN',
'message': 0.0085,
'sunrise': 1520373302,
'sunset': 1520414319},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 255.001, 'speed': 1.81}}
duplicate city: rikitea,pf
city generated: newport,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A652EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 51.59, 'lon': -3},
'dt': 1520398200,
'id': 2641598,
'main': {'humidity': 93,
'pressure': 991,
'temp': 3.1,
'temp_max': 4,
'temp_min': 2},
'name': 'Newport',
'rain': {'3h': 0.11},
'sys': {'country': 'GB',
'id': 5076,
'message': 0.0041,
'sunrise': 1520405032,
'sunset': 1520445777,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 260, 'speed': 3.1}}
duplicate city: busselton,au
duplicate city: tuktoyaktuk,ca
duplicate city: bethel,us
duplicate city: tuktoyaktuk,ca
city generated: jalu,ly
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A76EBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 29.03, 'lon': 21.55},
'dt': 1520400406,
'id': 86049,
'main': {'grnd_level': 1015.32,
'humidity': 25,
'pressure': 1015.32,
'sea_level': 1022.55,
'temp': 20.18,
'temp_max': 20.18,
'temp_min': 20.18},
'name': 'Jalu',
'sys': {'country': 'LY',
'message': 0.0027,
'sunrise': 1520398356,
'sunset': 1520440641},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 238.501, 'speed': 4.46}}
duplicate city: georgetown,sh
duplicate city: albany,au
city generated: perth,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199626A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 56.4, 'lon': -3.43},
'dt': 1520398200,
'id': 2640358,
'main': {'humidity': 86,
'pressure': 988,
'temp': -0.04,
'temp_max': 1,
'temp_min': -1},
'name': 'Perth',
'sys': {'country': 'GB',
'id': 5134,
'message': 0.0048,
'sunrise': 1520405401,
'sunset': 1520445625,
'type': 1},
'visibility': 5000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 250, 'speed': 1.5}}
duplicate city: kaitangata,nz
duplicate city: amderma,ru
duplicate city: mataura,pf
city generated: fallon,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5D6128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 46.84, 'lon': -105.12},
'dt': 1520398560,
'id': 5681948,
'main': {'humidity': 78,
'pressure': 1027,
'temp': -13,
'temp_max': -13,
'temp_min': -13},
'name': 'Fallon',
'sys': {'country': 'US',
'id': 1728,
'message': 0.0032,
'sunrise': 1520429295,
'sunset': 1520470516,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 310, 'speed': 2.6}}
duplicate city: hilo,us
duplicate city: avera,pf
duplicate city: bengkulu,id
duplicate city: illoqqortoormiut,gl
city generated: angoche,mz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8D6C50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -16.23, 'lon': 39.91},
'dt': 1520400407,
'id': 1052944,
'main': {'grnd_level': 1020.91,
'humidity': 100,
'pressure': 1020.91,
'sea_level': 1021.05,
'temp': 27.88,
'temp_max': 27.88,
'temp_min': 27.88},
'name': 'Angoche',
'rain': {'3h': 2.375},
'sys': {'country': 'MZ',
'message': 0.0032,
'sunrise': 1520392908,
'sunset': 1520437238},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 235.001, 'speed': 5.71}}
duplicate city: tsihombe,mg
duplicate city: castro,cl
duplicate city: illoqqortoormiut,gl
duplicate city: hithadhoo,mv
duplicate city: tuktoyaktuk,ca
duplicate city: cape town,za
city generated: belyy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AED9828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 55.83, 'lon': 32.94},
'dt': 1520400408,
'id': 577576,
'main': {'grnd_level': 993.92,
'humidity': 87,
'pressure': 993.92,
'sea_level': 1022.96,
'temp': -7.55,
'temp_max': -7.55,
'temp_min': -7.55},
'name': 'Belyy',
'sys': {'country': 'RU',
'message': 0.0033,
'sunrise': 1520396653,
'sunset': 1520436917},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 117.501, 'speed': 4.31}}
city generated: gerash,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A47A780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 27.67, 'lon': 54.14},
'dt': 1520398800,
'id': 133595,
'main': {'humidity': 59,
'pressure': 1017,
'temp': 17,
'temp_max': 17,
'temp_min': 17},
'name': 'Gerash',
'sys': {'country': 'IR',
'id': 7079,
'message': 0.0037,
'sunrise': 1520390505,
'sunset': 1520432850,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 220, 'speed': 2.1}}
duplicate city: busselton,au
city generated: sangerhausen,de
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19E6EE10>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 51.47, 'lon': 11.3},
'dt': 1520398200,
'id': 2841693,
'main': {'humidity': 92,
'pressure': 991,
'temp': -0.49,
'temp_max': 0,
'temp_min': -1},
'name': 'Sangerhausen',
'sys': {'country': 'DE',
'id': 4880,
'message': 0.0037,
'sunrise': 1520401600,
'sunset': 1520442347,
'type': 1},
'visibility': 2800,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'},
{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 200, 'speed': 2.6}}
duplicate city: kavieng,pg
city generated: yiyang,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CA25C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 28.59, 'lon': 112.35},
'dt': 1520400409,
'id': 1808316,
'main': {'grnd_level': 1033.8,
'humidity': 100,
'pressure': 1033.8,
'sea_level': 1039.78,
'temp': 8.23,
'temp_max': 8.23,
'temp_min': 8.23},
'name': 'Yiyang',
'rain': {'3h': 0.345},
'sys': {'country': 'CN',
'message': 0.0041,
'sunrise': 1520376569,
'sunset': 1520418851},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 356.001, 'speed': 5.81}}
duplicate city: qaanaaq,gl
city generated: praia da vitoria,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACBAA90>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: korla,cn
duplicate city: acapulco,mx
duplicate city: chabahar,ir
duplicate city: mahebourg,mu
duplicate city: oktyabrskiy,ru
duplicate city: punta arenas,cl
duplicate city: karaul,ru
duplicate city: jumla,np
duplicate city: aksarka,ru
duplicate city: ushuaia,ar
city generated: maniitsoq,gl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A0939B0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: faanui,pf
city generated: punta cardon,ve
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B69CCC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 11.61, 'lon': -70.22},
'dt': 1520400410,
'id': 3629614,
'main': {'grnd_level': 1019.61,
'humidity': 79,
'pressure': 1019.61,
'sea_level': 1024.78,
'temp': 25.18,
'temp_max': 25.18,
'temp_min': 25.18},
'name': 'Punta Cardon',
'sys': {'country': 'VE',
'message': 0.0036,
'sunrise': 1520419959,
'sunset': 1520463065},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 75.5009, 'speed': 6.76}}
duplicate city: illoqqortoormiut,gl
duplicate city: kaitangata,nz
duplicate city: puerto ayora,ec
city generated: kandrian,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E52B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -6.21, 'lon': 149.55},
'dt': 1520400410,
'id': 2094746,
'main': {'grnd_level': 998.13,
'humidity': 79,
'pressure': 998.13,
'sea_level': 1015.3,
'temp': 29.53,
'temp_max': 29.53,
'temp_min': 29.53},
'name': 'Kandrian',
'rain': {'3h': 0.12},
'sys': {'country': 'PG',
'message': 0.0046,
'sunrise': 1520366832,
'sunset': 1520410704},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 334.501, 'speed': 1.46}}
duplicate city: maniitsoq,gl
duplicate city: rikitea,pf
duplicate city: barentsburg,sj
duplicate city: tuktoyaktuk,ca
duplicate city: umm kaddadah,sd
duplicate city: souillac,mu
city generated: tabiauea,ki
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A717748>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
duplicate city: carballo,es
duplicate city: namatanai,pg
duplicate city: puerto ayora,ec
duplicate city: mataura,pf
duplicate city: mys shmidta,ru
duplicate city: hamilton,bm
city generated: demirci,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1E5390>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 39.05, 'lon': 28.66},
'dt': 1520400411,
'id': 317241,
'main': {'grnd_level': 916.67,
'humidity': 78,
'pressure': 916.67,
'sea_level': 1022.51,
'temp': 10.13,
'temp_max': 10.13,
'temp_min': 10.13},
'name': 'Demirci',
'sys': {'country': 'TR',
'message': 0.0036,
'sunrise': 1520396944,
'sunset': 1520438652},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 208.001, 'speed': 4.26}}
duplicate city: busselton,au
duplicate city: longyearbyen,sj
duplicate city: mar del plata,ar
duplicate city: pisco,pe
city generated: bahar,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A475908>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 34.91, 'lon': 48.44},
'dt': 1520398800,
'id': 142000,
'main': {'humidity': 75,
'pressure': 1018,
'temp': 7,
'temp_max': 7,
'temp_min': 7},
'name': 'Bahar',
'sys': {'country': 'IR',
'id': 7030,
'message': 0.0094,
'sunrise': 1520392073,
'sunset': 1520434026,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 258.501, 'speed': 3.76}}
duplicate city: marawi,sd
duplicate city: rikitea,pf
duplicate city: emerald,au
duplicate city: punta arenas,cl
duplicate city: hobart,au
duplicate city: hermanus,za
duplicate city: lasa,cn
duplicate city: mys shmidta,ru
duplicate city: busselton,au
duplicate city: new norfolk,au
duplicate city: thompson,ca
duplicate city: ushuaia,ar
duplicate city: ancud,cl
duplicate city: illoqqortoormiut,gl
duplicate city: amderma,ru
city generated: hit,iq
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A46EE80>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: alice springs,au
duplicate city: dikson,ru
duplicate city: nikolskoye,ru
duplicate city: hermanus,za
duplicate city: kavaratti,in
duplicate city: yellowknife,ca
duplicate city: port alfred,za
city generated: nizhniy baskunchak,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFF3CF8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: cidreira,br
city generated: coahuayana,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7F8A90>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 18.62, 'lon': -100.35},
'dt': 1520400413,
'id': 3981460,
'main': {'grnd_level': 901.59,
'humidity': 75,
'pressure': 901.59,
'sea_level': 1023.77,
'temp': 15.18,
'temp_max': 15.18,
'temp_min': 15.18},
'name': 'Coahuayana',
'sys': {'country': 'MX',
'message': 0.0042,
'sunrise': 1520427341,
'sunset': 1520470148},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 256.501, 'speed': 0.86}}
duplicate city: cape town,za
duplicate city: taltal,cl
duplicate city: bluff,nz
city generated: amazar,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEBA6D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 53.86, 'lon': 120.88},
'dt': 1520400413,
'id': 2027806,
'main': {'grnd_level': 943.66,
'humidity': 29,
'pressure': 943.66,
'sea_level': 1044.96,
'temp': -13.93,
'temp_max': -13.93,
'temp_min': -13.93},
'name': 'Amazar',
'sys': {'country': 'RU',
'message': 0.0039,
'sunrise': 1520375469,
'sunset': 1520415893},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 339.001, 'speed': 1.51}}
duplicate city: rikitea,pf
duplicate city: bredasdorp,za
duplicate city: saint-philippe,re
city generated: guarapari,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A90E10>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bur gabo,so
city generated: dolbeau,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B837F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: khatanga,ru
duplicate city: punta arenas,cl
duplicate city: butaritari,ki
duplicate city: tuktoyaktuk,ca
city generated: iwanai,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5600B8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: alice springs,au
duplicate city: narsaq,gl
duplicate city: touros,br
duplicate city: poum,nc
duplicate city: jamestown,sh
city generated: nuevo casas grandes,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A852358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 30.42, 'lon': -107.91},
'dt': 1520400415,
'id': 3994616,
'main': {'grnd_level': 856.6,
'humidity': 53,
'pressure': 856.6,
'sea_level': 1033.94,
'temp': 1.45,
'temp_max': 1.45,
'temp_min': 1.45},
'name': 'Nuevo Casas Grandes',
'sys': {'country': 'MX',
'message': 0.0037,
'sunrise': 1520429439,
'sunset': 1520471690},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 103.001, 'speed': 1.26}}
city generated: kysyl-syr,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFAB358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 63.9, 'lon': 122.77},
'dt': 1520400415,
'id': 2021017,
'main': {'grnd_level': 1019.13,
'humidity': 49,
'pressure': 1019.13,
'sea_level': 1041.84,
'temp': -22.53,
'temp_max': -22.53,
'temp_min': -22.53},
'name': 'Kysyl-Syr',
'sys': {'country': 'RU',
'message': 0.0033,
'sunrise': 1520375765,
'sunset': 1520414717},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 309.001, 'speed': 2.01}}
duplicate city: bilibino,ru
city generated: posadas,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992A860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -27.37, 'lon': -55.89},
'dt': 1520395200,
'id': 3429886,
'main': {'humidity': 83,
'pressure': 1013,
'temp': 22,
'temp_max': 22,
'temp_min': 22},
'name': 'Posadas',
'sys': {'country': 'PY',
'id': 4727,
'message': 0.0048,
'sunrise': 1520415606,
'sunset': 1520460505,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 140, 'speed': 2.1}}
duplicate city: east london,za
duplicate city: te anau,nz
duplicate city: busselton,au
duplicate city: tsihombe,mg
city generated: diamantino,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A7B898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': -14.4, 'lon': -56.44},
'dt': 1520400416,
'id': 3464724,
'main': {'grnd_level': 979.9,
'humidity': 96,
'pressure': 979.9,
'sea_level': 1023.36,
'temp': 22.23,
'temp_max': 22.23,
'temp_min': 22.23},
'name': 'Diamantino',
'rain': {'3h': 2.53},
'sys': {'country': 'BR',
'message': 0.0025,
'sunrise': 1520416079,
'sunset': 1520460309},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 354.001, 'speed': 0.86}}
city generated: shakawe,bw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B64748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -18.36, 'lon': 21.84},
'dt': 1520400416,
'id': 933077,
'main': {'grnd_level': 910.99,
'humidity': 89,
'pressure': 910.99,
'sea_level': 1024.78,
'temp': 21.15,
'temp_max': 21.15,
'temp_min': 21.15},
'name': 'Shakawe',
'sys': {'country': 'BW',
'message': 0.0039,
'sunrise': 1520397191,
'sunset': 1520441625},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 205.501, 'speed': 1.66}}
city generated: mananara,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A780780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: taoudenni,ml
city generated: minna,ng
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8F9518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 9.62, 'lon': 6.55},
'dt': 1520400417,
'id': 2330100,
'main': {'grnd_level': 990.92,
'humidity': 69,
'pressure': 990.92,
'sea_level': 1023.4,
'temp': 21.05,
'temp_max': 21.05,
'temp_min': 21.05},
'name': 'Minna',
'sys': {'country': 'NG',
'message': 0.0029,
'sunrise': 1520401497,
'sunset': 1520444681},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 147.501, 'speed': 4.16}}
duplicate city: barrow,us
duplicate city: barrow,us
duplicate city: butaritari,ki
duplicate city: ushuaia,ar
city generated: rosehearty,gb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A018630>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: buqayq,sa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B12F5F8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: carnarvon,au
city generated: trincomalee,lk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A737860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 8.58, 'lon': 81.23},
'dt': 1520400418,
'id': 1226260,
'main': {'grnd_level': 1017.51,
'humidity': 69,
'pressure': 1017.51,
'sea_level': 1024.78,
'temp': 30.15,
'temp_max': 30.15,
'temp_min': 30.15},
'name': 'Trincomalee',
'sys': {'country': 'LK',
'message': 0.0037,
'sunrise': 1520383557,
'sunset': 1520426780},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 62.0009, 'speed': 3.21}}
duplicate city: cape town,za
duplicate city: jamestown,sh
city generated: tuxtla,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8AD828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 20, 'lon': -97.65},
'dt': 1520400419,
'id': 3514179,
'main': {'grnd_level': 803.91,
'humidity': 90,
'pressure': 803.91,
'sea_level': 1029.04,
'temp': 10.88,
'temp_max': 10.88,
'temp_min': 10.88},
'name': 'Tuxtla',
'rain': {'3h': 1.485},
'sys': {'country': 'MX',
'message': 0.0036,
'sunrise': 1520426724,
'sunset': 1520469470},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 229.501, 'speed': 0.51}}
duplicate city: vila franca do campo,pt
city generated: chifeng,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C47B38>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: brovst,dk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19EA9400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 57.1, 'lon': 9.52},
'dt': 1520400420,
'id': 2623306,
'main': {'grnd_level': 1008.27,
'humidity': 92,
'pressure': 1008.27,
'sea_level': 1010.31,
'temp': -1.63,
'temp_max': -1.63,
'temp_min': -1.63},
'name': 'Brovst',
'sys': {'country': 'DK',
'message': 0.0034,
'sunrise': 1520402343,
'sunset': 1520442470},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 99.0009, 'speed': 5.01}}
city generated: sento se,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B34588>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: atuona,pf
duplicate city: bluff,nz
duplicate city: bluff,nz
duplicate city: vaini,to
city generated: dustlik,uz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6EADA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 40.53, 'lon': 68.03},
'dt': 1520400420,
'id': 1514125,
'main': {'grnd_level': 1010.54,
'humidity': 99,
'pressure': 1010.54,
'sea_level': 1041.72,
'temp': 6.65,
'temp_max': 6.65,
'temp_min': 6.65},
'name': 'Dustlik',
'sys': {'country': 'UZ',
'message': 0.0035,
'sunrise': 1520387555,
'sunset': 1520429148},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 31.5009, 'speed': 3.46}}
duplicate city: belushya guba,ru
duplicate city: hamilton,bm
duplicate city: port elizabeth,za
city generated: bontang,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A255D68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 0.12, 'lon': 117.47},
'dt': 1520400421,
'id': 1648186,
'main': {'grnd_level': 1018.88,
'humidity': 100,
'pressure': 1018.88,
'sea_level': 1021.66,
'temp': 28.15,
'temp_max': 28.15,
'temp_min': 28.15},
'name': 'Bontang',
'rain': {'3h': 1.94},
'sys': {'country': 'ID',
'message': 0.004,
'sunrise': 1520374674,
'sunset': 1520418263},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 355.501, 'speed': 0.96}}
duplicate city: ribeira grande,pt
duplicate city: qaanaaq,gl
city generated: tabuk,sa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B12FF60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 17.41, 'lon': 121.44},
'dt': 1520400421,
'id': 1684803,
'main': {'grnd_level': 932.96,
'humidity': 79,
'pressure': 932.96,
'sea_level': 1024.5,
'temp': 23.65,
'temp_max': 23.65,
'temp_min': 23.65},
'name': 'Tabuk',
'rain': {'3h': 0.755},
'sys': {'country': 'PH',
'message': 0.0035,
'sunrise': 1520374111,
'sunset': 1520416936},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 32.5009, 'speed': 0.71}}
city generated: nombre de dios,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A852048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 23.85, 'lon': -104.24},
'dt': 1520400422,
'id': 3994863,
'main': {'grnd_level': 817.78,
'humidity': 41,
'pressure': 817.78,
'sea_level': 1026.36,
'temp': 11.8,
'temp_max': 11.8,
'temp_min': 11.8},
'name': 'Nombre de Dios',
'sys': {'country': 'MX',
'message': 0.0031,
'sunrise': 1520428395,
'sunset': 1520470966},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 264.501, 'speed': 3.11}}
duplicate city: tilichiki,ru
city generated: tucurui,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B464A8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ushuaia,ar
city generated: gabu,gw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A177240>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 34.78, 'lon': 103},
'dt': 1520400423,
'id': 1791785,
'main': {'grnd_level': 701.94,
'humidity': 32,
'pressure': 701.94,
'sea_level': 1035.03,
'temp': 1.9,
'temp_max': 1.9,
'temp_min': 1.9},
'name': 'Gabu',
'sys': {'country': 'CN',
'message': 0.0033,
'sunrise': 1520378987,
'sunset': 1520420927},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 327.001, 'speed': 2.56}}
city generated: huron,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A67BDD8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 44.36, 'lon': -98.21},
'dt': 1520398500,
'id': 5228673,
'main': {'humidity': 79,
'pressure': 1023,
'temp': -4,
'temp_max': -4,
'temp_min': -4},
'name': 'Huron',
'sys': {'country': 'US',
'id': 2456,
'message': 0.005,
'sunrise': 1520427543,
'sunset': 1520468948,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 320, 'speed': 9.3}}
duplicate city: punta arenas,cl
city generated: cherlak,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEFC940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 54.15, 'lon': 74.8},
'dt': 1520400423,
'id': 1508138,
'main': {'grnd_level': 1006.73,
'humidity': 88,
'pressure': 1006.73,
'sea_level': 1020,
'temp': -6.88,
'temp_max': -6.88,
'temp_min': -6.88},
'name': 'Cherlak',
'sys': {'country': 'RU',
'message': 0.0107,
'sunrise': 1520386526,
'sunset': 1520426951},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 254.001, 'speed': 10.01}}
duplicate city: avarua,ck
duplicate city: port alfred,za
duplicate city: brae,gb
duplicate city: bluff,nz
duplicate city: taolanaro,mg
duplicate city: cape town,za
city generated: neath,gb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A052D68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 51.66, 'lon': -3.8},
'dt': 1520398200,
'id': 2641843,
'main': {'humidity': 93,
'pressure': 991,
'temp': 1.89,
'temp_max': 4,
'temp_min': -1},
'name': 'Neath',
'sys': {'country': 'GB',
'id': 5074,
'message': 0.0041,
'sunrise': 1520405228,
'sunset': 1520445966,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 300, 'speed': 3.1}}
duplicate city: port alfred,za
duplicate city: kruisfontein,za
city generated: nokaneng,bw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B5FB38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -19.66, 'lon': 22.19},
'dt': 1520400424,
'id': 933211,
'main': {'grnd_level': 917.8,
'humidity': 87,
'pressure': 917.8,
'sea_level': 1024.62,
'temp': 21.98,
'temp_max': 21.98,
'temp_min': 21.98},
'name': 'Nokaneng',
'sys': {'country': 'BW',
'message': 0.0029,
'sunrise': 1520397074,
'sunset': 1520441573},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 234.001, 'speed': 2.31}}
duplicate city: ushuaia,ar
duplicate city: vestmannaeyjar,is
city generated: synya,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0AE080>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: atuona,pf
duplicate city: punta arenas,cl
city generated: harsin,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A47AC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 34.27, 'lon': 47.59},
'dt': 1520398800,
'id': 131962,
'main': {'humidity': 58,
'pressure': 1019,
'temp': 13,
'temp_max': 13,
'temp_min': 13},
'name': 'Harsin',
'sys': {'country': 'IR',
'id': 7022,
'message': 0.003,
'sunrise': 1520392258,
'sunset': 1520434248,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 110, 'speed': 2.1}}
duplicate city: tiksi,ru
city generated: parkes,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199625C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -33.14, 'lon': 148.18},
'dt': 1520400141,
'id': 2153778,
'main': {'grnd_level': 990.92,
'humidity': 44,
'pressure': 990.92,
'sea_level': 1034.63,
'temp': 24.98,
'temp_max': 24.98,
'temp_min': 24.98},
'name': 'Parkes',
'sys': {'country': 'AU',
'message': 0.0044,
'sunrise': 1520366421,
'sunset': 1520411746},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 92.5009, 'speed': 5.01}}
duplicate city: hithadhoo,mv
city generated: soyo,ao
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19924710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -6.13, 'lon': 12.37},
'dt': 1520400425,
'id': 2236967,
'main': {'grnd_level': 1018.88,
'humidity': 94,
'pressure': 1018.88,
'sea_level': 1024.94,
'temp': 22.18,
'temp_max': 22.18,
'temp_min': 22.18},
'name': 'Soyo',
'sys': {'country': 'AO',
'message': 0.0032,
'sunrise': 1520399756,
'sunset': 1520443616},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 134.501, 'speed': 1.11}}
duplicate city: amderma,ru
duplicate city: petropavlovsk-kamchatskiy,ru
duplicate city: albany,au
duplicate city: hithadhoo,mv
duplicate city: vao,nc
duplicate city: illoqqortoormiut,gl
duplicate city: ushuaia,ar
duplicate city: marzuq,ly
city generated: taraz,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A728400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 42.89, 'lon': 71.39},
'dt': 1520398800,
'id': 1516905,
'main': {'humidity': 100,
'pressure': 1023,
'temp': 2,
'temp_max': 2,
'temp_min': 2},
'name': 'Taraz',
'sys': {'country': 'KZ',
'id': 7196,
'message': 0.0115,
'sunrise': 1520386834,
'sunset': 1520428261,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 10, 'speed': 3}}
duplicate city: nome,us
duplicate city: sobolevo,ru
duplicate city: cidreira,br
duplicate city: arraial do cabo,br
duplicate city: atuona,pf
duplicate city: rikitea,pf
duplicate city: mount isa,au
duplicate city: kodiak,us
city generated: waycross,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B368C50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 31.21, 'lon': -82.35},
'dt': 1520398500,
'id': 4229763,
'main': {'humidity': 93,
'pressure': 1010,
'temp': 16.79,
'temp_max': 18,
'temp_min': 15},
'name': 'Waycross',
'sys': {'country': 'US',
'id': 808,
'message': 0.0043,
'sunrise': 1520423330,
'sunset': 1520465533,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 250, 'speed': 3.1}}
city generated: benguela,ao
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19920EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -12.58, 'lon': 13.4},
'dt': 1520400426,
'id': 3351663,
'main': {'grnd_level': 1016.86,
'humidity': 100,
'pressure': 1016.86,
'sea_level': 1024.94,
'temp': 23.3,
'temp_max': 23.3,
'temp_min': 23.3},
'name': 'Benguela',
'sys': {'country': 'AO',
'message': 0.0036,
'sunrise': 1520399360,
'sunset': 1520443512},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 135.001, 'speed': 1.86}}
duplicate city: katsuura,jp
duplicate city: axim,gh
city generated: ephrata,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A65C6A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 47.32, 'lon': -119.55},
'dt': 1520398500,
'id': 5793832,
'main': {'humidity': 64,
'pressure': 1024,
'temp': 0.69,
'temp_max': 2,
'temp_min': -1},
'name': 'Ephrata',
'sys': {'country': 'US',
'id': 2930,
'message': 0.0056,
'sunrise': 1520432773,
'sunset': 1520473964,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 320, 'speed': 2.6}}
duplicate city: cape town,za
duplicate city: tumannyy,ru
duplicate city: hobart,au
duplicate city: kruisfontein,za
city generated: dutse,ng
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8EE978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 11.76, 'lon': 9.34},
'dt': 1520400427,
'id': 2344245,
'main': {'grnd_level': 978.6,
'humidity': 61,
'pressure': 978.6,
'sea_level': 1022.96,
'temp': 16.93,
'temp_max': 16.93,
'temp_min': 16.93},
'name': 'Dutse',
'sys': {'country': 'NG',
'message': 0.0034,
'sunrise': 1520400875,
'sunset': 1520443966},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 34.0009, 'speed': 1.26}}
duplicate city: hobart,au
duplicate city: mataura,pf
city generated: winnemucca,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5D6B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 40.97, 'lon': -117.74},
'dt': 1520394960,
'id': 5710360,
'main': {'humidity': 51,
'pressure': 1023,
'temp': 2,
'temp_max': 2,
'temp_min': 2},
'name': 'Winnemucca',
'sys': {'country': 'US',
'id': 2078,
'message': 0.0034,
'sunrise': 1520432106,
'sunset': 1520473753,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 80, 'speed': 3.1}}
duplicate city: sentyabrskiy,ru
duplicate city: laguna,br
duplicate city: albany,au
duplicate city: camacha,pt
duplicate city: bluff,nz
duplicate city: busselton,au
duplicate city: bilma,ne
duplicate city: rikitea,pf
duplicate city: kapaa,us
duplicate city: hobart,au
duplicate city: barrow,us
city generated: toliary,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7832E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: lasa,cn
duplicate city: saint george,bm
duplicate city: umzimvubu,za
duplicate city: sorong,id
city generated: mocambique,mz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8DA8D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: nantucket,us
duplicate city: axim,gh
duplicate city: nikolskoye,ru
duplicate city: norman wells,ca
duplicate city: punta arenas,cl
duplicate city: araouane,ml
duplicate city: rikitea,pf
duplicate city: mataura,pf
city generated: cam ranh,vn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6A3A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 11.92, 'lon': 109.15},
'dt': 1520400429,
'id': 1586350,
'main': {'grnd_level': 1006.08,
'humidity': 73,
'pressure': 1006.08,
'sea_level': 1024.33,
'temp': 28.08,
'temp_max': 28.08,
'temp_min': 28.08},
'name': 'Cam Ranh',
'sys': {'country': 'VN',
'message': 0.0031,
'sunrise': 1520376933,
'sunset': 1520420007},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 33.0009, 'speed': 3.31}}
city generated: palma,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F41630>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -5.02, 'lon': -39.1},
'dt': 1520400429,
'id': 3390907,
'main': {'grnd_level': 994.57,
'humidity': 97,
'pressure': 994.57,
'sea_level': 1023.65,
'temp': 22.4,
'temp_max': 22.4,
'temp_min': 22.4},
'name': 'Palma',
'rain': {'3h': 0.57},
'sys': {'country': 'BR',
'message': 0.004,
'sunrise': 1520412133,
'sunset': 1520455942},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 53.0009, 'speed': 1.51}}
city generated: ozgon,kg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A712400>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bonavista,ca
duplicate city: butaritari,ki
duplicate city: carnarvon,au
duplicate city: mataura,pf
duplicate city: oranjestad,an
duplicate city: pevek,ru
city generated: svolvaer,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A96CB00>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: cape town,za
duplicate city: haines junction,ca
duplicate city: rikitea,pf
duplicate city: punta arenas,cl
duplicate city: attawapiskat,ca
duplicate city: georgetown,sh
duplicate city: georgetown,sh
duplicate city: atuona,pf
duplicate city: camacha,pt
city generated: avanigadda,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2CD128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 16.02, 'lon': 80.92},
'dt': 1520398800,
'id': 1278122,
'main': {'humidity': 78,
'pressure': 1013,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Avanigadda',
'sys': {'country': 'IN',
'id': 7824,
'message': 0.0033,
'sunrise': 1520383799,
'sunset': 1520426693,
'type': 1},
'visibility': 3000,
'weather': [{'description': 'haze', 'icon': '50d', 'id': 721, 'main': 'Haze'}],
'wind': {'deg': 183.001, 'speed': 2.06}}
duplicate city: new norfolk,au
duplicate city: saint-philippe,re
duplicate city: kodiak,us
duplicate city: warqla,dz
duplicate city: barentsburg,sj
duplicate city: kapaa,us
city generated: lyuban,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFC1160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 52.8, 'lon': 28},
'dt': 1520400431,
'id': 625721,
'main': {'grnd_level': 997.24,
'humidity': 96,
'pressure': 997.24,
'sea_level': 1013.35,
'temp': -1.13,
'temp_max': -1.13,
'temp_min': -1.13},
'name': 'Lyuban',
'sys': {'country': 'BY',
'message': 0.0049,
'sunrise': 1520397666,
'sunset': 1520438269},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 113.001, 'speed': 5.26}}
city generated: sao joao da barra,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B25630>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bluff,nz
city generated: liuzhou,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C72438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 24.32, 'lon': 109.41},
'dt': 1520400432,
'id': 1803300,
'main': {'grnd_level': 1005.92,
'humidity': 100,
'pressure': 1005.92,
'sea_level': 1032.4,
'temp': 10.53,
'temp_max': 10.53,
'temp_min': 10.53},
'name': 'Liuzhou',
'rain': {'3h': 2.15},
'sys': {'country': 'CN',
'message': 0.0029,
'sunrise': 1520377164,
'sunset': 1520419663},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 9.00095, 'speed': 6.16}}
duplicate city: nikolskoye,ru
duplicate city: illoqqortoormiut,gl
duplicate city: taolanaro,mg
duplicate city: talnakh,ru
city generated: mersing,my
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8D1080>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 2.43, 'lon': 103.84},
'dt': 1520400432,
'id': 1732826,
'main': {'grnd_level': 1019.29,
'humidity': 99,
'pressure': 1019.29,
'sea_level': 1022.75,
'temp': 26.53,
'temp_max': 26.53,
'temp_min': 26.53},
'name': 'Mersing',
'rain': {'3h': 5.905},
'sys': {'country': 'MY',
'message': 0.0083,
'sunrise': 1520377996,
'sunset': 1520421485},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 33.5009, 'speed': 3.01}}
duplicate city: kahului,us
city generated: saravena,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D26AC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 6.96, 'lon': -71.88},
'dt': 1520400433,
'id': 3668257,
'main': {'grnd_level': 950.47,
'humidity': 96,
'pressure': 950.47,
'sea_level': 1024.05,
'temp': 19.55,
'temp_max': 19.55,
'temp_min': 19.55},
'name': 'Saravena',
'rain': {'3h': 0.19},
'sys': {'country': 'CO',
'message': 0.0039,
'sunrise': 1520420257,
'sunset': 1520463559},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 267.501, 'speed': 1.16}}
duplicate city: castro,cl
duplicate city: hermanus,za
duplicate city: huarmey,pe
duplicate city: busselton,au
city generated: orsha,by
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B66DD8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 54.51, 'lon': 30.43},
'dt': 1520395200,
'id': 624079,
'main': {'humidity': 92,
'pressure': 1002,
'temp': -4,
'temp_max': -4,
'temp_min': -4},
'name': 'Orsha',
'sys': {'country': 'BY',
'id': 7379,
'message': 0.0034,
'sunrise': 1520397177,
'sunset': 1520437595,
'type': 1},
'visibility': 6000,
'weather': [{'description': 'light shower snow',
'icon': '13n',
'id': 620,
'main': 'Snow'}],
'wind': {'deg': 120, 'speed': 4}}
duplicate city: hobart,au
duplicate city: tasiilaq,gl
duplicate city: barrow,us
duplicate city: cabo san lucas,mx
city generated: shakhrinau,tj
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1CCA20>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: illoqqortoormiut,gl
duplicate city: namatanai,pg
city generated: kaeo,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9808D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': -35.1, 'lon': 173.78},
'dt': 1520400434,
'id': 2189343,
'main': {'grnd_level': 1002.51,
'humidity': 73,
'pressure': 1002.51,
'sea_level': 1017.2,
'temp': 19.93,
'temp_max': 19.93,
'temp_min': 19.93},
'name': 'Kaeo',
'sys': {'country': 'NZ',
'message': 0.0035,
'sunrise': 1520360203,
'sunset': 1520405676},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 270.501, 'speed': 4.26}}
city generated: cockburn town,bs
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B57208>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bluff,nz
duplicate city: georgetown,sh
duplicate city: quatre cocos,mu
duplicate city: talnakh,ru
duplicate city: saint-georges,gf
duplicate city: butaritari,ki
duplicate city: rikitea,pf
duplicate city: atuona,pf
duplicate city: sawtell,au
duplicate city: kapaa,us
city generated: villa literno,it
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5353C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 41.01, 'lon': 14.08},
'dt': 1520398500,
'id': 6541900,
'main': {'humidity': 87,
'pressure': 1003,
'temp': 11.25,
'temp_max': 13,
'temp_min': 10},
'name': 'Villa Literno',
'sys': {'country': 'IT',
'id': 5858,
'message': 0.004,
'sunrise': 1520400505,
'sunset': 1520442090,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 259.501, 'speed': 7.41}}
duplicate city: illoqqortoormiut,gl
duplicate city: bluff,nz
duplicate city: illoqqortoormiut,gl
duplicate city: albany,au
duplicate city: kapaa,us
duplicate city: east london,za
duplicate city: cidreira,br
city generated: merrill,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6DB780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 42.03, 'lon': -121.6},
'dt': 1520398380,
'id': 5572979,
'main': {'humidity': 64,
'pressure': 1020,
'temp': 3,
'temp_max': 3,
'temp_min': 3},
'name': 'Merrill',
'sys': {'country': 'US',
'id': 2293,
'message': 0.0039,
'sunrise': 1520433067,
'sunset': 1520474646,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 330, 'speed': 2.1}}
duplicate city: albany,au
city generated: kemijarvi,fi
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F69F28>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: nanortalik,gl
duplicate city: georgetown,sh
duplicate city: east london,za
city generated: nova vcelnice,cz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D9AA90>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: east london,za
duplicate city: bredasdorp,za
duplicate city: illoqqortoormiut,gl
duplicate city: kununurra,au
duplicate city: new norfolk,au
city generated: celendin,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9BB4E0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tasiilaq,gl
city generated: mindelo,cv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D64198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 41.31, 'lon': -8.72},
'dt': 1520398800,
'id': 2739997,
'main': {'humidity': 93,
'pressure': 1009,
'temp': 5.46,
'temp_max': 6,
'temp_min': 5},
'name': 'Mindelo',
'sys': {'country': 'PT',
'id': 5959,
'message': 0.0034,
'sunrise': 1520405982,
'sunset': 1520447557,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 130, 'speed': 3.6}}
city generated: sedhiou,sn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B17B2E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: port elizabeth,za
duplicate city: nishihara,jp
duplicate city: tiksi,ru
duplicate city: new norfolk,au
duplicate city: carnarvon,au
duplicate city: cape town,za
duplicate city: rikitea,pf
duplicate city: albany,au
duplicate city: clyde river,ca
duplicate city: ushuaia,ar
duplicate city: ushuaia,ar
duplicate city: puerto ayora,ec
duplicate city: lompoc,us
city generated: protivin,cz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19DA7438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 43.22, 'lon': -92.09},
'dt': 1520399700,
'id': 4853059,
'main': {'humidity': 73,
'pressure': 1014,
'temp': -4.23,
'temp_max': -3,
'temp_min': -6},
'name': 'Protivin',
'sys': {'country': 'US',
'id': 863,
'message': 0.013,
'sunrise': 1520426034,
'sunset': 1520467518,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 340, 'speed': 7.2}}
duplicate city: anadyr,ru
duplicate city: grand river south east,mu
city generated: dongtai,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C4E080>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 32.85, 'lon': 120.31},
'dt': 1520400438,
'id': 1812228,
'main': {'grnd_level': 1036.64,
'humidity': 100,
'pressure': 1036.64,
'sea_level': 1037.35,
'temp': 7.95,
'temp_max': 7.95,
'temp_min': 7.95},
'name': 'Dongtai',
'rain': {'3h': 0.84},
'sys': {'country': 'CN',
'message': 0.003,
'sunrise': 1520374779,
'sunset': 1520416825},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 62.5009, 'speed': 4.91}}
duplicate city: dikson,ru
city generated: coulihaut,dm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19ED1B00>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: meulaboh,id
duplicate city: belmonte,br
city generated: shelburne,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BC19E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 44.08, 'lon': -80.2},
'dt': 1520398800,
'id': 6145890,
'main': {'humidity': 100,
'pressure': 1007,
'temp': -2.35,
'temp_max': 0,
'temp_min': -5},
'name': 'Shelburne',
'sys': {'country': 'CA',
'id': 3632,
'message': 0.0101,
'sunrise': 1520423215,
'sunset': 1520464632,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 148.001, 'speed': 1.66}}
duplicate city: busselton,au
duplicate city: ushuaia,ar
city generated: nyurba,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B00E780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 63.29, 'lon': 118.35},
'dt': 1520400439,
'id': 2018735,
'main': {'grnd_level': 1019.61,
'humidity': 62,
'pressure': 1019.61,
'sea_level': 1043.59,
'temp': -19.35,
'temp_max': -19.35,
'temp_min': -19.35},
'name': 'Nyurba',
'sys': {'country': 'RU',
'message': 0.0044,
'sunrise': 1520376763,
'sunset': 1520415838},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 287.001, 'speed': 1.71}}
duplicate city: punta arenas,cl
duplicate city: butaritari,ki
duplicate city: pisco,pe
duplicate city: manggar,id
duplicate city: vaini,to
duplicate city: jamestown,sh
duplicate city: provideniya,ru
duplicate city: ponta do sol,cv
duplicate city: rikitea,pf
city generated: kilindoni,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B21D5F8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: chuy,uy
duplicate city: ushuaia,ar
duplicate city: adrar,dz
city generated: gravelbourg,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B8DA20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 49.88, 'lon': -106.56},
'dt': 1520400440,
'id': 5965462,
'main': {'grnd_level': 950.47,
'humidity': 49,
'pressure': 950.47,
'sea_level': 1047.68,
'temp': -20.1,
'temp_max': -20.1,
'temp_min': -20.1},
'name': 'Gravelbourg',
'sys': {'country': 'CA',
'message': 0.0031,
'sunrise': 1520429769,
'sunset': 1520470738},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 214.501, 'speed': 1.31}}
duplicate city: grindavik,is
duplicate city: meulaboh,id
duplicate city: ushuaia,ar
duplicate city: college,us
duplicate city: karratha,au
duplicate city: saint-francois,gp
duplicate city: cape town,za
duplicate city: semey,kz
city generated: turiacu,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B469B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -5.01, 'lon': -63},
'dt': 1520400441,
'id': 3665361,
'main': {'grnd_level': 1017.59,
'humidity': 86,
'pressure': 1017.59,
'sea_level': 1022.47,
'temp': 25.65,
'temp_max': 25.65,
'temp_min': 25.65},
'name': 'Turiacu',
'sys': {'country': 'BR',
'message': 0.0037,
'sunrise': 1520417868,
'sunset': 1520461676},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 39.5009, 'speed': 2.11}}
city generated: salinas,ec
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19EE94E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 36.67, 'lon': -121.66},
'dt': 1520398500,
'id': 5391295,
'main': {'humidity': 54,
'pressure': 1017,
'temp': 10.49,
'temp_max': 12,
'temp_min': 9},
'name': 'Salinas',
'sys': {'country': 'US',
'id': 469,
'message': 0.0037,
'sunrise': 1520432910,
'sunset': 1520474824,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 112.001, 'speed': 0.71}}
duplicate city: marcona,pe
city generated: miandrivazo,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A780B70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -19.53, 'lon': 45.46},
'dt': 1520400441,
'id': 1059051,
'main': {'grnd_level': 979.98,
'humidity': 99,
'pressure': 979.98,
'sea_level': 1020.89,
'temp': 24.88,
'temp_max': 24.88,
'temp_min': 24.88},
'name': 'Miandrivazo',
'sys': {'country': 'MG',
'message': 0.0038,
'sunrise': 1520391491,
'sunset': 1520435988},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 65.0009, 'speed': 1.61}}
duplicate city: avarua,ck
duplicate city: punta arenas,cl
city generated: soe,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A280E48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 57.91, 'lon': 26.05},
'dt': 1520398200,
'id': 587876,
'main': {'humidity': 78,
'pressure': 1006,
'temp': -12,
'temp_max': -12,
'temp_min': -12},
'name': 'Soe',
'sys': {'country': 'EE',
'id': 5015,
'message': 0.0256,
'sunrise': 1520398436,
'sunset': 1520438445,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 50, 'speed': 2.1}}
duplicate city: ushuaia,ar
duplicate city: jamestown,sh
duplicate city: tasiilaq,gl
duplicate city: cape town,za
city generated: neuquen,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992A3C8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mys shmidta,ru
duplicate city: bredasdorp,za
city generated: ormara,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC3F8D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: ushuaia,ar
duplicate city: bubaque,gw
duplicate city: albany,au
duplicate city: rikitea,pf
city generated: grimari,cf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BE3F28>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: barrow,us
duplicate city: rikitea,pf
city generated: nichinan,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A57FCC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 31.65, 'lon': 131.31},
'dt': 1520395200,
'id': 1855476,
'main': {'humidity': 82,
'pressure': 1024,
'temp': 13,
'temp_max': 13,
'temp_min': 13},
'name': 'Nichinan',
'sys': {'country': 'JP',
'id': 7549,
'message': 0.0067,
'sunrise': 1520372107,
'sunset': 1520414217,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'volcanic ash',
'icon': '50d',
'id': 762,
'main': 'Ash'}],
'wind': {'deg': 30, 'speed': 10.3}}
duplicate city: new norfolk,au
duplicate city: severo-kurilsk,ru
duplicate city: saldanha,za
duplicate city: severo-kurilsk,ru
duplicate city: ushuaia,ar
duplicate city: taolanaro,mg
duplicate city: bluff,nz
city generated: zaoyang,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CA49E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 32.12, 'lon': 112.76},
'dt': 1520400444,
'id': 1785462,
'main': {'grnd_level': 1022.29,
'humidity': 81,
'pressure': 1022.29,
'sea_level': 1040.83,
'temp': 8.4,
'temp_max': 8.4,
'temp_min': 8.4},
'name': 'Zaoyang',
'sys': {'country': 'CN',
'message': 0.0033,
'sunrise': 1520376568,
'sunset': 1520418658},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 1.50095, 'speed': 3.66}}
duplicate city: hermanus,za
duplicate city: fortuna,us
duplicate city: nikolskoye,ru
city generated: severo-yeniseyskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B071780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: port elizabeth,za
duplicate city: saint-georges,gf
duplicate city: hilo,us
duplicate city: khatanga,ru
duplicate city: rikitea,pf
city generated: kampene,cd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BDBCF8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -3.59, 'lon': 26.67},
'dt': 1520400445,
'id': 214575,
'main': {'grnd_level': 944.15,
'humidity': 88,
'pressure': 944.15,
'sea_level': 1025.51,
'temp': 21.8,
'temp_max': 21.8,
'temp_min': 21.8},
'name': 'Kampene',
'sys': {'country': 'CD',
'message': 0.004,
'sunrise': 1520396381,
'sunset': 1520440130},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 95.0009, 'speed': 1.31}}
duplicate city: mahebourg,mu
duplicate city: ushuaia,ar
duplicate city: illoqqortoormiut,gl
city generated: myingyan,mm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7A06D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 21.46, 'lon': 95.39},
'dt': 1520397000,
'id': 1307835,
'main': {'humidity': 39,
'pressure': 1012,
'temp': 29,
'temp_max': 29,
'temp_min': 29},
'name': 'Myingyan',
'sys': {'country': 'MM',
'id': 7863,
'message': 0.0035,
'sunrise': 1520380456,
'sunset': 1520423097,
'type': 1},
'visibility': 6000,
'weather': [{'description': 'haze', 'icon': '50d', 'id': 721, 'main': 'Haze'}],
'wind': {'deg': 310, 'speed': 4.1}}
duplicate city: caravelas,br
duplicate city: new norfolk,au
duplicate city: mahebourg,mu
city generated: bargi,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2DF668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 22.99, 'lon': 79.88},
'dt': 1520400445,
'id': 1276982,
'main': {'grnd_level': 970.49,
'humidity': 44,
'pressure': 970.49,
'sea_level': 1027.05,
'temp': 28.8,
'temp_max': 28.8,
'temp_min': 28.8},
'name': 'Bargi',
'sys': {'country': 'IN',
'message': 0.0075,
'sunrise': 1520384213,
'sunset': 1520426784},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 44.0009, 'speed': 2.56}}
duplicate city: albany,au
duplicate city: samusu,ws
city generated: xining,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C993C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 36.62, 'lon': 101.77},
'dt': 1520400366,
'id': 1788852,
'main': {'grnd_level': 748.87,
'humidity': 29,
'pressure': 748.87,
'sea_level': 1036.58,
'temp': 4.7,
'temp_max': 4.7,
'temp_min': 4.7},
'name': 'Xining',
'sys': {'country': 'CN',
'message': 0.0046,
'sunrise': 1520379338,
'sunset': 1520421168},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 311.501, 'speed': 2.76}}
duplicate city: mar del plata,ar
duplicate city: norman wells,ca
duplicate city: tual,id
city generated: altay,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C3AF60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 47.83, 'lon': 88.13},
'dt': 1520400446,
'id': 1529651,
'main': {'grnd_level': 824.58,
'humidity': 64,
'pressure': 824.58,
'sea_level': 1038.6,
'temp': -1.38,
'temp_max': -1.38,
'temp_min': -1.38},
'name': 'Altay',
'sys': {'country': 'CN',
'message': 0.0041,
'sunrise': 1520383019,
'sunset': 1520424049},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 141.501, 'speed': 0.96}}
duplicate city: ushuaia,ar
city generated: pombas,cv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D64278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -15.9, 'lon': -54.74},
'dt': 1520400446,
'id': 3448350,
'main': {'grnd_level': 981.11,
'humidity': 94,
'pressure': 981.11,
'sea_level': 1022.27,
'temp': 23.3,
'temp_max': 23.3,
'temp_min': 23.3},
'name': 'Pombas',
'sys': {'country': 'BR',
'message': 0.0049,
'sunrise': 1520415635,
'sunset': 1520459936},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 255.501, 'speed': 1.21}}
duplicate city: jamestown,sh
duplicate city: san luis,ar
duplicate city: airai,pw
duplicate city: puerto ayora,ec
duplicate city: yellowknife,ca
city generated: acarau,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A28C88>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: el alto,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9BEB70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -16.5, 'lon': -68.19},
'dt': 1520395200,
'id': 3911925,
'main': {'humidity': 87,
'pressure': 1037,
'temp': 7,
'temp_max': 7,
'temp_min': 7},
'name': 'El Alto',
'sys': {'country': 'BO',
'id': 4426,
'message': 0.0038,
'sunrise': 1520418849,
'sunset': 1520463176,
'type': 1},
'visibility': 4000,
'weather': [{'description': 'fog', 'icon': '50n', 'id': 741, 'main': 'Fog'}],
'wind': {'deg': 90, 'speed': 2.6}}
duplicate city: ushuaia,ar
city generated: arroyo,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6658D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 41.39, 'lon': -78.88},
'dt': 1520398440,
'id': 5208292,
'main': {'humidity': 86,
'pressure': 1005,
'temp': -1.32,
'temp_max': -1,
'temp_min': -2},
'name': 'Arroyo',
'sys': {'country': 'US',
'id': 2342,
'message': 0.0097,
'sunrise': 1520422804,
'sunset': 1520464406,
'type': 1},
'visibility': 8047,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 100, 'speed': 4.1}}
duplicate city: katsuura,jp
duplicate city: taolanaro,mg
duplicate city: kapaa,us
duplicate city: saint-philippe,re
duplicate city: mataura,pf
city generated: mataundh,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3B8B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.44, 'lon': 80.16},
'dt': 1520400448,
'id': 1263384,
'main': {'grnd_level': 1007.7,
'humidity': 34,
'pressure': 1007.7,
'sea_level': 1026.97,
'temp': 29.8,
'temp_max': 29.8,
'temp_min': 29.8},
'name': 'Mataundh',
'sys': {'country': 'IN',
'message': 0.0049,
'sunrise': 1520384207,
'sunset': 1520426658},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 275.001, 'speed': 3.11}}
duplicate city: saint george,bm
duplicate city: kaitangata,nz
duplicate city: bambous virieux,mu
duplicate city: tual,id
duplicate city: arraial do cabo,br
duplicate city: souillac,mu
duplicate city: ushuaia,ar
duplicate city: rikitea,pf
duplicate city: mataura,pf
duplicate city: mataura,pf
city generated: chicama,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9BBA90>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -7.84, 'lon': -79.15},
'dt': 1520395200,
'id': 3698359,
'main': {'humidity': 88,
'pressure': 1011,
'temp': 19,
'temp_max': 19,
'temp_min': 19},
'name': 'Chicama',
'sys': {'country': 'PE',
'id': 4404,
'message': 0.0041,
'sunrise': 1520421681,
'sunset': 1520465611,
'type': 1},
'visibility': 6000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 150, 'speed': 2.6}}
duplicate city: hilo,us
duplicate city: ancud,cl
duplicate city: saint-philippe,re
duplicate city: sentyabrskiy,ru
duplicate city: illoqqortoormiut,gl
duplicate city: taolanaro,mg
city generated: puerto el triunfo,sv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B18A9E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 13.27, 'lon': -88.55},
'dt': 1520398200,
'id': 3584003,
'main': {'humidity': 83,
'pressure': 1012,
'temp': 24,
'temp_max': 24,
'temp_min': 24},
'name': 'Puerto El Triunfo',
'sys': {'country': 'SV',
'id': 4204,
'message': 0.0036,
'sunrise': 1520424392,
'sunset': 1520467430,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 40, 'speed': 2.1}}
duplicate city: arraial do cabo,br
city generated: minas,uy
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6E74E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -34.38, 'lon': -55.24},
'dt': 1520395200,
'id': 3441665,
'main': {'humidity': 59,
'pressure': 1016,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'Minas',
'sys': {'country': 'UY',
'id': 4620,
'message': 0.0034,
'sunrise': 1520415226,
'sunset': 1520460565,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 180, 'speed': 5.1}}
city generated: raudeberg,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A961048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 61.99, 'lon': 5.14},
'dt': 1520398200,
'id': 3146487,
'main': {'humidity': 63,
'pressure': 997,
'temp': -3.02,
'temp_max': -2,
'temp_min': -4},
'name': 'Raudeberg',
'sys': {'country': 'NO',
'id': 5290,
'message': 0.0037,
'sunrise': 1520403754,
'sunset': 1520443175,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 70, 'speed': 2.1}}
duplicate city: tsihombe,mg
duplicate city: tsihombe,mg
duplicate city: rikitea,pf
city generated: chaozhou,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C475F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 23.66, 'lon': 116.62},
'dt': 1520395200,
'id': 1815395,
'main': {'humidity': 60,
'pressure': 1018,
'temp': 21,
'temp_max': 21,
'temp_min': 21},
'name': 'Chaozhou',
'sys': {'country': 'CN',
'id': 7418,
'message': 0.0058,
'sunrise': 1520375418,
'sunset': 1520417948,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 200, 'speed': 4}}
duplicate city: taolanaro,mg
duplicate city: vaitupu,wf
duplicate city: katsuura,jp
duplicate city: kodiak,us
city generated: rolla,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5CD588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 37.95, 'lon': -91.77},
'dt': 1520400060,
'id': 4406282,
'main': {'humidity': 64,
'pressure': 1017,
'temp': 1.36,
'temp_max': 2,
'temp_min': 1},
'name': 'Rolla',
'sys': {'country': 'US',
'id': 1641,
'message': 0.0039,
'sunrise': 1520425783,
'sunset': 1520467609,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 300, 'gust': 10.8, 'speed': 6.7}}
duplicate city: ponta do sol,cv
duplicate city: sentyabrskiy,ru
city generated: urumqi,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C907B8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: talnakh,ru
duplicate city: albany,au
duplicate city: alofi,nu
duplicate city: belushya guba,ru
duplicate city: punta arenas,cl
city generated: arvin,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2DE2B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 35.21, 'lon': -118.83},
'dt': 1520398500,
'id': 5324903,
'main': {'humidity': 47,
'pressure': 1018,
'temp': 9.51,
'temp_max': 14,
'temp_min': 4},
'name': 'Arvin',
'sys': {'country': 'US',
'id': 353,
'message': 0.0161,
'sunrise': 1520432189,
'sunset': 1520474186,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 60, 'speed': 2.1}}
duplicate city: tuktoyaktuk,ca
duplicate city: luang prabang,la
duplicate city: ilulissat,gl
duplicate city: clyde river,ca
duplicate city: kapaa,us
duplicate city: vaini,to
duplicate city: atuona,pf
duplicate city: ushuaia,ar
duplicate city: new norfolk,au
duplicate city: rikitea,pf
duplicate city: bethel,us
duplicate city: ilulissat,gl
duplicate city: georgetown,sh
duplicate city: butaritari,ki
duplicate city: mar del plata,ar
duplicate city: tommot,ru
duplicate city: barrow,us
duplicate city: georgetown,sh
city generated: monrovia,lr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A73C0B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 6.33, 'lon': -10.8},
'dt': 1520395200,
'id': 2274895,
'main': {'humidity': 94,
'pressure': 1010,
'temp': 24,
'temp_max': 24,
'temp_min': 24},
'name': 'Monrovia',
'sys': {'country': 'LR',
'id': 6130,
'message': 0.0047,
'sunrise': 1520405588,
'sunset': 1520448914,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 40, 'speed': 1.5}}
city generated: lengshuitan,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C6C7F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: jamestown,sh
duplicate city: georgetown,sh
duplicate city: taolanaro,mg
duplicate city: hermanus,za
duplicate city: ancud,cl
duplicate city: jamestown,sh
duplicate city: mataura,pf
duplicate city: vao,nc
duplicate city: barrow,us
duplicate city: palabuhanratu,id
duplicate city: vardo,no
duplicate city: punta arenas,cl
duplicate city: dikson,ru
duplicate city: lompoc,us
duplicate city: mar del plata,ar
duplicate city: hofn,is
duplicate city: tiksi,ru
duplicate city: avarua,ck
duplicate city: rikitea,pf
duplicate city: belushya guba,ru
duplicate city: attawapiskat,ca
duplicate city: kapaa,us
city generated: rab,hr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A1CB080>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: yellowknife,ca
duplicate city: auki,sb
duplicate city: port alfred,za
duplicate city: punta arenas,cl
duplicate city: victoria,sc
duplicate city: broome,au
duplicate city: bubaque,gw
duplicate city: ushuaia,ar
duplicate city: new norfolk,au
city generated: thisted,dk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19ECA860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': 56.96, 'lon': 8.68},
'dt': 1520400453,
'id': 2611755,
'main': {'grnd_level': 1008.83,
'humidity': 100,
'pressure': 1008.83,
'sea_level': 1009.5,
'temp': -0.03,
'temp_max': -0.03,
'temp_min': -0.03},
'name': 'Thisted',
'sys': {'country': 'DK',
'message': 0.0032,
'sunrise': 1520402535,
'sunset': 1520442681},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 103.001, 'speed': 7.16}}
city generated: khem karan,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A384E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 31.14, 'lon': 74.56},
'dt': 1520398500,
'id': 1266787,
'main': {'humidity': 38,
'pressure': 1014,
'temp': 28.17,
'temp_max': 31,
'temp_min': 24},
'name': 'Khem Karan',
'sys': {'country': 'IN',
'id': 7133,
'message': 0.0048,
'sunrise': 1520385701,
'sunset': 1520427858,
'type': 1},
'visibility': 4000,
'weather': [{'description': 'haze', 'icon': '50d', 'id': 721, 'main': 'Haze'},
{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 320, 'speed': 2.1}}
duplicate city: belushya guba,ru
duplicate city: umm kaddadah,sd
duplicate city: albany,au
duplicate city: yellowknife,ca
duplicate city: albany,au
duplicate city: kaitangata,nz
city generated: vila do maio,cv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D64898>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: victoria,sc
city generated: mergui,mm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7A0198>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hobart,au
duplicate city: atuona,pf
duplicate city: punta arenas,cl
duplicate city: busselton,au
duplicate city: nikolskoye,ru
city generated: lovozero,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFBA828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 68.01, 'lon': 35.02},
'dt': 1520400455,
'id': 533933,
'main': {'grnd_level': 990.51,
'humidity': 52,
'pressure': 990.51,
'sea_level': 1031.75,
'temp': -23.53,
'temp_max': -23.53,
'temp_min': -23.53},
'name': 'Lovozero',
'sys': {'country': 'RU',
'message': 0.0046,
'sunrise': 1520397246,
'sunset': 1520435365},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 269.501, 'speed': 1.16}}
duplicate city: avarua,ck
duplicate city: guerrero negro,mx
duplicate city: turbat,pk
duplicate city: illoqqortoormiut,gl
city generated: prainha,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B04DA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': -1.8, 'lon': -53.48},
'dt': 1520400455,
'id': 3391287,
'main': {'grnd_level': 1018.96,
'humidity': 90,
'pressure': 1018.96,
'sea_level': 1023.44,
'temp': 25.18,
'temp_max': 25.18,
'temp_min': 25.18},
'name': 'Prainha',
'sys': {'country': 'BR',
'message': 0.0032,
'sunrise': 1520415654,
'sunset': 1520459324},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 38.5009, 'speed': 1.36}}
duplicate city: new norfolk,au
duplicate city: cayenne,gf
city generated: tucuman,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992CFD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': -17.17, 'lon': -70.89},
'dt': 1520400456,
'id': 3934608,
'main': {'grnd_level': 843.23,
'humidity': 85,
'pressure': 843.23,
'sea_level': 1024.13,
'temp': 11.08,
'temp_max': 11.08,
'temp_min': 11.08},
'name': 'Tucuman',
'sys': {'country': 'PE',
'message': 0.0036,
'sunrise': 1520419480,
'sunset': 1520463840},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 75.0009, 'speed': 1.06}}
duplicate city: narsaq,gl
duplicate city: pevek,ru
duplicate city: busselton,au
duplicate city: vaini,to
duplicate city: kapaa,us
city generated: hanover,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5DD470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 52.37, 'lon': 9.74},
'dt': 1520398200,
'id': 3221033,
'main': {'humidity': 92,
'pressure': 992,
'temp': -0.19,
'temp_max': 1,
'temp_min': -1},
'name': 'Hanover',
'sys': {'country': 'DE',
'id': 4893,
'message': 0.0038,
'sunrise': 1520402019,
'sunset': 1520442678,
'type': 1},
'visibility': 3200,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'},
{'description': 'snow', 'icon': '13n', 'id': 601, 'main': 'Snow'}],
'wind': {'deg': 40, 'speed': 1}}
duplicate city: hilo,us
duplicate city: san patricio,mx
duplicate city: praia da vitoria,pt
duplicate city: san quintin,mx
duplicate city: poum,nc
duplicate city: kapaa,us
duplicate city: tiksi,ru
duplicate city: sentyabrskiy,ru
duplicate city: ushuaia,ar
duplicate city: saint george,bm
city generated: turukhansk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0CA6D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 65.8, 'lon': 87.96},
'dt': 1520400457,
'id': 1488903,
'main': {'grnd_level': 1006.81,
'humidity': 83,
'pressure': 1006.81,
'sea_level': 1021.94,
'temp': -8.95,
'temp_max': -8.95,
'temp_min': -8.95},
'name': 'Turukhansk',
'sys': {'country': 'RU',
'message': 0.004,
'sunrise': 1520384301,
'sunset': 1520422894},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 128.501, 'speed': 9.76}}
city generated: galveston,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A696208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 40.58, 'lon': -86.19},
'dt': 1520399280,
'id': 4920577,
'main': {'humidity': 100,
'pressure': 1006,
'temp': 0.57,
'temp_max': 1,
'temp_min': 0},
'name': 'Galveston',
'sys': {'country': 'US',
'id': 1032,
'message': 0.0041,
'sunrise': 1520424529,
'sunset': 1520466188,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 250, 'speed': 4.6}}
duplicate city: rikitea,pf
duplicate city: atuona,pf
city generated: forssa,fi
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F66C50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 60.82, 'lon': 23.63},
'dt': 1520398200,
'id': 659936,
'main': {'humidity': 71,
'pressure': 1009,
'temp': -15,
'temp_max': -15,
'temp_min': -15},
'name': 'Forssa',
'sys': {'country': 'FI',
'id': 5045,
'message': 0.0037,
'sunrise': 1520399229,
'sunset': 1520438822,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 50, 'speed': 2.6}}
duplicate city: iqaluit,ca
duplicate city: isangel,vu
duplicate city: belushya guba,ru
city generated: pringsewu,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A277A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -5.36, 'lon': 104.98},
'dt': 1520400458,
'id': 1630639,
'main': {'grnd_level': 996.59,
'humidity': 88,
'pressure': 996.59,
'sea_level': 1021.86,
'temp': 28.15,
'temp_max': 28.15,
'temp_min': 28.15},
'name': 'Pringsewu',
'rain': {'3h': 0.555},
'sys': {'country': 'ID',
'message': 0.0093,
'sunrise': 1520377548,
'sunset': 1520421379},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 237.001, 'speed': 1.31}}
duplicate city: puerto ayora,ec
city generated: trapani,it
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A52C198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 38.02, 'lon': 12.54},
'dt': 1520398200,
'id': 6542155,
'main': {'humidity': 71,
'pressure': 1006,
'temp': 13,
'temp_max': 13,
'temp_min': 13},
'name': 'Trapani',
'sys': {'country': 'IT',
'id': 5766,
'message': 0.0037,
'sunrise': 1520400776,
'sunset': 1520442555,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 200, 'speed': 5.7}}
duplicate city: east london,za
duplicate city: barrow,us
duplicate city: walvis bay,na
duplicate city: illoqqortoormiut,gl
duplicate city: avera,pf
duplicate city: rikitea,pf
duplicate city: campbell river,ca
city generated: lons,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FBA6D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 43.32, 'lon': -0.41},
'dt': 1520398800,
'id': 2997628,
'main': {'humidity': 86,
'pressure': 1004,
'temp': 5.27,
'temp_max': 6,
'temp_min': 4},
'name': 'Lons',
'sys': {'country': 'FR',
'id': 5536,
'message': 0.004,
'sunrise': 1520404061,
'sunset': 1520445492,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'moderate rain',
'icon': '10n',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 290, 'speed': 7.7}}
city generated: novikovo,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFFAB70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 45.05, 'lon': 34.56},
'dt': 1520400459,
'id': 712587,
'main': {'grnd_level': 987.68,
'humidity': 92,
'pressure': 987.68,
'sea_level': 1018.82,
'temp': 8.88,
'temp_max': 8.88,
'temp_min': 8.88},
'name': 'Novikovo',
'rain': {'3h': 0.635},
'sys': {'country': 'UA',
'message': 0.0038,
'sunrise': 1520395744,
'sunset': 1520437029},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 202.001, 'speed': 4.86}}
duplicate city: ponta do sol,cv
duplicate city: bredasdorp,za
city generated: horta,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACA8FD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 41.43, 'lon': 2.16},
'dt': 1520398800,
'id': 3128760,
'main': {'humidity': 93,
'pressure': 1002,
'temp': 5.02,
'temp_max': 6,
'temp_min': 4},
'name': 'Horta',
'sys': {'country': 'ES',
'id': 5485,
'message': 0.0034,
'sunrise': 1520403377,
'sunset': 1520444940,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 307.001, 'speed': 7.51}}
duplicate city: belushya guba,ru
duplicate city: hobart,au
duplicate city: roebourne,au
duplicate city: saint anthony,ca
duplicate city: taolanaro,mg
duplicate city: katsuura,jp
duplicate city: dunedin,nz
duplicate city: butaritari,ki
duplicate city: bluff,nz
duplicate city: evensk,ru
duplicate city: port elizabeth,za
duplicate city: college,us
city generated: shimoda,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A595940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 34.7, 'lon': 138.93},
'dt': 1520395200,
'id': 1852357,
'main': {'humidity': 100,
'pressure': 1031,
'temp': 8,
'temp_max': 8,
'temp_min': 8},
'name': 'Shimoda',
'sys': {'country': 'JP',
'id': 7616,
'message': 0.0039,
'sunrise': 1520370369,
'sunset': 1520412301,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 30, 'speed': 8.7}}
city generated: belyy yar,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AED9B38>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: arraial do cabo,br
duplicate city: avarua,ck
duplicate city: nizhneyansk,ru
duplicate city: ribeira grande,pt
duplicate city: isangel,vu
duplicate city: zhigansk,ru
duplicate city: hithadhoo,mv
duplicate city: alofi,nu
city generated: brigantine,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5E5780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: sinnamary,gf
duplicate city: pisco,pe
duplicate city: illoqqortoormiut,gl
duplicate city: ushuaia,ar
duplicate city: thompson,ca
duplicate city: pevek,ru
duplicate city: taolanaro,mg
duplicate city: albany,au
duplicate city: upernavik,gl
duplicate city: illoqqortoormiut,gl
duplicate city: albany,au
duplicate city: pevek,ru
city generated: nchelenge,zm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6DF128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -9.35, 'lon': 28.74},
'dt': 1520400461,
'id': 175499,
'main': {'grnd_level': 909.54,
'humidity': 97,
'pressure': 909.54,
'sea_level': 1024.62,
'temp': 21.08,
'temp_max': 21.08,
'temp_min': 21.08},
'name': 'Nchelenge',
'sys': {'country': 'ZM',
'message': 0.0042,
'sunrise': 1520395754,
'sunset': 1520439759},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 42.5009, 'speed': 1.46}}
duplicate city: rocha,uy
city generated: malanje,ao
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199242E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -9.54, 'lon': 16.35},
'dt': 1520400462,
'id': 2239862,
'main': {'grnd_level': 906.78,
'humidity': 91,
'pressure': 906.78,
'sea_level': 1025.59,
'temp': 15.3,
'temp_max': 15.3,
'temp_min': 15.3},
'name': 'Malanje',
'sys': {'country': 'AO',
'message': 0.0072,
'sunrise': 1520398723,
'sunset': 1520442736},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 290.001, 'speed': 1.06}}
city generated: ibotirama,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A95F98>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -12.18, 'lon': -43.22},
'dt': 1520400462,
'id': 3461525,
'main': {'grnd_level': 965.06,
'humidity': 98,
'pressure': 965.06,
'sea_level': 1022.31,
'temp': 21.73,
'temp_max': 21.73,
'temp_min': 21.73},
'name': 'Ibotirama',
'sys': {'country': 'BR',
'message': 0.0043,
'sunrise': 1520412959,
'sunset': 1520457087},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 6.00095, 'speed': 1.31}}
city generated: chumikan,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF05E10>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: esil,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A71F9E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 51.96, 'lon': 66.41},
'dt': 1520400463,
'id': 1524296,
'main': {'grnd_level': 993.92,
'humidity': 77,
'pressure': 993.92,
'sea_level': 1028.55,
'temp': -11.85,
'temp_max': -11.85,
'temp_min': -11.85},
'name': 'Esil',
'sys': {'country': 'KZ',
'message': 0.0032,
'sunrise': 1520388418,
'sunset': 1520429081},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 270.001, 'speed': 9.16}}
city generated: puerto penasco,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A864CF8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: shimoda,jp
duplicate city: buraydah,sa
duplicate city: gravelbourg,ca
duplicate city: cidreira,br
city generated: behbahan,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A475F98>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 30.59, 'lon': 50.24},
'dt': 1520398800,
'id': 140951,
'main': {'humidity': 52,
'pressure': 1015,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'Behbahan',
'sys': {'country': 'IR',
'id': 7014,
'message': 0.0038,
'sunrise': 1520391518,
'sunset': 1520433712,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 55.0009, 'speed': 1.61}}
duplicate city: saleaula,ws
duplicate city: rikitea,pf
duplicate city: sioux lookout,ca
duplicate city: cabo san lucas,mx
city generated: caxito,ao
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19922630>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -22.65, 'lon': -42.51},
'dt': 1520400464,
'id': 3451261,
'main': {'grnd_level': 1010.13,
'humidity': 97,
'pressure': 1010.13,
'sea_level': 1023.24,
'temp': 20.53,
'temp_max': 20.53,
'temp_min': 20.53},
'name': 'Caxito',
'sys': {'country': 'BR',
'message': 0.0082,
'sunrise': 1520412526,
'sunset': 1520457168},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 309.001, 'speed': 1.26}}
duplicate city: butaritari,ki
duplicate city: vostok,ru
city generated: barranca,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9B7780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': -10.75, 'lon': -77.76},
'dt': 1520400465,
'id': 3946820,
'main': {'grnd_level': 1019.86,
'humidity': 96,
'pressure': 1019.86,
'sea_level': 1024.33,
'temp': 18.55,
'temp_max': 18.55,
'temp_min': 18.55},
'name': 'Barranca',
'sys': {'country': 'PE',
'message': 0.0043,
'sunrise': 1520421282,
'sunset': 1520465341},
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 158.001, 'speed': 1.86}}
duplicate city: cape town,za
duplicate city: chokurdakh,ru
duplicate city: merauke,id
duplicate city: ushuaia,ar
duplicate city: nhulunbuy,au
city generated: balikpapan,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2511D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -1.24, 'lon': 116.86},
'dt': 1520400465,
'id': 1650527,
'main': {'grnd_level': 1021.64,
'humidity': 100,
'pressure': 1021.64,
'sea_level': 1022.35,
'temp': 25.05,
'temp_max': 25.05,
'temp_min': 25.05},
'name': 'Balikpapan',
'rain': {'3h': 7.905},
'sys': {'country': 'ID',
'message': 0.0031,
'sunrise': 1520374790,
'sunset': 1520418439},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 260.001, 'speed': 2.56}}
duplicate city: georgetown,sh
duplicate city: belushya guba,ru
city generated: erzurum,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1EA6A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 39.91, 'lon': 41.27},
'dt': 1520398200,
'id': 315368,
'main': {'humidity': 100,
'pressure': 1017,
'temp': 1,
'temp_max': 1,
'temp_min': 1},
'name': 'Erzurum',
'sys': {'country': 'TR',
'id': 6066,
'message': 0.0043,
'sunrise': 1520393950,
'sunset': 1520435596,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 70, 'speed': 1.5}}
duplicate city: luwuk,id
duplicate city: bambous virieux,mu
duplicate city: mataura,pf
duplicate city: butaritari,ki
duplicate city: san quintin,mx
duplicate city: cape town,za
city generated: safwah,sa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B12FCC0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: butaritari,ki
duplicate city: arraial do cabo,br
city generated: kigorobya,ug
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2BA240>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 1.62, 'lon': 31.31},
'dt': 1520400466,
'id': 231426,
'main': {'grnd_level': 936.45,
'humidity': 100,
'pressure': 936.45,
'sea_level': 1025.35,
'temp': 22.33,
'temp_max': 22.33,
'temp_min': 22.33},
'name': 'Kigorobya',
'rain': {'3h': 0.505},
'sys': {'country': 'UG',
'message': 0.0029,
'sunrise': 1520395382,
'sunset': 1520438907},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 224.501, 'speed': 4.46}}
duplicate city: monroe,us
duplicate city: saint george,bm
duplicate city: jalu,ly
duplicate city: haibowan,cn
duplicate city: ngunguru,nz
duplicate city: margate,za
duplicate city: mataura,pf
city generated: calca,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9B7D30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -13.32, 'lon': -71.96},
'dt': 1520395200,
'id': 3946177,
'main': {'humidity': 76,
'pressure': 1031,
'temp': 11,
'temp_max': 11,
'temp_min': 11},
'name': 'Calca',
'sys': {'country': 'PE',
'id': 4413,
'message': 0.0032,
'sunrise': 1520419830,
'sunset': 1520464007,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 340.001, 'speed': 0.21}}
duplicate city: ushuaia,ar
duplicate city: barentsburg,sj
duplicate city: albany,au
city generated: say,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E9A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 13.1, 'lon': 2.36},
'dt': 1520398800,
'id': 2439812,
'main': {'humidity': 49,
'pressure': 1009,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Say',
'sys': {'country': 'NE',
'id': 6308,
'message': 0.0081,
'sunrise': 1520402579,
'sunset': 1520445613,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 360, 'speed': 3.6}}
duplicate city: ushuaia,ar
duplicate city: kapaa,us
duplicate city: bredasdorp,za
duplicate city: illoqqortoormiut,gl
duplicate city: bambous virieux,mu
duplicate city: kodiak,us
duplicate city: rikitea,pf
city generated: chapleau,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B7D1D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 47.85, 'lon': -83.4},
'dt': 1520400467,
'id': 5919915,
'main': {'grnd_level': 973.41,
'humidity': 83,
'pressure': 973.41,
'sea_level': 1028.39,
'temp': -8.6,
'temp_max': -8.6,
'temp_min': -8.6},
'name': 'Chapleau',
'sys': {'country': 'CA',
'message': 0.0032,
'sunrise': 1520424130,
'sunset': 1520465258},
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 32.5009, 'speed': 3.41}}
duplicate city: ushuaia,ar
duplicate city: illoqqortoormiut,gl
city generated: bandarbeyla,so
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B17BCC0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: kerteh,my
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8CA550>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
duplicate city: castro,cl
duplicate city: puerto ayora,ec
duplicate city: barentsburg,sj
duplicate city: lebu,cl
duplicate city: rikitea,pf
duplicate city: ushuaia,ar
duplicate city: namibe,ao
duplicate city: sitka,us
duplicate city: puerto escondido,mx
city generated: povenets,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0407F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vaitupu,wf
duplicate city: powell river,ca
duplicate city: bredasdorp,za
duplicate city: chokurdakh,ru
duplicate city: qaanaaq,gl
duplicate city: samusu,ws
duplicate city: ambilobe,mg
duplicate city: puri,in
duplicate city: puerto ayora,ec
duplicate city: yellowknife,ca
duplicate city: mahebourg,mu
duplicate city: mount isa,au
duplicate city: vaini,to
duplicate city: bredasdorp,za
duplicate city: faanui,pf
duplicate city: ushuaia,ar
duplicate city: nanortalik,gl
duplicate city: thompson,ca
duplicate city: hasaki,jp
duplicate city: busselton,au
duplicate city: nikolskoye,ru
duplicate city: mar del plata,ar
duplicate city: atuona,pf
duplicate city: hobart,au
duplicate city: yellowknife,ca
duplicate city: bredasdorp,za
duplicate city: port lincoln,au
duplicate city: punta arenas,cl
duplicate city: punta arenas,cl
duplicate city: ponta do sol,cv
duplicate city: ribeira grande,pt
duplicate city: puerto ayora,ec
duplicate city: hobart,au
city generated: salcininkai,lt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A745E10>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: provideniya,ru
duplicate city: saldanha,za
duplicate city: barrow,us
duplicate city: punta arenas,cl
duplicate city: port alfred,za
duplicate city: hobart,au
duplicate city: hobart,au
duplicate city: antofagasta,cl
city generated: sisian,am
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF198279E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 39.53, 'lon': 46.03},
'dt': 1520398800,
'id': 174972,
'main': {'humidity': 81,
'pressure': 1014,
'temp': 7,
'temp_max': 7,
'temp_min': 7},
'name': 'Sisian',
'sys': {'country': 'AM',
'id': 7215,
'message': 0.0031,
'sunrise': 1520392796,
'sunset': 1520434465,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'speed': 1}}
duplicate city: grand river south east,mu
duplicate city: rikitea,pf
city generated: voloiac,ro
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AE7DBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 44.62, 'lon': 23.1},
'dt': 1520398800,
'id': 665997,
'main': {'humidity': 100,
'pressure': 999,
'temp': 1,
'temp_max': 1,
'temp_min': 1},
'name': 'Voloiac',
'sys': {'country': 'RO',
'id': 5991,
'message': 0.0041,
'sunrise': 1520398474,
'sunset': 1520439798,
'type': 1},
'visibility': 200,
'weather': [{'description': 'fog', 'icon': '50d', 'id': 741, 'main': 'Fog'}],
'wind': {'deg': 230, 'speed': 1}}
duplicate city: illoqqortoormiut,gl
duplicate city: amazar,ru
duplicate city: taolanaro,mg
duplicate city: cape town,za
duplicate city: half moon bay,us
duplicate city: rikitea,pf
city generated: cascais,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC9ECC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 38.7, 'lon': -9.42},
'dt': 1520398800,
'id': 2269594,
'main': {'humidity': 93,
'pressure': 1010,
'temp': 5.49,
'temp_max': 6,
'temp_min': 5},
'name': 'Cascais',
'sys': {'country': 'PT',
'id': 5961,
'message': 0.0046,
'sunrise': 1520406063,
'sunset': 1520447808,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'speed': 1.5}}
duplicate city: jamestown,sh
duplicate city: albany,au
city generated: los llanos de aridane,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F35B70>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: saint anthony,ca
duplicate city: saskylakh,ru
duplicate city: hermanus,za
duplicate city: punta arenas,cl
duplicate city: jamestown,sh
city generated: porto walter,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B049B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': -8.27, 'lon': -72.74},
'dt': 1520400471,
'id': 3662761,
'main': {'grnd_level': 998.13,
'humidity': 97,
'pressure': 998.13,
'sea_level': 1022.31,
'temp': 23.48,
'temp_max': 23.48,
'temp_min': 23.48},
'name': 'Porto Walter',
'sys': {'country': 'BR',
'message': 0.0033,
'sunrise': 1520420133,
'sunset': 1520464083},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 295.001, 'speed': 0.96}}
duplicate city: ushuaia,ar
duplicate city: taolanaro,mg
duplicate city: guerrero negro,mx
duplicate city: faanui,pf
duplicate city: busselton,au
duplicate city: hobart,au
city generated: ampanihy,mg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A77C160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': -24.69, 'lon': 44.75},
'dt': 1520400472,
'id': 1078553,
'main': {'grnd_level': 990.03,
'humidity': 80,
'pressure': 990.03,
'sea_level': 1022.67,
'temp': 24.43,
'temp_max': 24.43,
'temp_min': 24.43},
'name': 'Ampanihy',
'rain': {'3h': 0.135},
'sys': {'country': 'MG',
'message': 0.004,
'sunrise': 1520391521,
'sunset': 1520436294},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 166.501, 'speed': 3.51}}
duplicate city: kodiak,us
city generated: ambulu,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A24F940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -8.35, 'lon': 113.61},
'dt': 1520400472,
'id': 1621313,
'main': {'grnd_level': 1010.86,
'humidity': 100,
'pressure': 1010.86,
'sea_level': 1021.09,
'temp': 28.13,
'temp_max': 28.13,
'temp_min': 28.13},
'name': 'Ambulu',
'sys': {'country': 'ID',
'message': 0.0032,
'sunrise': 1520375408,
'sunset': 1520419375},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 211.501, 'speed': 2.66}}
duplicate city: poum,nc
duplicate city: port alfred,za
duplicate city: san quintin,mx
duplicate city: saint-pierre,pm
duplicate city: puerto ayora,ec
city generated: matara,lk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A735D30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -13.74, 'lon': -72.9},
'dt': 1520400473,
'id': 3948642,
'main': {'grnd_level': 671.54,
'humidity': 100,
'pressure': 671.54,
'sea_level': 1024.78,
'temp': 2.48,
'temp_max': 2.48,
'temp_min': 2.48},
'name': 'Matara',
'sys': {'country': 'PE',
'message': 0.0034,
'sunrise': 1520420046,
'sunset': 1520464242},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 170.501, 'speed': 0.21}}
duplicate city: tuktoyaktuk,ca
duplicate city: new norfolk,au
city generated: samarai,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E8470>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: north bend,us
duplicate city: bandarbeyla,so
duplicate city: iqaluit,ca
duplicate city: thompson,ca
duplicate city: taolanaro,mg
duplicate city: nishihara,jp
duplicate city: saint-philippe,re
duplicate city: paamiut,gl
city generated: kichera,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF6C400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 55.93, 'lon': 110.1},
'dt': 1520400474,
'id': 2022129,
'main': {'grnd_level': 935.56,
'humidity': 62,
'pressure': 935.56,
'sea_level': 1047.8,
'temp': -16.48,
'temp_max': -16.48,
'temp_min': -16.48},
'name': 'Kichera',
'sys': {'country': 'RU',
'message': 0.0033,
'sunrise': 1520378173,
'sunset': 1520418366},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 202.501, 'speed': 1.06}}
duplicate city: jamestown,sh
city generated: arras,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F7E4E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 50.29, 'lon': 2.78},
'dt': 1520398800,
'id': 3036784,
'main': {'humidity': 93,
'pressure': 990,
'temp': 4.5,
'temp_max': 5,
'temp_min': 4},
'name': 'Arras',
'sys': {'country': 'FR',
'id': 5522,
'message': 0.0078,
'sunrise': 1520403585,
'sunset': 1520444449,
'type': 1},
'visibility': 4000,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 130, 'speed': 1.5}}
duplicate city: hilo,us
duplicate city: bluff,nz
duplicate city: rikitea,pf
duplicate city: rikitea,pf
duplicate city: cockburn town,bs
duplicate city: vestmannaeyjar,is
city generated: lumphat,kh
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A712CC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 13.5, 'lon': 106.97},
'dt': 1520400474,
'id': 1830377,
'main': {'grnd_level': 1004.54,
'humidity': 49,
'pressure': 1004.54,
'sea_level': 1022.47,
'temp': 33.53,
'temp_max': 33.53,
'temp_min': 33.53},
'name': 'Lumphat',
'sys': {'country': 'KH',
'message': 0.0034,
'sunrise': 1520377492,
'sunset': 1520420496},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 102.501, 'speed': 1.41}}
duplicate city: port elizabeth,za
duplicate city: hithadhoo,mv
duplicate city: hilo,us
duplicate city: amderma,ru
duplicate city: hobart,au
duplicate city: hermanus,za
duplicate city: hobart,au
city generated: freeport,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A693E48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 26.54, 'lon': -78.7},
'dt': 1520400475,
'id': 3572375,
'main': {'grnd_level': 1029.1,
'humidity': 100,
'pressure': 1029.1,
'sea_level': 1029.24,
'temp': 22.7,
'temp_max': 22.7,
'temp_min': 22.7},
'name': 'Freeport',
'sys': {'country': 'BS',
'message': 0.0105,
'sunrise': 1520422335,
'sunset': 1520464772},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 205.001, 'speed': 6.61}}
city generated: bacuit,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AA09C88>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: warqla,dz
city generated: benavente,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F1C0F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 38.98, 'lon': -8.82},
'dt': 1520398800,
'id': 2270940,
'main': {'humidity': 93,
'pressure': 1010,
'temp': 5.5,
'temp_max': 6,
'temp_min': 5},
'name': 'Benavente',
'sys': {'country': 'PT',
'id': 5961,
'message': 0.009,
'sunrise': 1520405928,
'sunset': 1520447656,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'speed': 1.5}}
duplicate city: port alfred,za
duplicate city: ushuaia,ar
duplicate city: norman wells,ca
duplicate city: te anau,nz
duplicate city: thompson,ca
duplicate city: saint-philippe,re
city generated: rio gallegos,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992AEB8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: vaitupu,wf
city generated: pakxe,la
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A72A710>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hobart,au
duplicate city: hobart,au
duplicate city: punta arenas,cl
city generated: domna,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF12128>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: kruisfontein,za
duplicate city: chuy,uy
city generated: sokolo,ml
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7994E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.74, 'lon': -6.12},
'dt': 1520400477,
'id': 2450849,
'main': {'grnd_level': 990.51,
'humidity': 34,
'pressure': 990.51,
'sea_level': 1024.46,
'temp': 19.05,
'temp_max': 19.05,
'temp_min': 19.05},
'name': 'Sokolo',
'sys': {'country': 'ML',
'message': 0.0029,
'sunrise': 1520404650,
'sunset': 1520447613},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 39.5009, 'speed': 4.71}}
duplicate city: barrow,us
duplicate city: saleaula,ws
duplicate city: mar del plata,ar
duplicate city: tsihombe,mg
city generated: halifax,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B8DF60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 44.65, 'lon': -63.58},
'dt': 1520398800,
'id': 6324729,
'main': {'humidity': 86,
'pressure': 1016,
'temp': -1,
'temp_max': -1,
'temp_min': -1},
'name': 'Halifax',
'sys': {'country': 'CA',
'id': 3488,
'message': 0.0044,
'sunrise': 1520419253,
'sunset': 1520460619,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 360, 'speed': 6.2}}
duplicate city: khatanga,ru
duplicate city: kapaa,us
duplicate city: fairbanks,us
city generated: dosso,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E5BE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 13.05, 'lon': 3.19},
'dt': 1520400478,
'id': 2445488,
'main': {'grnd_level': 997,
'humidity': 37,
'pressure': 997,
'sea_level': 1022.67,
'temp': 20.05,
'temp_max': 20.05,
'temp_min': 20.05},
'name': 'Dosso',
'sys': {'country': 'NE',
'message': 0.0039,
'sunrise': 1520402379,
'sunset': 1520445415},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 48.5009, 'speed': 4.31}}
city generated: champerico,gt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A147B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 16.38, 'lon': -93.6},
'dt': 1520397900,
'id': 3530097,
'main': {'humidity': 53,
'pressure': 1014,
'temp': 25,
'temp_max': 25,
'temp_min': 25},
'name': 'Champerico',
'sys': {'country': 'MX',
'id': 4025,
'message': 0.0028,
'sunrise': 1520425672,
'sunset': 1520468576,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 300, 'speed': 2.6}}
duplicate city: vostok,ru
duplicate city: rikitea,pf
duplicate city: busselton,au
city generated: verkhnyaya inta,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0EC2B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 65.99, 'lon': 60.32},
'dt': 1520400479,
'id': 1487332,
'main': {'grnd_level': 985.41,
'humidity': 77,
'pressure': 985.41,
'sea_level': 1003.3,
'temp': -13.05,
'temp_max': -13.05,
'temp_min': -13.05},
'name': 'Verkhnyaya Inta',
'sys': {'country': 'RU',
'message': 0.0033,
'sunrise': 1520390939,
'sunset': 1520429522},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 312.501, 'speed': 1.76}}
duplicate city: bluff,nz
city generated: hurghada,eg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F0BD68>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mataura,pf
duplicate city: ushuaia,ar
duplicate city: mehamn,no
duplicate city: laguna,br
duplicate city: port elizabeth,za
duplicate city: east london,za
duplicate city: butaritari,ki
city generated: muisne,ec
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19EE4E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 0.61, 'lon': -80.02},
'dt': 1520400480,
'id': 3653967,
'main': {'grnd_level': 997.73,
'humidity': 97,
'pressure': 997.73,
'sea_level': 1022.96,
'temp': 21.53,
'temp_max': 21.53,
'temp_min': 21.53},
'name': 'Muisne',
'sys': {'country': 'EC',
'message': 0.003,
'sunrise': 1520422074,
'sunset': 1520465643},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 321.001, 'speed': 1.06}}
duplicate city: jamestown,sh
duplicate city: new norfolk,au
duplicate city: georgetown,sh
city generated: watertown,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A67F550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 44.9, 'lon': -97.12},
'dt': 1520399700,
'id': 5232741,
'main': {'humidity': 100,
'pressure': 1020,
'temp': -10.39,
'temp_max': -9,
'temp_min': -12},
'name': 'Watertown',
'sys': {'country': 'US',
'id': 2470,
'message': 0.0038,
'sunrise': 1520427302,
'sunset': 1520468667,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 320, 'speed': 2.6}}
duplicate city: lata,sb
duplicate city: rikitea,pf
duplicate city: cape town,za
city generated: wainwright,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BCEF28>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': 52.84, 'lon': -110.86},
'dt': 1520400224,
'id': 6175059,
'main': {'grnd_level': 957.04,
'humidity': 55,
'pressure': 957.04,
'sea_level': 1045.65,
'temp': -21.38,
'temp_max': -21.38,
'temp_min': -21.38},
'name': 'Wainwright',
'sys': {'country': 'CA',
'message': 0.0035,
'sunrise': 1520430941,
'sunset': 1520471636},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 124.001, 'speed': 1.06}}
duplicate city: vangaindrano,mg
duplicate city: cherskiy,ru
duplicate city: roebourne,au
city generated: schruns,at
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19946470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 47.08, 'lon': 9.92},
'dt': 1520398500,
'id': 7873725,
'main': {'humidity': 79,
'pressure': 993,
'temp': -2.69,
'temp_max': 3,
'temp_min': -7},
'name': 'Schruns',
'sys': {'country': 'AT',
'id': 5870,
'message': 0.004,
'sunrise': 1520401732,
'sunset': 1520442870,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 20, 'speed': 2.1}}
duplicate city: buala,sb
duplicate city: barrow,us
duplicate city: bredasdorp,za
duplicate city: hermanus,za
duplicate city: jamestown,sh
duplicate city: jamestown,sh
duplicate city: nome,us
duplicate city: bluff,nz
duplicate city: narsaq,gl
duplicate city: mataura,pf
city generated: bolungarvik,is
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A48DA90>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: saint-philippe,re
city generated: playas,ec
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19EE6B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -2.64, 'lon': -80.39},
'dt': 1520400482,
'id': 3653015,
'main': {'grnd_level': 1014.91,
'humidity': 89,
'pressure': 1014.91,
'sea_level': 1023.73,
'temp': 24.88,
'temp_max': 24.88,
'temp_min': 24.88},
'name': 'Playas',
'sys': {'country': 'EC',
'message': 0.0035,
'sunrise': 1520422093,
'sunset': 1520465799},
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 227.501, 'speed': 2.91}}
duplicate city: mys shmidta,ru
duplicate city: saldanha,za
duplicate city: guerrero negro,mx
duplicate city: punta arenas,cl
duplicate city: avarua,ck
city generated: labutta,mm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A79C7F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: punta arenas,cl
city generated: kroya,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2683C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -6.5, 'lon': 108.06},
'dt': 1520400483,
'id': 7870153,
'main': {'grnd_level': 997.32,
'humidity': 100,
'pressure': 997.32,
'sea_level': 1021.46,
'temp': 26.05,
'temp_max': 26.05,
'temp_min': 26.05},
'name': 'Kroya',
'rain': {'3h': 4.72},
'sys': {'country': 'ID',
'message': 0.0062,
'sunrise': 1520376783,
'sunset': 1520420665},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 329.001, 'speed': 1.56}}
duplicate city: atuona,pf
city generated: zarate,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1992E6A0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -13.68, 'lon': -76.08},
'dt': 1520395200,
'id': 3932145,
'main': {'humidity': 78,
'pressure': 1012,
'temp': 22,
'temp_max': 22,
'temp_min': 22},
'name': 'Zarate',
'sys': {'country': 'PE',
'id': 4405,
'message': 0.005,
'sunrise': 1520420811,
'sunset': 1520465004,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 210, 'speed': 1.5}}
duplicate city: albany,au
duplicate city: bandarbeyla,so
duplicate city: khatanga,ru
duplicate city: rikitea,pf
duplicate city: barrow,us
duplicate city: attawapiskat,ca
duplicate city: belushya guba,ru
duplicate city: vestmannaeyjar,is
duplicate city: saint george,bm
duplicate city: louisbourg,ca
duplicate city: new norfolk,au
duplicate city: hilo,us
city generated: talpa,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A884AC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 28.83, 'lon': -111.63},
'dt': 1520397600,
'id': 3991622,
'main': {'humidity': 27,
'pressure': 1015,
'temp': 17,
'temp_max': 17,
'temp_min': 17},
'name': 'Talpa',
'sys': {'country': 'MX',
'id': 3985,
'message': 0.0031,
'sunrise': 1520430290,
'sunset': 1520472623,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 240, 'speed': 2.1}}
duplicate city: tuktoyaktuk,ca
duplicate city: bredasdorp,za
duplicate city: upernavik,gl
duplicate city: mataura,pf
duplicate city: new norfolk,au
duplicate city: nikolskoye,ru
duplicate city: ponta do sol,cv
duplicate city: rikitea,pf
duplicate city: jamestown,sh
duplicate city: hermanus,za
duplicate city: fairbanks,us
duplicate city: puerto ayora,ec
duplicate city: avarua,ck
duplicate city: kodiak,us
duplicate city: khatanga,ru
city generated: susanville,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B316898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 40.42, 'lon': -120.65},
'dt': 1520398500,
'id': 5572400,
'main': {'humidity': 64,
'pressure': 1023,
'temp': 0,
'temp_max': 0,
'temp_min': 0},
'name': 'Susanville',
'sys': {'country': 'US',
'id': 496,
'message': 0.0035,
'sunrise': 1520432785,
'sunset': 1520474470,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 290, 'speed': 1.5}}
duplicate city: rikitea,pf
duplicate city: hermanus,za
duplicate city: saint george,bm
city generated: gweta,bw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B59D68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -20.21, 'lon': 25.26},
'dt': 1520400484,
'id': 933734,
'main': {'grnd_level': 922.83,
'humidity': 67,
'pressure': 922.83,
'sea_level': 1024.66,
'temp': 21.83,
'temp_max': 21.83,
'temp_min': 21.83},
'name': 'Gweta',
'sys': {'country': 'BW',
'message': 0.0029,
'sunrise': 1520396322,
'sunset': 1520440851},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 73.5009, 'speed': 4.36}}
duplicate city: meyungs,pw
duplicate city: samusu,ws
city generated: chunhuhub,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7F82B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 19.59, 'lon': -88.59},
'dt': 1520400485,
'id': 3530691,
'main': {'grnd_level': 1021.8,
'humidity': 73,
'pressure': 1021.8,
'sea_level': 1027.94,
'temp': 22.53,
'temp_max': 22.53,
'temp_min': 22.53},
'name': 'Chunhuhub',
'sys': {'country': 'MX',
'message': 0.0031,
'sunrise': 1520424542,
'sunset': 1520467304},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 131.001, 'speed': 1.81}}
duplicate city: hilo,us
duplicate city: hilo,us
duplicate city: ushuaia,ar
duplicate city: albany,au
duplicate city: dikson,ru
duplicate city: palabuhanratu,id
duplicate city: barrow,us
city generated: verkhoshizhemye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0EC940>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tabuk,sa
duplicate city: butaritari,ki
city generated: ontario,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A656160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 34.07, 'lon': -117.65},
'dt': 1520398680,
'id': 5379439,
'main': {'humidity': 21,
'pressure': 1018,
'temp': 15.63,
'temp_max': 18,
'temp_min': 12},
'name': 'Ontario',
'sys': {'country': 'US',
'id': 443,
'message': 0.0041,
'sunrise': 1520431873,
'sunset': 1520473934,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 80, 'speed': 1.5}}
duplicate city: cabo san lucas,mx
duplicate city: puerto ayora,ec
duplicate city: bengkulu,id
duplicate city: hofn,is
duplicate city: itarema,br
duplicate city: sao miguel do araguaia,br
duplicate city: hilo,us
duplicate city: fairbanks,us
city generated: waw,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B137E80>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: jamestown,sh
duplicate city: guerrero negro,mx
duplicate city: barentsburg,sj
duplicate city: ushuaia,ar
duplicate city: avera,pf
duplicate city: puerto ayora,ec
duplicate city: rikitea,pf
duplicate city: san cristobal,ec
duplicate city: albany,au
city generated: dno,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF0D6D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 57.83, 'lon': 29.97},
'dt': 1520400486,
'id': 565885,
'main': {'grnd_level': 1011.02,
'humidity': 88,
'pressure': 1011.02,
'sea_level': 1022.47,
'temp': -7.43,
'temp_max': -7.43,
'temp_min': -7.43},
'name': 'Dno',
'sys': {'country': 'RU',
'message': 0.0033,
'sunrise': 1520397492,
'sunset': 1520437508},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 112.501, 'speed': 3.71}}
duplicate city: puerto ayora,ec
duplicate city: karratha,au
duplicate city: cabo san lucas,mx
city generated: malartic,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BA04A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 48.14, 'lon': -78.13},
'dt': 1520398800,
'id': 6064704,
'main': {'humidity': 68,
'pressure': 1011,
'temp': -1.53,
'temp_max': -1,
'temp_min': -2},
'name': 'Malartic',
'sys': {'country': 'CA',
'id': 3870,
'message': 0.0032,
'sunrise': 1520422879,
'sunset': 1520463981,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 110, 'speed': 3.6}}
duplicate city: severo-kurilsk,ru
duplicate city: bluff,nz
city generated: mangai,cd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BDDDA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -4.07, 'lon': 19.59},
'dt': 1520400487,
'id': 2313084,
'main': {'grnd_level': 980.14,
'humidity': 99,
'pressure': 980.14,
'sea_level': 1024.29,
'temp': 22.7,
'temp_max': 22.7,
'temp_min': 22.7},
'name': 'Mangai',
'sys': {'country': 'CD',
'message': 0.0038,
'sunrise': 1520398069,
'sunset': 1520441839},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 134.501, 'speed': 1.31}}
duplicate city: busselton,au
duplicate city: adrar,dz
duplicate city: tuktoyaktuk,ca
duplicate city: nikolskoye,ru
duplicate city: klaksvik,fo
duplicate city: dandong,cn
duplicate city: carnarvon,au
duplicate city: ilinskiy,ru
duplicate city: kodiak,us
duplicate city: mataura,pf
duplicate city: faanui,pf
duplicate city: punta arenas,cl
city generated: petropavlovka,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B02F588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 50.61, 'lon': 105.32},
'dt': 1520400487,
'id': 2017979,
'main': {'grnd_level': 936.29,
'humidity': 55,
'pressure': 936.29,
'sea_level': 1042.9,
'temp': -6.35,
'temp_max': -6.35,
'temp_min': -6.35},
'name': 'Petropavlovka',
'sys': {'country': 'RU',
'message': 0.0034,
'sunrise': 1520379027,
'sunset': 1520419796},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 165.001, 'speed': 1.81}}
duplicate city: punta arenas,cl
city generated: liberal,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B3A84E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 37.04, 'lon': -100.92},
'dt': 1520398560,
'id': 5445820,
'main': {'humidity': 45,
'pressure': 1027,
'temp': -2.61,
'temp_max': -2,
'temp_min': -4},
'name': 'Liberal',
'sys': {'country': 'US',
'id': 1080,
'message': 0.0037,
'sunrise': 1520427949,
'sunset': 1520469833,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 290, 'speed': 5.1}}
duplicate city: vardo,no
city generated: zhob,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC4E940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 31.34, 'lon': 69.45},
'dt': 1520400488,
'id': 1162105,
'main': {'grnd_level': 840.63,
'humidity': 22,
'pressure': 840.63,
'sea_level': 1027.09,
'temp': 20.03,
'temp_max': 20.03,
'temp_min': 20.03},
'name': 'Zhob',
'sys': {'country': 'PK',
'message': 0.0037,
'sunrise': 1520386932,
'sunset': 1520429079},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 293.001, 'speed': 1.86}}
duplicate city: jamestown,sh
duplicate city: pevek,ru
duplicate city: mar del plata,ar
duplicate city: bredasdorp,za
duplicate city: taolanaro,mg
duplicate city: ribeira grande,pt
city generated: byron bay,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19952278>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
duplicate city: ushuaia,ar
duplicate city: hermanus,za
duplicate city: kavieng,pg
duplicate city: waingapu,id
city generated: raga,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B134CF8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bredasdorp,za
duplicate city: hithadhoo,mv
duplicate city: nikolskoye,ru
city generated: emmett,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B36F550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 43.87, 'lon': -116.5},
'dt': 1520398560,
'id': 5592562,
'main': {'humidity': 47,
'pressure': 1025,
'temp': 2.5,
'temp_max': 3,
'temp_min': 1},
'name': 'Emmett',
'sys': {'country': 'US',
'id': 914,
'message': 0.0052,
'sunrise': 1520431909,
'sunset': 1520473359,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 120, 'speed': 5.1}}
duplicate city: belushya guba,ru
duplicate city: castro,cl
duplicate city: vaini,to
duplicate city: carnarvon,au
duplicate city: hobart,au
duplicate city: kapaa,us
duplicate city: vardo,no
duplicate city: new norfolk,au
duplicate city: honiara,sb
duplicate city: korla,cn
duplicate city: ushuaia,ar
duplicate city: atuona,pf
duplicate city: hami,cn
duplicate city: thompson,ca
duplicate city: marcona,pe
duplicate city: vaini,to
city generated: kolaras,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A38D518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.22, 'lon': 77.61},
'dt': 1520400490,
'id': 1266302,
'main': {'grnd_level': 977.87,
'humidity': 29,
'pressure': 977.87,
'sea_level': 1027.29,
'temp': 29.53,
'temp_max': 29.53,
'temp_min': 29.53},
'name': 'Kolaras',
'sys': {'country': 'IN',
'message': 0.0054,
'sunrise': 1520384813,
'sunset': 1520427276},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 70.0009, 'speed': 2.11}}
duplicate city: makakilo city,us
duplicate city: faanui,pf
duplicate city: mataura,pf
duplicate city: lagoa,pt
duplicate city: kropotkin,ru
duplicate city: cape town,za
duplicate city: san cristobal,ec
duplicate city: kodiak,us
city generated: rungata,ki
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7176A0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: albany,au
duplicate city: chuy,uy
duplicate city: taolanaro,mg
city generated: beyneu,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A71BF98>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 45.32, 'lon': 55.19},
'dt': 1520400491,
'id': 610298,
'main': {'grnd_level': 1038.99,
'humidity': 100,
'pressure': 1038.99,
'sea_level': 1041.84,
'temp': -7.2,
'temp_max': -7.2,
'temp_min': -7.2},
'name': 'Beyneu',
'sys': {'country': 'KZ',
'message': 0.0036,
'sunrise': 1520390810,
'sunset': 1520432063},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 133.501, 'speed': 2.51}}
duplicate city: hobart,au
duplicate city: saint-philippe,re
duplicate city: asau,tv
duplicate city: rikitea,pf
duplicate city: caravelas,br
city generated: paramonga,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9CD710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': -10.68, 'lon': -77.82},
'dt': 1520400491,
'id': 3933024,
'main': {'grnd_level': 1019.86,
'humidity': 96,
'pressure': 1019.86,
'sea_level': 1024.33,
'temp': 18.55,
'temp_max': 18.55,
'temp_min': 18.55},
'name': 'Paramonga',
'sys': {'country': 'PE',
'message': 0.0032,
'sunrise': 1520421298,
'sunset': 1520465354},
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 158.001, 'speed': 1.86}}
duplicate city: mataura,pf
duplicate city: nikolskoye,ru
city generated: kenai,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CB908>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 60.55, 'lon': -151.26},
'dt': 1520398560,
'id': 5866063,
'main': {'humidity': 92,
'pressure': 1018,
'temp': -6.02,
'temp_max': -5,
'temp_min': -7},
'name': 'Kenai',
'sys': {'country': 'US',
'id': 91,
'message': 0.004,
'sunrise': 1520441093,
'sunset': 1520480891,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 360, 'speed': 2.6}}
duplicate city: chokurdakh,ru
city generated: sterling,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CBE80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 39, 'lon': -77.4},
'dt': 1520399640,
'id': 4787534,
'main': {'humidity': 100,
'pressure': 1010,
'temp': 1,
'temp_max': 2,
'temp_min': 0},
'name': 'Sterling',
'sys': {'country': 'US',
'id': 2887,
'message': 0.0043,
'sunrise': 1520422370,
'sunset': 1520464126,
'type': 1},
'visibility': 6437,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'},
{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'},
{'description': 'light intensity drizzle',
'icon': '09n',
'id': 300,
'main': 'Drizzle'}],
'wind': {'deg': 90, 'speed': 1.5}}
city generated: kokopo,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E58D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -4.34, 'lon': 152.27},
'dt': 1520400492,
'id': 2093685,
'main': {'grnd_level': 1002.27,
'humidity': 100,
'pressure': 1002.27,
'sea_level': 1016.07,
'temp': 27.68,
'temp_max': 27.68,
'temp_min': 27.68},
'name': 'Kokopo',
'rain': {'3h': 0.49},
'sys': {'country': 'PG',
'message': 0.0031,
'sunrise': 1520366223,
'sunset': 1520410010},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 250.501, 'speed': 2.21}}
duplicate city: hithadhoo,mv
duplicate city: busselton,au
duplicate city: thompson,ca
duplicate city: hermanus,za
city generated: burglengenfeld,de
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19DE6BE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 49.21, 'lon': 12.04},
'dt': 1520398560,
'id': 2941190,
'main': {'humidity': 100,
'pressure': 993,
'temp': 2.32,
'temp_max': 4,
'temp_min': 0},
'name': 'Burglengenfeld',
'sys': {'country': 'DE',
'id': 4965,
'message': 0.0052,
'sunrise': 1520401316,
'sunset': 1520442272,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 240, 'speed': 3.1}}
city generated: weatherford,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A64E3C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 32.76, 'lon': -97.8},
'dt': 1520398500,
'id': 4740364,
'main': {'humidity': 28,
'pressure': 1024,
'temp': 9.8,
'temp_max': 12,
'temp_min': 8},
'name': 'Weatherford',
'sys': {'country': 'US',
'id': 2684,
'message': 0.0033,
'sunrise': 1520427077,
'sunset': 1520469202,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 350, 'speed': 3.1}}
duplicate city: taolanaro,mg
duplicate city: ushuaia,ar
duplicate city: albany,au
duplicate city: comodoro rivadavia,ar
duplicate city: rikitea,pf
duplicate city: georgetown,sh
city generated: alyangula,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1994CE48>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: coahuayana,mx
duplicate city: punta arenas,cl
duplicate city: rikitea,pf
city generated: voh,nc
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E50F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -20.95, 'lon': 164.69},
'dt': 1520400494,
'id': 2137748,
'main': {'grnd_level': 1009.73,
'humidity': 100,
'pressure': 1009.73,
'sea_level': 1016.07,
'temp': 25.88,
'temp_max': 25.88,
'temp_min': 25.88},
'name': 'Voh',
'rain': {'3h': 0.365},
'sys': {'country': 'NC',
'message': 0.0035,
'sunrise': 1520362831,
'sunset': 1520407426},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 152.501, 'speed': 13.36}}
duplicate city: kodiak,us
duplicate city: santa maria,cv
city generated: pinega,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B033278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 64.7, 'lon': 43.39},
'dt': 1520400494,
'id': 509483,
'main': {'grnd_level': 1018.96,
'humidity': 84,
'pressure': 1018.96,
'sea_level': 1027.54,
'temp': -12.55,
'temp_max': -12.55,
'temp_min': -12.55},
'name': 'Pinega',
'sys': {'country': 'RU',
'message': 0.0102,
'sunrise': 1520394851,
'sunset': 1520433730},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 309.501, 'speed': 2.91}}
duplicate city: hermanus,za
duplicate city: upernavik,gl
duplicate city: busselton,au
duplicate city: talnakh,ru
duplicate city: luderitz,na
city generated: juegang,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C66DA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 32.31, 'lon': 121.18},
'dt': 1520400494,
'id': 1804979,
'main': {'grnd_level': 1035.58,
'humidity': 98,
'pressure': 1035.58,
'sea_level': 1035.93,
'temp': 8.78,
'temp_max': 8.78,
'temp_min': 8.78},
'name': 'Juegang',
'rain': {'3h': 0.585},
'sys': {'country': 'CN',
'message': 0.0093,
'sunrise': 1520374555,
'sunset': 1520416631},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 57.5009, 'speed': 6.36}}
city generated: urambo,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B238CF8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': -5.07, 'lon': 32.07},
'dt': 1520400495,
'id': 149172,
'main': {'grnd_level': 904.59,
'humidity': 93,
'pressure': 904.59,
'sea_level': 1025.35,
'temp': 20.23,
'temp_max': 20.23,
'temp_min': 20.23},
'name': 'Urambo',
'sys': {'country': 'TZ',
'message': 0.004,
'sunrise': 1520395052,
'sunset': 1520438867},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 15.0009, 'speed': 1.51}}
duplicate city: taolanaro,mg
city generated: toul,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FEBFD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 48.68, 'lon': 5.89},
'dt': 1520398800,
'id': 2972350,
'main': {'humidity': 86,
'pressure': 994,
'temp': 4.31,
'temp_max': 5,
'temp_min': 3},
'name': 'Toul',
'sys': {'country': 'FR',
'id': 5653,
'message': 0.0037,
'sunrise': 1520402766,
'sunset': 1520443772,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 170, 'speed': 5.1}}
duplicate city: busselton,au
city generated: khonuu,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF68390>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: san quintin,mx
duplicate city: sentyabrskiy,ru
duplicate city: itarema,br
duplicate city: hilo,us
duplicate city: san patricio,mx
duplicate city: vaitupu,wf
duplicate city: albany,au
duplicate city: bredasdorp,za
duplicate city: hilo,us
duplicate city: cockburn harbour,tc
duplicate city: nikolskoye,ru
city generated: naco,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A84B978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 31.32, 'lon': -109.94},
'dt': 1520398680,
'id': 3995171,
'main': {'humidity': 13,
'pressure': 1020,
'temp': 10.64,
'temp_max': 13,
'temp_min': 9},
'name': 'Naco',
'sys': {'country': 'MX',
'id': 300,
'message': 0.0044,
'sunrise': 1520429949,
'sunset': 1520472155,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 90, 'speed': 4.1}}
duplicate city: port alfred,za
duplicate city: east london,za
duplicate city: leningradskiy,ru
duplicate city: puerto ayora,ec
duplicate city: ancud,cl
duplicate city: taolanaro,mg
duplicate city: ancud,cl
duplicate city: saint-philippe,re
duplicate city: upernavik,gl
duplicate city: salalah,om
duplicate city: port alfred,za
city generated: huai yot,th
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1A7C50>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bredasdorp,za
duplicate city: tasiilaq,gl
duplicate city: rikitea,pf
duplicate city: rikitea,pf
duplicate city: hithadhoo,mv
duplicate city: albany,au
duplicate city: port elizabeth,za
duplicate city: cidreira,br
duplicate city: bolungarvik,is
duplicate city: bluff,nz
duplicate city: cabo san lucas,mx
duplicate city: esperance,au
duplicate city: grand river south east,mu
city generated: mazatlan,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A840DA0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: buala,sb
duplicate city: rikitea,pf
duplicate city: cururupu,br
duplicate city: barrow,us
duplicate city: taolanaro,mg
duplicate city: nanortalik,gl
duplicate city: kaitangata,nz
city generated: filingue,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E5CC0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: albany,au
duplicate city: jamestown,sh
duplicate city: pisco,pe
duplicate city: mount gambier,au
duplicate city: torbay,ca
city generated: mezen,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFD19E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: port elizabeth,za
city generated: qianan,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C7ED68>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: strezhevoy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0A1940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 60.73, 'lon': 77.6},
'dt': 1520397000,
'id': 1490796,
'main': {'humidity': 92,
'pressure': 983,
'temp': -2,
'temp_max': -2,
'temp_min': -2},
'name': 'Strezhevoy',
'sys': {'country': 'RU',
'id': 7314,
'message': 0.0038,
'sunrise': 1520386297,
'sunset': 1520425853,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 120, 'speed': 6}}
duplicate city: sulangan,ph
duplicate city: hilo,us
duplicate city: taoudenni,ml
duplicate city: albany,au
duplicate city: khatanga,ru
city generated: kouango,cf
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BE71D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 4.99, 'lon': 19.98},
'dt': 1520400499,
'id': 2385535,
'main': {'grnd_level': 965.31,
'humidity': 91,
'pressure': 965.31,
'sea_level': 1023.48,
'temp': 21.88,
'temp_max': 21.88,
'temp_min': 21.88},
'name': 'Kouango',
'sys': {'country': 'CF',
'message': 0.0039,
'sunrise': 1520398174,
'sunset': 1520441555},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 193.001, 'speed': 4.56}}
duplicate city: cape town,za
duplicate city: busselton,au
duplicate city: bubaque,gw
duplicate city: beringovskiy,ru
duplicate city: kaitangata,nz
duplicate city: ushuaia,ar
duplicate city: barentsburg,sj
city generated: pakxan,la
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A72A668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 18.39, 'lon': 103.66},
'dt': 1520400499,
'id': 1655140,
'main': {'grnd_level': 981.6,
'humidity': 91,
'pressure': 981.6,
'sea_level': 1024.13,
'temp': 26.13,
'temp_max': 26.13,
'temp_min': 26.13},
'name': 'Pakxan',
'rain': {'3h': 1.43},
'sys': {'country': 'LA',
'message': 0.0037,
'sunrise': 1520378399,
'sunset': 1520421182},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 173.501, 'speed': 1.41}}
city generated: langenselbold,de
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19E34668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 50.18, 'lon': 9.04},
'dt': 1520398560,
'id': 2880913,
'main': {'humidity': 93,
'pressure': 993,
'temp': 2,
'temp_max': 2,
'temp_min': 2},
'name': 'Langenselbold',
'sys': {'country': 'DE',
'id': 4881,
'message': 0.0226,
'sunrise': 1520402079,
'sunset': 1520442950,
'type': 1},
'visibility': 6000,
'weather': [{'description': 'fog', 'icon': '50n', 'id': 741, 'main': 'Fog'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 200, 'speed': 1.5}}
duplicate city: vysokogornyy,ru
duplicate city: kapaa,us
duplicate city: vaini,to
duplicate city: puerto ayora,ec
duplicate city: cabo san lucas,mx
duplicate city: butaritari,ki
duplicate city: ponta do sol,cv
duplicate city: rikitea,pf
city generated: oksfjord,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A95E390>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bilibino,ru
duplicate city: rikitea,pf
duplicate city: new norfolk,au
duplicate city: carnarvon,au
duplicate city: bluff,nz
duplicate city: broome,au
city generated: hailar,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C57080>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: safaga,eg
duplicate city: airai,pw
city generated: bratsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEF04E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 56.15, 'lon': 101.63},
'dt': 1520398800,
'id': 2051523,
'main': {'humidity': 39,
'pressure': 1020,
'temp': -11,
'temp_max': -11,
'temp_min': -11},
'name': 'Bratsk',
'sys': {'country': 'RU',
'id': 7253,
'message': 0.0041,
'sunrise': 1520380216,
'sunset': 1520420389,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 150, 'speed': 4}}
duplicate city: castro,cl
city generated: banyo,cm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C32588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 6.75, 'lon': 11.81},
'dt': 1520400501,
'id': 2234794,
'main': {'grnd_level': 908.64,
'humidity': 54,
'pressure': 908.64,
'sea_level': 1023.2,
'temp': 18.43,
'temp_max': 18.43,
'temp_min': 18.43},
'name': 'Banyo',
'sys': {'country': 'CM',
'message': 0.0036,
'sunrise': 1520400173,
'sunset': 1520443479},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 209.001, 'speed': 1.56}}
duplicate city: yellowknife,ca
duplicate city: samusu,ws
duplicate city: leningradskiy,ru
duplicate city: bluff,nz
duplicate city: bluff,nz
duplicate city: nizhneyansk,ru
duplicate city: dikson,ru
city generated: ternate,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A288048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 14.29, 'lon': 120.72},
'dt': 1520395200,
'id': 1682474,
'main': {'humidity': 49,
'pressure': 1011,
'temp': 34,
'temp_max': 34,
'temp_min': 34},
'name': 'Ternate',
'sys': {'country': 'PH',
'id': 7706,
'message': 0.0037,
'sunrise': 1520374212,
'sunset': 1520417178,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'speed': 0.5}}
city generated: koshurnikovo,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF83C50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 54.3, 'lon': 93.39},
'dt': 1520400502,
'id': 1502096,
'main': {'grnd_level': 919.83,
'humidity': 49,
'pressure': 919.83,
'sea_level': 1028.47,
'temp': 1.58,
'temp_max': 1.58,
'temp_min': 1.58},
'name': 'Koshurnikovo',
'sys': {'country': 'RU',
'message': 0.0033,
'sunrise': 1520382080,
'sunset': 1520422476},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 173.001, 'speed': 2.76}}
city generated: la union,hn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A19E278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.97, 'lon': -89.29},
'dt': 1520400503,
'id': 3593500,
'main': {'grnd_level': 944.31,
'humidity': 92,
'pressure': 944.31,
'sea_level': 1026.77,
'temp': 13.23,
'temp_max': 13.23,
'temp_min': 13.23},
'name': 'La Union',
'sys': {'country': 'GT',
'message': 0.0032,
'sunrise': 1520424607,
'sunset': 1520467572},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 16.0009, 'speed': 0.86}}
duplicate city: caravelas,br
city generated: zhangjiakou,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CA4C18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 40.77, 'lon': 114.88},
'dt': 1520400503,
'id': 2033196,
'main': {'grnd_level': 905,
'humidity': 78,
'pressure': 905,
'sea_level': 1037.55,
'temp': 0.08,
'temp_max': 0.08,
'temp_min': 0.08},
'name': 'Zhangjiakou',
'sys': {'country': 'CN',
'message': 0.0187,
'sunrise': 1520376332,
'sunset': 1520417888},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 328.501, 'speed': 7.16}}
duplicate city: nantucket,us
duplicate city: mahebourg,mu
duplicate city: mataura,pf
city generated: serik,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1FB4A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 36.92, 'lon': 31.1},
'dt': 1520398200,
'id': 301101,
'main': {'humidity': 93,
'pressure': 1015,
'temp': 14,
'temp_max': 14,
'temp_min': 14},
'name': 'Serik',
'sys': {'country': 'TR',
'id': 6028,
'message': 0.0047,
'sunrise': 1520396291,
'sunset': 1520438131,
'type': 1},
'visibility': 3600,
'weather': [{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 40, 'speed': 2.1}}
duplicate city: rawson,ar
city generated: morris,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BA6438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 41.36, 'lon': -88.42},
'dt': 1520398500,
'id': 4902706,
'main': {'humidity': 86,
'pressure': 1008,
'temp': 0.44,
'temp_max': 2,
'temp_min': -1},
'name': 'Morris',
'sys': {'country': 'US',
'id': 992,
'message': 0.0045,
'sunrise': 1520425090,
'sunset': 1520466698,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'},
{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 340, 'speed': 3.1}}
duplicate city: isangel,vu
duplicate city: grand river south east,mu
city generated: karymskoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF58978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 51.62, 'lon': 114.34},
'dt': 1520400504,
'id': 2023094,
'main': {'grnd_level': 945.04,
'humidity': 50,
'pressure': 945.04,
'sea_level': 1047.56,
'temp': -12.05,
'temp_max': -12.05,
'temp_min': -12.05},
'name': 'Karymskoye',
'sys': {'country': 'RU',
'message': 0.0312,
'sunrise': 1520376916,
'sunset': 1520417580},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 315.501, 'speed': 2.66}}
duplicate city: dingle,ie
duplicate city: samusu,ws
duplicate city: rikitea,pf
duplicate city: tiksi,ru
duplicate city: san luis,ar
duplicate city: coihaique,cl
duplicate city: bredasdorp,za
duplicate city: tuatapere,nz
duplicate city: qaanaaq,gl
duplicate city: victoria,sc
duplicate city: albany,au
duplicate city: klaksvik,fo
city generated: corinto,ni
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A901860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -18.36, 'lon': -44.46},
'dt': 1520400505,
'id': 3465512,
'main': {'grnd_level': 951.52,
'humidity': 98,
'pressure': 951.52,
'sea_level': 1022.23,
'temp': 20.48,
'temp_max': 20.48,
'temp_min': 20.48},
'name': 'Corinto',
'rain': {'3h': 4.135},
'sys': {'country': 'BR',
'message': 0.003,
'sunrise': 1520413106,
'sunset': 1520457528},
'weather': [{'description': 'moderate rain',
'icon': '10n',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 108.501, 'speed': 1.41}}
duplicate city: illoqqortoormiut,gl
duplicate city: richards bay,za
city generated: prince rupert,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BB2358>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: taolanaro,mg
duplicate city: kapaa,us
city generated: tasco,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D31160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 5.91, 'lon': -72.78},
'dt': 1520400505,
'id': 3667373,
'main': {'grnd_level': 737.2,
'humidity': 94,
'pressure': 737.2,
'sea_level': 1023.08,
'temp': 9.43,
'temp_max': 9.43,
'temp_min': 9.43},
'name': 'Tasco',
'sys': {'country': 'CO',
'message': 0.0043,
'sunrise': 1520420450,
'sunset': 1520463797},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 99.0009, 'speed': 0.11}}
city generated: chudniv,ua
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B24AC50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 50.05, 'lon': 28.12},
'dt': 1520400506,
'id': 710381,
'main': {'grnd_level': 977.46,
'humidity': 100,
'pressure': 977.46,
'sea_level': 1010.23,
'temp': 3.58,
'temp_max': 3.58,
'temp_min': 3.58},
'name': 'Chudniv',
'rain': {'3h': 0.62},
'sys': {'country': 'UA',
'message': 0.004,
'sunrise': 1520397501,
'sunset': 1520438371},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 141.001, 'speed': 3.16}}
city generated: lota,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C29358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 36.63, 'lon': 5.3},
'dt': 1520398800,
'id': 2491776,
'main': {'humidity': 87,
'pressure': 1005,
'temp': 10.96,
'temp_max': 13,
'temp_min': 8},
'name': 'Lota',
'sys': {'country': 'DZ',
'id': 6192,
'message': 0.0041,
'sunrise': 1520402468,
'sunset': 1520444336,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 260, 'speed': 0.5}}
city generated: narayanpet,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3D4710>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: san patricio,mx
city generated: bulawayo,zw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6DFD68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -20.16, 'lon': 28.59},
'dt': 1520398800,
'id': 894701,
'main': {'humidity': 88,
'pressure': 1020,
'temp': 17,
'temp_max': 17,
'temp_min': 17},
'name': 'Bulawayo',
'sys': {'country': 'ZW',
'id': 6884,
'message': 0.004,
'sunrise': 1520395524,
'sunset': 1520440051,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 20, 'speed': 1.5}}
duplicate city: albany,au
duplicate city: barrow,us
city generated: peniche,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACB7828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 39.36, 'lon': -9.38},
'dt': 1520398800,
'id': 2264923,
'main': {'humidity': 93,
'pressure': 1010,
'temp': 5.5,
'temp_max': 6,
'temp_min': 5},
'name': 'Peniche',
'sys': {'country': 'PT',
'id': 5953,
'message': 0.0038,
'sunrise': 1520406074,
'sunset': 1520447778,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 160, 'speed': 1.5}}
duplicate city: saldanha,za
duplicate city: ushuaia,ar
duplicate city: barentsburg,sj
duplicate city: ushuaia,ar
duplicate city: bluff,nz
duplicate city: cape town,za
city generated: dauphin,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B7FF28>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 51.15, 'lon': -100.04},
'dt': 1520398800,
'id': 5935341,
'main': {'humidity': 78,
'pressure': 1023,
'temp': -8,
'temp_max': -8,
'temp_min': -8},
'name': 'Dauphin',
'sys': {'country': 'CA',
'id': 3378,
'message': 0.0089,
'sunrise': 1520428265,
'sunset': 1520469115,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 240, 'speed': 2.6}}
duplicate city: padang,id
duplicate city: albany,au
duplicate city: dikson,ru
duplicate city: cidreira,br
duplicate city: ostrovnoy,ru
duplicate city: hermanus,za
duplicate city: leningradskiy,ru
duplicate city: nikolskoye,ru
duplicate city: te anau,nz
city generated: viersen,de
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19E8E0F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 51.26, 'lon': 6.39},
'dt': 1520398500,
'id': 2817311,
'main': {'humidity': 93,
'pressure': 992,
'temp': 2.5,
'temp_max': 4,
'temp_min': 1},
'name': 'Viersen',
'sys': {'country': 'DE',
'id': 4886,
'message': 0.0053,
'sunrise': 1520402766,
'sunset': 1520443537,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'fog', 'icon': '50n', 'id': 741, 'main': 'Fog'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 120, 'speed': 2.6}}
duplicate city: belyy yar,ru
duplicate city: hasaki,jp
duplicate city: hilo,us
duplicate city: busselton,au
duplicate city: hermanus,za
duplicate city: butaritari,ki
city generated: caconda,ao
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199220F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -13.73, 'lon': 15.06},
'dt': 1520400508,
'id': 3351380,
'main': {'grnd_level': 854.5,
'humidity': 89,
'pressure': 854.5,
'sea_level': 1025.96,
'temp': 12.03,
'temp_max': 12.03,
'temp_min': 12.03},
'name': 'Caconda',
'sys': {'country': 'AO',
'message': 0.0032,
'sunrise': 1520398934,
'sunset': 1520443141},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 3.00095, 'speed': 1.31}}
city generated: brownwood,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A68BC88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 31.71, 'lon': -98.99},
'dt': 1520398500,
'id': 4676798,
'main': {'humidity': 52,
'pressure': 1025,
'temp': 7.8,
'temp_max': 10,
'temp_min': 5},
'name': 'Brownwood',
'sys': {'country': 'US',
'id': 2571,
'message': 0.0405,
'sunrise': 1520427334,
'sunset': 1520469515,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 22.0009, 'speed': 4.76}}
city generated: warwick,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199680F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 41.7, 'lon': -71.42},
'dt': 1520398560,
'id': 5225507,
'main': {'humidity': 80,
'pressure': 1017,
'temp': 0.43,
'temp_max': 3,
'temp_min': -2},
'name': 'Warwick',
'sys': {'country': 'US',
'id': 2390,
'message': 0.0052,
'sunrise': 1520421026,
'sunset': 1520462604,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 40, 'speed': 1.5}}
duplicate city: ixtapa,mx
duplicate city: constitucion,mx
duplicate city: saint-philippe,re
duplicate city: tasiilaq,gl
duplicate city: kloulklubed,pw
duplicate city: grand river south east,mu
duplicate city: yellowknife,ca
city generated: teshie,gh
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A093208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 5.58, 'lon': -0.11},
'dt': 1520398800,
'id': 2306104,
'main': {'humidity': 94,
'pressure': 1010,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Teshie',
'sys': {'country': 'GH',
'id': 6247,
'message': 0.0032,
'sunrise': 1520403007,
'sunset': 1520446364,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 270, 'speed': 2.6}}
duplicate city: newport,us
city generated: kalbay,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AAC8CC0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: belushya guba,ru
duplicate city: puerto ayora,ec
duplicate city: cherskiy,ru
duplicate city: kodiak,us
duplicate city: jalu,ly
city generated: narasannapeta,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3D0F28>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 18.42, 'lon': 84.04},
'dt': 1520400511,
'id': 1261853,
'main': {'grnd_level': 1012.56,
'humidity': 43,
'pressure': 1012.56,
'sea_level': 1025.43,
'temp': 34.9,
'temp_max': 34.9,
'temp_min': 34.9},
'name': 'Narasannapeta',
'sys': {'country': 'IN',
'message': 0.0041,
'sunrise': 1520383106,
'sunset': 1520425891},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 147.001, 'speed': 2.56}}
duplicate city: kapaa,us
duplicate city: mocambique,mz
duplicate city: hermanus,za
city generated: san jeronimo,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A872B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -13.65, 'lon': -73.37},
'dt': 1520400511,
'id': 3929607,
'main': {'grnd_level': 671.54,
'humidity': 100,
'pressure': 671.54,
'sea_level': 1024.78,
'temp': 2.48,
'temp_max': 2.48,
'temp_min': 2.48},
'name': 'San Jeronimo',
'sys': {'country': 'PE',
'message': 0.004,
'sunrise': 1520420161,
'sunset': 1520464353},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 170.501, 'speed': 0.21}}
duplicate city: hasaki,jp
duplicate city: tommot,ru
duplicate city: georgetown,sh
duplicate city: hambantota,lk
duplicate city: arraial do cabo,br
duplicate city: bengkulu,id
city generated: carnarvon,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6BD828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -30.97, 'lon': 22.13},
'dt': 1520400512,
'id': 1014034,
'main': {'grnd_level': 873.22,
'humidity': 43,
'pressure': 873.22,
'sea_level': 1024.17,
'temp': 18.45,
'temp_max': 18.45,
'temp_min': 18.45},
'name': 'Carnarvon',
'sys': {'country': 'ZA',
'message': 0.0036,
'sunrise': 1520396761,
'sunset': 1520441902},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 155.001, 'speed': 0.56}}
duplicate city: torbay,ca
duplicate city: palu,id
duplicate city: barrow,us
duplicate city: ushuaia,ar
duplicate city: pevek,ru
duplicate city: samusu,ws
city generated: paracuru,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AE9CC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -3.41, 'lon': -39.03},
'dt': 1520398800,
'id': 3393115,
'main': {'humidity': 88,
'pressure': 1010,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Paracuru',
'sys': {'country': 'BR',
'id': 4498,
'message': 0.0032,
'sunrise': 1520412151,
'sunset': 1520455891,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 60, 'speed': 2.1}}
duplicate city: ushuaia,ar
duplicate city: albany,au
city generated: umm lajj,sa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B130208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.02, 'lon': 37.27},
'dt': 1520400513,
'id': 100926,
'main': {'grnd_level': 1015.56,
'humidity': 61,
'pressure': 1015.56,
'sea_level': 1028.79,
'temp': 25.15,
'temp_max': 25.15,
'temp_min': 25.15},
'name': 'Umm Lajj',
'sys': {'country': 'SA',
'message': 0.0033,
'sunrise': 1520394483,
'sunset': 1520436965},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 36.5009, 'speed': 2.36}}
duplicate city: hobart,au
duplicate city: marawi,sd
duplicate city: ostrovnoy,ru
duplicate city: bambous virieux,mu
duplicate city: busselton,au
city generated: nadym,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFE57F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 65.53, 'lon': 72.51},
'dt': 1520400513,
'id': 1498087,
'main': {'grnd_level': 995.7,
'humidity': 91,
'pressure': 995.7,
'sea_level': 998.76,
'temp': -5.08,
'temp_max': -5.08,
'temp_min': -5.08},
'name': 'Nadym',
'sys': {'country': 'RU',
'message': 0.0035,
'sunrise': 1520387969,
'sunset': 1520426640},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 122.001, 'speed': 7.91}}
duplicate city: port alfred,za
duplicate city: surt,ly
duplicate city: mataura,pf
duplicate city: bubaque,gw
duplicate city: barrow,us
city generated: lagunas,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9C3B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': -5.23, 'lon': -75.68},
'dt': 1520400513,
'id': 3695844,
'main': {'grnd_level': 1002.43,
'humidity': 97,
'pressure': 1002.43,
'sea_level': 1022.43,
'temp': 23.58,
'temp_max': 23.58,
'temp_min': 23.58},
'name': 'Lagunas',
'sys': {'country': 'PE',
'message': 0.0034,
'sunrise': 1520420907,
'sunset': 1520464723},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 195.001, 'speed': 0.96}}
duplicate city: marawi,sd
duplicate city: tasiilaq,gl
duplicate city: ushuaia,ar
duplicate city: tiksi,ru
duplicate city: namibe,ao
duplicate city: hilo,us
city generated: we,nc
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E51D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mar del plata,ar
duplicate city: puerto escondido,mx
duplicate city: hermanus,za
duplicate city: khatanga,ru
duplicate city: albany,au
duplicate city: hermanus,za
duplicate city: tiznit,ma
duplicate city: katsuura,jp
city generated: progreso,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A864390>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -34.68, 'lon': -56.22},
'dt': 1520395200,
'id': 3440963,
'main': {'humidity': 48,
'pressure': 1017,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'Progreso',
'sys': {'country': 'UY',
'id': 4623,
'message': 0.0035,
'sunrise': 1520415451,
'sunset': 1520460810,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 170, 'speed': 3.6}}
city generated: kulynychi,ua
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2686D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 49.98, 'lon': 36.38},
'dt': 1520397000,
'id': 703706,
'main': {'humidity': 85,
'pressure': 1007,
'temp': -6,
'temp_max': -6,
'temp_min': -6},
'name': 'Kulynychi',
'sys': {'country': 'UA',
'id': 7355,
'message': 0.0064,
'sunrise': 1520395518,
'sunset': 1520436390,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 110, 'speed': 7}}
duplicate city: rikitea,pf
duplicate city: saint-philippe,re
duplicate city: busselton,au
duplicate city: kapaa,us
city generated: le port,re
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACE8940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 42.87, 'lon': 1.37},
'dt': 1520400515,
'id': 3036965,
'main': {'grnd_level': 825.07,
'humidity': 81,
'pressure': 825.07,
'sea_level': 1017.36,
'temp': -7.18,
'temp_max': -7.18,
'temp_min': -7.18},
'name': 'Le Port',
'sys': {'country': 'FR',
'message': 0.0049,
'sunrise': 1520403618,
'sunset': 1520445080},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 274.501, 'speed': 0.76}}
duplicate city: punta arenas,cl
duplicate city: shimoda,jp
city generated: vallenar,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C2F4A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -28.58, 'lon': -70.76},
'dt': 1520400516,
'id': 3868633,
'main': {'grnd_level': 893.73,
'humidity': 77,
'pressure': 893.73,
'sea_level': 1025.06,
'temp': 12.43,
'temp_max': 12.43,
'temp_min': 12.43},
'name': 'Vallenar',
'sys': {'country': 'CL',
'message': 0.0033,
'sunrise': 1520419140,
'sunset': 1520464106},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 53.5009, 'speed': 0.46}}
duplicate city: severo-yeniseyskiy,ru
duplicate city: pevek,ru
duplicate city: hilo,us
duplicate city: bredasdorp,za
duplicate city: souillac,mu
duplicate city: san andres,co
city generated: kentau,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A723400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 43.52, 'lon': 68.5},
'dt': 1520400516,
'id': 1522751,
'main': {'grnd_level': 946.58,
'humidity': 78,
'pressure': 946.58,
'sea_level': 1043.55,
'temp': -0.7,
'temp_max': -0.7,
'temp_min': -0.7},
'name': 'Kentau',
'sys': {'country': 'KZ',
'message': 0.0029,
'sunrise': 1520387550,
'sunset': 1520428932},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 207.501, 'speed': 1.16}}
duplicate city: kamenka,ru
duplicate city: esperance,au
city generated: orkney,za
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6C9550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -26.98, 'lon': 26.67},
'dt': 1520400516,
'id': 967476,
'main': {'grnd_level': 874.76,
'humidity': 96,
'pressure': 874.76,
'sea_level': 1027.66,
'temp': 16.83,
'temp_max': 16.83,
'temp_min': 16.83},
'name': 'Orkney',
'rain': {'3h': 0.115},
'sys': {'country': 'ZA',
'message': 0.0033,
'sunrise': 1520395795,
'sunset': 1520440694},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 28.5009, 'speed': 3.11}}
city generated: batagay-alyta,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AECFDD8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: busselton,au
duplicate city: carnarvon,au
city generated: zhanakorgan,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A728C88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 43.91, 'lon': 67.25},
'dt': 1520400517,
'id': 1517323,
'main': {'grnd_level': 1020.5,
'humidity': 97,
'pressure': 1020.5,
'sea_level': 1044.6,
'temp': -2.2,
'temp_max': -2.2,
'temp_min': -2.2},
'name': 'Zhanakorgan',
'sys': {'country': 'KZ',
'message': 0.0031,
'sunrise': 1520387864,
'sunset': 1520429219},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 295.001, 'speed': 2.01}}
duplicate city: atuona,pf
duplicate city: kaitangata,nz
city generated: ruidoso,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A600D68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 33.33, 'lon': -105.67},
'dt': 1520398500,
'id': 5488598,
'main': {'humidity': 14,
'pressure': 1025,
'temp': 3.01,
'temp_max': 4,
'temp_min': 2},
'name': 'Ruidoso',
'sys': {'country': 'US',
'id': 2027,
'message': 0.0031,
'sunrise': 1520428980,
'sunset': 1520471077,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 159.501, 'speed': 1.06}}
city generated: atrauli,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2C9710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 28.04, 'lon': 78.28},
'dt': 1520400518,
'id': 1278190,
'main': {'grnd_level': 1004.05,
'humidity': 51,
'pressure': 1004.05,
'sea_level': 1026.32,
'temp': 27.18,
'temp_max': 27.18,
'temp_min': 27.18},
'name': 'Atrauli',
'sys': {'country': 'IN',
'message': 0.0086,
'sunrise': 1520384725,
'sunset': 1520427045},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 300.001, 'speed': 5.11}}
city generated: marsa matruh,eg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F0E0B8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: qaanaaq,gl
city generated: balaghat,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2D2EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 21.81, 'lon': 80.19},
'dt': 1520400480,
'id': 1277661,
'main': {'grnd_level': 981.27,
'humidity': 35,
'pressure': 981.27,
'sea_level': 1026.52,
'temp': 31.23,
'temp_max': 31.23,
'temp_min': 31.23},
'name': 'Balaghat',
'sys': {'country': 'IN',
'message': 0.0049,
'sunrise': 1520384110,
'sunset': 1520426737},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 98.5009, 'speed': 1.86}}
city generated: buchanan,lr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A737D30>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 5.88, 'lon': -10.05},
'dt': 1520395200,
'id': 2278158,
'main': {'humidity': 94,
'pressure': 1010,
'temp': 24,
'temp_max': 24,
'temp_min': 24},
'name': 'Buchanan',
'sys': {'country': 'LR',
'id': 6130,
'message': 0.0039,
'sunrise': 1520405399,
'sunset': 1520448743,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 40, 'speed': 1.5}}
duplicate city: bethel,us
duplicate city: rikitea,pf
duplicate city: busselton,au
duplicate city: butaritari,ki
duplicate city: saldanha,za
duplicate city: pringsewu,id
duplicate city: cape town,za
duplicate city: severomuysk,ru
duplicate city: nikolskoye,ru
duplicate city: punta arenas,cl
city generated: mullaitivu,lk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A735FD0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: khair,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A382128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 27.94, 'lon': 77.84},
'dt': 1520400264,
'id': 1267182,
'main': {'grnd_level': 1004.05,
'humidity': 51,
'pressure': 1004.05,
'sea_level': 1026.32,
'temp': 27.18,
'temp_max': 27.18,
'temp_min': 27.18},
'name': 'Khair',
'sys': {'country': 'IN',
'message': 0.0032,
'sunrise': 1520384828,
'sunset': 1520427153},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 300.001, 'speed': 5.11}}
duplicate city: bethel,us
duplicate city: khatanga,ru
city generated: saryshagan,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A725780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: georgetown,sh
duplicate city: mataura,pf
duplicate city: kodiak,us
city generated: trairi,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B44668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': -3.28, 'lon': -39.27},
'dt': 1520400521,
'id': 3386177,
'main': {'grnd_level': 1022.94,
'humidity': 100,
'pressure': 1022.94,
'sea_level': 1023,
'temp': 27.55,
'temp_max': 27.55,
'temp_min': 27.55},
'name': 'Trairi',
'rain': {'3h': 0.165},
'sys': {'country': 'BR',
'message': 0.0043,
'sunrise': 1520412212,
'sunset': 1520455946},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 72.0009, 'speed': 4.11}}
city generated: longlac,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B9D8D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: qaanaaq,gl
city generated: mitsamiouli,km
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A717BE0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: albany,au
duplicate city: nome,us
city generated: tahoua,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E9B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.89, 'lon': 5.26},
'dt': 1520400522,
'id': 2439376,
'main': {'grnd_level': 975.52,
'humidity': 31,
'pressure': 975.52,
'sea_level': 1023.97,
'temp': 20.93,
'temp_max': 20.93,
'temp_min': 20.93},
'name': 'Tahoua',
'sys': {'country': 'NE',
'message': 0.0029,
'sunrise': 1520401923,
'sunset': 1520444879},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 34.0009, 'speed': 5.16}}
city generated: kalemie,cd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BDBA58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': -5.95, 'lon': 29.2},
'dt': 1520400522,
'id': 214974,
'main': {'grnd_level': 931.83,
'humidity': 100,
'pressure': 931.83,
'sea_level': 1025.06,
'temp': 23.43,
'temp_max': 23.43,
'temp_min': 23.43},
'name': 'Kalemie',
'sys': {'country': 'CD',
'message': 0.0136,
'sunrise': 1520395721,
'sunset': 1520439574},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 280.501, 'speed': 2.31}}
duplicate city: atuona,pf
duplicate city: mys shmidta,ru
duplicate city: lompoc,us
duplicate city: ushuaia,ar
city generated: bridlington,gb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A011438>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: carnarvon,au
city generated: fuenlabrada,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F29CF8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 40.28, 'lon': -3.79},
'dt': 1520398800,
'id': 3121960,
'main': {'humidity': 60,
'pressure': 1008,
'temp': 2.98,
'temp_max': 5,
'temp_min': 1},
'name': 'Fuenlabrada',
'sys': {'country': 'ES',
'id': 5488,
'message': 0.0035,
'sunrise': 1520404765,
'sunset': 1520446406,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 270, 'speed': 3.6}}
duplicate city: jamestown,sh
duplicate city: nome,us
duplicate city: albany,au
duplicate city: atuona,pf
duplicate city: mataura,pf
duplicate city: sentyabrskiy,ru
duplicate city: college,us
duplicate city: laguna,br
duplicate city: atuona,pf
duplicate city: atuona,pf
duplicate city: kirakira,sb
duplicate city: xichang,cn
duplicate city: kapaa,us
duplicate city: chumikan,ru
duplicate city: puerto ayora,ec
duplicate city: qaanaaq,gl
duplicate city: brownsville,us
duplicate city: ancud,cl
city generated: warman,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BD1208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 52.32, 'lon': -106.58},
'dt': 1520398800,
'id': 6176226,
'main': {'humidity': 84,
'pressure': 1026,
'temp': -19,
'temp_max': -19,
'temp_min': -19},
'name': 'Warman',
'sys': {'country': 'CA',
'id': 3931,
'message': 0.0046,
'sunrise': 1520429889,
'sunset': 1520470632,
'type': 1},
'visibility': 24140,
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 250, 'speed': 5.7}}
city generated: khudumelapye,bw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B5D400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -23.91, 'lon': 24.95},
'dt': 1520400524,
'id': 933562,
'main': {'grnd_level': 902.32,
'humidity': 90,
'pressure': 902.32,
'sea_level': 1027.29,
'temp': 17.88,
'temp_max': 17.88,
'temp_min': 17.88},
'name': 'Khudumelapye',
'sys': {'country': 'BW',
'message': 0.0045,
'sunrise': 1520396296,
'sunset': 1520441022},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 122.001, 'speed': 6.61}}
duplicate city: jamestown,sh
duplicate city: rio gallegos,ar
city generated: san borja,bo
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A24D68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': -14.86, 'lon': -66.75},
'dt': 1520400524,
'id': 3905792,
'main': {'grnd_level': 974.55,
'humidity': 89,
'pressure': 974.55,
'sea_level': 1024.62,
'temp': 22.58,
'temp_max': 22.58,
'temp_min': 22.58},
'name': 'San Borja',
'sys': {'country': 'BO',
'message': 0.0041,
'sunrise': 1520418543,
'sunset': 1520462792},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 135.501, 'speed': 1.61}}
duplicate city: lorengau,pg
duplicate city: ushuaia,ar
duplicate city: vaini,to
duplicate city: busselton,au
duplicate city: ancud,cl
duplicate city: kaitangata,nz
duplicate city: faanui,pf
duplicate city: faya,td
city generated: lufilufi,ws
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6B0828>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: norman wells,ca
duplicate city: lebu,cl
duplicate city: new norfolk,au
city generated: aflu,dz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19ED9BE0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: yellowknife,ca
duplicate city: rikitea,pf
duplicate city: lebu,cl
duplicate city: rikitea,pf
duplicate city: najran,sa
duplicate city: belushya guba,ru
duplicate city: saint-augustin,ca
duplicate city: touros,br
duplicate city: bredasdorp,za
city generated: mirnyy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFD8400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 56.57, 'lon': 36.46},
'dt': 1520400525,
'id': 502265,
'main': {'grnd_level': 1005.59,
'humidity': 81,
'pressure': 1005.59,
'sea_level': 1027.94,
'temp': -11.28,
'temp_max': -11.28,
'temp_min': -11.28},
'name': 'Mirnyy',
'sys': {'country': 'RU',
'message': 0.0035,
'sunrise': 1520395855,
'sunset': 1520436027},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 126.501, 'speed': 5.11}}
duplicate city: mataura,pf
duplicate city: mataura,pf
duplicate city: hobart,au
duplicate city: arraial do cabo,br
city generated: nyanguge,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B236160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -2.54, 'lon': 33.2},
'dt': 1520395200,
'id': 151062,
'main': {'humidity': 94,
'pressure': 1017,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'Nyanguge',
'sys': {'country': 'TZ',
'id': 6494,
'message': 0.007,
'sunrise': 1520394837,
'sunset': 1520438541,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 125.001, 'speed': 2.91}}
duplicate city: bredasdorp,za
duplicate city: mabaruma,gy
duplicate city: rikitea,pf
duplicate city: bredasdorp,za
duplicate city: paamiut,gl
duplicate city: carnarvon,au
city generated: jiangkou,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C62828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 30.7, 'lon': 117.56},
'dt': 1520400526,
'id': 1814934,
'main': {'grnd_level': 1019.29,
'humidity': 100,
'pressure': 1019.29,
'sea_level': 1034.99,
'temp': 7.93,
'temp_max': 7.93,
'temp_min': 7.93},
'name': 'Jiangkou',
'rain': {'3h': 3.86},
'sys': {'country': 'CN',
'message': 0.0035,
'sunrise': 1520375377,
'sunset': 1520417544},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 352.501, 'speed': 3.26}}
duplicate city: atuona,pf
duplicate city: ushuaia,ar
duplicate city: ushuaia,ar
duplicate city: arraial do cabo,br
duplicate city: tumannyy,ru
city generated: catuday,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AA7B1D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: khatanga,ru
duplicate city: kapaa,us
city generated: leshukonskoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFB16A0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tiznit,ma
duplicate city: port alfred,za
duplicate city: hilo,us
duplicate city: tasiilaq,gl
duplicate city: albany,au
duplicate city: atuona,pf
duplicate city: georgetown,sh
city generated: nizhnyaya omka,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFF6B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 55.43, 'lon': 74.94},
'dt': 1520400527,
'id': 1497406,
'main': {'grnd_level': 1001.3,
'humidity': 91,
'pressure': 1001.3,
'sea_level': 1015.74,
'temp': -7.33,
'temp_max': -7.33,
'temp_min': -7.33},
'name': 'Nizhnyaya Omka',
'sys': {'country': 'RU',
'message': 0.0034,
'sunrise': 1520386566,
'sunset': 1520426846},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 251.501, 'speed': 9.86}}
duplicate city: barentsburg,sj
duplicate city: port hedland,au
duplicate city: hobyo,so
duplicate city: hobart,au
duplicate city: punta arenas,cl
duplicate city: provideniya,ru
duplicate city: guerrero negro,mx
duplicate city: naze,jp
duplicate city: rikitea,pf
duplicate city: dunedin,nz
city generated: lumding,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3A20F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.75, 'lon': 93.17},
'dt': 1520400527,
'id': 7302859,
'main': {'grnd_level': 1004.78,
'humidity': 81,
'pressure': 1004.78,
'sea_level': 1027.54,
'temp': 22.15,
'temp_max': 22.15,
'temp_min': 22.15},
'name': 'Lumding',
'sys': {'country': 'IN',
'message': 0.0033,
'sunrise': 1520381095,
'sunset': 1520423527},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 52.0009, 'speed': 1.41}}
city generated: isfana,kg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A710F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 39.84, 'lon': 69.53},
'dt': 1520395200,
'id': 1222662,
'main': {'humidity': 93,
'pressure': 1024,
'temp': 9,
'temp_max': 9,
'temp_min': 9},
'name': 'Isfana',
'sys': {'country': 'KG',
'id': 7389,
'message': 0.0038,
'sunrise': 1520387172,
'sunset': 1520428811,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 310, 'speed': 2}}
duplicate city: ushuaia,ar
city generated: muravlenko,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFE1550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 63.79, 'lon': 74.5},
'dt': 1520400528,
'id': 1540711,
'main': {'grnd_level': 984.19,
'humidity': 93,
'pressure': 984.19,
'sea_level': 996.41,
'temp': -3.88,
'temp_max': -3.88,
'temp_min': -3.88},
'name': 'Muravlenko',
'sys': {'country': 'RU',
'message': 0.0043,
'sunrise': 1520387310,
'sunset': 1520426337},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 128.501, 'speed': 8.36}}
duplicate city: los llanos de aridane,es
duplicate city: butaritari,ki
duplicate city: kapaa,us
duplicate city: rikitea,pf
duplicate city: illoqqortoormiut,gl
city generated: balingasay,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AA17588>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: jamestown,sh
duplicate city: fort nelson,ca
duplicate city: kapaa,us
city generated: panguna,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E80F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: busselton,au
duplicate city: mataura,pf
duplicate city: kapaa,us
duplicate city: sentyabrskiy,ru
duplicate city: east london,za
city generated: zhenhai,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CA7470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 29.95, 'lon': 121.71},
'dt': 1520395200,
'id': 1799397,
'main': {'humidity': 93,
'pressure': 1020,
'temp': 10,
'temp_max': 10,
'temp_min': 10},
'name': 'Zhenhai',
'sys': {'country': 'CN',
'id': 7446,
'message': 0.0038,
'sunrise': 1520374361,
'sunset': 1520416568,
'type': 1},
'visibility': 4500,
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'},
{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'speed': 1}}
duplicate city: hilo,us
duplicate city: busselton,au
duplicate city: saint-philippe,re
city generated: aswan,eg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F07E48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 24.09, 'lon': 32.9},
'dt': 1520398800,
'id': 359792,
'main': {'humidity': 16,
'pressure': 1016,
'temp': 21,
'temp_max': 21,
'temp_min': 21},
'name': 'Aswan',
'sys': {'country': 'EG',
'id': 6402,
'message': 0.0032,
'sunrise': 1520395508,
'sunset': 1520438037,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 40, 'speed': 1.5}}
duplicate city: satitoa,ws
duplicate city: xining,cn
duplicate city: saleaula,ws
city generated: navabad,tj
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1CC2B0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: barrow,us
duplicate city: ancud,cl
duplicate city: mataura,pf
duplicate city: ushuaia,ar
city generated: hope,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B93198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 49.38, 'lon': -121.43},
'dt': 1520398800,
'id': 5976783,
'main': {'humidity': 89,
'pressure': 1025,
'temp': 1,
'temp_max': 1,
'temp_min': 1},
'name': 'Hope',
'sys': {'country': 'CA',
'id': 3287,
'message': 0.0039,
'sunrise': 1520433310,
'sunset': 1520474332,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 70, 'speed': 3.1}}
duplicate city: cape town,za
city generated: yangjiang,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C9BDA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 21.85, 'lon': 111.96},
'dt': 1520400531,
'id': 1806408,
'main': {'grnd_level': 1026.18,
'humidity': 92,
'pressure': 1026.18,
'sea_level': 1027.58,
'temp': 21.4,
'temp_max': 21.4,
'temp_min': 21.4},
'name': 'Yangjiang',
'sys': {'country': 'CN',
'message': 0.0031,
'sunrise': 1520376491,
'sunset': 1520419110},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 102.001, 'speed': 7.31}}
city generated: oranjestad,aw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199687F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: barentsburg,sj
city generated: hushitai,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C62358>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: labutta,mm
duplicate city: taolanaro,mg
duplicate city: lebu,cl
duplicate city: verkhnevilyuysk,ru
duplicate city: qaanaaq,gl
city generated: kattivakkam,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A37B978>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: barentsburg,sj
duplicate city: busselton,au
city generated: jizan,sa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B12F860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 16.89, 'lon': 42.56},
'dt': 1520398800,
'id': 105299,
'main': {'humidity': 78,
'pressure': 1015,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Jizan',
'sys': {'country': 'SA',
'id': 6983,
'message': 0.0034,
'sunrise': 1520393021,
'sunset': 1520435882,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 110, 'speed': 1.5}}
city generated: abrau-dyurso,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEAC550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 44.7, 'lon': 37.6},
'dt': 1520398800,
'id': 584365,
'main': {'humidity': 93,
'pressure': 1005,
'temp': 10,
'temp_max': 10,
'temp_min': 10},
'name': 'Abrau-Dyurso',
'sys': {'country': 'RU',
'id': 7294,
'message': 0.0047,
'sunrise': 1520395002,
'sunset': 1520436312,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 170, 'speed': 7}}
duplicate city: bengkulu,id
duplicate city: georgetown,sh
duplicate city: kavaratti,in
city generated: nagua,do
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19ED7978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 19.37, 'lon': -69.85},
'dt': 1520400534,
'id': 3496021,
'main': {'grnd_level': 1021.15,
'humidity': 97,
'pressure': 1021.15,
'sea_level': 1030.54,
'temp': 20.83,
'temp_max': 20.83,
'temp_min': 20.83},
'name': 'Nagua',
'sys': {'country': 'DO',
'message': 0.0106,
'sunrise': 1520420042,
'sunset': 1520462811},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 73.0009, 'speed': 3.16}}
duplicate city: provideniya,ru
duplicate city: rikitea,pf
duplicate city: port alfred,za
duplicate city: cape town,za
duplicate city: los llanos de aridane,es
duplicate city: port alfred,za
duplicate city: punta arenas,cl
duplicate city: mataura,pf
city generated: picton,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BB10B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -41.29, 'lon': 174.01},
'dt': 1520398800,
'id': 6243776,
'main': {'humidity': 100,
'pressure': 1012,
'temp': 14,
'temp_max': 14,
'temp_min': 14},
'name': 'Picton',
'sys': {'country': 'NZ',
'id': 8295,
'message': 0.004,
'sunrise': 1520359897,
'sunset': 1520405862,
'type': 1},
'visibility': 3400,
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'},
{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 180, 'gust': 19, 'speed': 13.4}}
city generated: pokhara,np
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9789B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 28.21, 'lon': 83.99},
'dt': 1520400376,
'id': 1282898,
'main': {'grnd_level': 849.55,
'humidity': 39,
'pressure': 849.55,
'sea_level': 1024.5,
'temp': 19.9,
'temp_max': 19.9,
'temp_min': 19.9},
'name': 'Pokhara',
'sys': {'country': 'NP',
'message': 0.0032,
'sunrise': 1520383360,
'sunset': 1520425670},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 202.501, 'speed': 0.76}}
duplicate city: codrington,ag
duplicate city: dunedin,nz
city generated: cap malheureux,mu
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7B1F60>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: upernavik,gl
duplicate city: barentsburg,sj
duplicate city: chuy,uy
duplicate city: warqla,dz
city generated: rio verde de mato grosso,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B10C88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': -18.92, 'lon': -54.84},
'dt': 1520400535,
'id': 3451051,
'main': {'grnd_level': 964.25,
'humidity': 89,
'pressure': 964.25,
'sea_level': 1021.82,
'temp': 22.55,
'temp_max': 22.55,
'temp_min': 22.55},
'name': 'Rio Verde de Mato Grosso',
'sys': {'country': 'BR',
'message': 0.0052,
'sunrise': 1520415584,
'sunset': 1520460032},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 226.001, 'speed': 1.11}}
duplicate city: grand river south east,mu
duplicate city: punta arenas,cl
duplicate city: tasiilaq,gl
duplicate city: barentsburg,sj
city generated: barra do bugres,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A42BE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': -15.07, 'lon': -57.19},
'dt': 1520400535,
'id': 3470718,
'main': {'grnd_level': 997.73,
'humidity': 89,
'pressure': 997.73,
'sea_level': 1023.16,
'temp': 24.83,
'temp_max': 24.83,
'temp_min': 24.83},
'name': 'Barra do Bugres',
'rain': {'3h': 0.825},
'sys': {'country': 'BR',
'message': 0.0049,
'sunrise': 1520416243,
'sunset': 1520460504},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 311.501, 'speed': 1.51}}
duplicate city: grand gaube,mu
duplicate city: punta arenas,cl
duplicate city: fukue,jp
duplicate city: chuy,uy
duplicate city: saskylakh,ru
city generated: lubao,cd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BDDA58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 14.94, 'lon': 120.6},
'dt': 1520395200,
'id': 1705440,
'main': {'humidity': 52,
'pressure': 1013,
'temp': 33.39,
'temp_max': 34,
'temp_min': 32},
'name': 'Lubao',
'sys': {'country': 'PH',
'id': 7704,
'message': 0.0057,
'sunrise': 1520374255,
'sunset': 1520417193,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 40, 'speed': 2.1}}
duplicate city: mys shmidta,ru
duplicate city: taolanaro,mg
duplicate city: bluff,nz
duplicate city: belyy yar,ru
city generated: itoman,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A55C9E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: busselton,au
duplicate city: illoqqortoormiut,gl
city generated: clermont,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B335AC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -22.82, 'lon': 147.64},
'dt': 1520400480,
'id': 2171365,
'main': {'grnd_level': 985.81,
'humidity': 50,
'pressure': 985.81,
'sea_level': 1021.58,
'temp': 28.83,
'temp_max': 28.83,
'temp_min': 28.83},
'name': 'Clermont',
'sys': {'country': 'AU',
'message': 0.0032,
'sunrise': 1520366872,
'sunset': 1520411565},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 92.5009, 'speed': 7.46}}
duplicate city: san patricio,mx
city generated: rantepao,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A27D358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -2.97, 'lon': 119.9},
'dt': 1520400537,
'id': 1629974,
'main': {'grnd_level': 921.69,
'humidity': 100,
'pressure': 921.69,
'sea_level': 1020.48,
'temp': 22.63,
'temp_max': 22.63,
'temp_min': 22.63},
'name': 'Rantepao',
'rain': {'3h': 2.625},
'sys': {'country': 'ID',
'message': 0.0036,
'sunrise': 1520374022,
'sunset': 1520417747},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 226.001, 'speed': 0.71}}
duplicate city: mahenge,tz
duplicate city: butaritari,ki
duplicate city: vaini,to
duplicate city: kruisfontein,za
city generated: sanda,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5923C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 34.89, 'lon': 135.23},
'dt': 1520397000,
'id': 1853008,
'main': {'humidity': 46,
'pressure': 1028,
'temp': 10.52,
'temp_max': 12,
'temp_min': 9},
'name': 'Sanda',
'sys': {'country': 'JP',
'id': 7514,
'message': 0.0039,
'sunrise': 1520371262,
'sunset': 1520413184,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 30, 'speed': 2.6}}
duplicate city: mar del plata,ar
city generated: mackenzie,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BA00F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 55.34, 'lon': -123.09},
'dt': 1520398800,
'id': 6063191,
'main': {'humidity': 66,
'pressure': 1021,
'temp': -9,
'temp_max': -9,
'temp_min': -9},
'name': 'Mackenzie',
'sys': {'country': 'CA',
'id': 3302,
'message': 0.0042,
'sunrise': 1520434005,
'sunset': 1520474446,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 170, 'speed': 2.1}}
duplicate city: saint-philippe,re
city generated: sibu,my
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8D2B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 2.29, 'lon': 111.83},
'dt': 1520398800,
'id': 1735902,
'main': {'humidity': 88,
'pressure': 1010,
'temp': 26,
'temp_max': 26,
'temp_min': 26},
'name': 'Sibu',
'sys': {'country': 'MY',
'id': 8112,
'message': 0.0037,
'sunrise': 1520376076,
'sunset': 1520419570,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 250.001, 'speed': 1.16}}
city generated: awjilah,ly
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A76E550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 29.14, 'lon': 21.3},
'dt': 1520400538,
'id': 88533,
'main': {'grnd_level': 1018.4,
'humidity': 27,
'pressure': 1018.4,
'sea_level': 1021.9,
'temp': 20.3,
'temp_max': 20.3,
'temp_min': 20.3},
'name': 'Awjilah',
'sys': {'country': 'LY',
'message': 0.003,
'sunrise': 1520398419,
'sunset': 1520440698},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 232.001, 'speed': 4.51}}
duplicate city: vaini,to
duplicate city: butaritari,ki
city generated: cam pha,vn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6A3908>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: fairlie,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9800B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 33.31, 'lon': -95.96},
'dt': 1520398560,
'id': 4682762,
'main': {'humidity': 27,
'pressure': 1023,
'temp': 11.48,
'temp_max': 13,
'temp_min': 9},
'name': 'Fairlie',
'sys': {'country': 'US',
'id': 2726,
'message': 0.0037,
'sunrise': 1520426651,
'sunset': 1520468746,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 340, 'speed': 7.2}}
duplicate city: vao,nc
duplicate city: mar del plata,ar
duplicate city: rikitea,pf
duplicate city: fort nelson,ca
duplicate city: mataura,pf
duplicate city: lebu,cl
duplicate city: luderitz,na
duplicate city: gravdal,no
duplicate city: rikitea,pf
duplicate city: butaritari,ki
city generated: mumford,gh
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A090F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 5.26, 'lon': -0.76},
'dt': 1520400540,
'id': 2297810,
'main': {'grnd_level': 1017.75,
'humidity': 94,
'pressure': 1017.75,
'sea_level': 1024.05,
'temp': 24.58,
'temp_max': 24.58,
'temp_min': 24.58},
'name': 'Mumford',
'sys': {'country': 'GH',
'message': 0.0034,
'sunrise': 1520403156,
'sunset': 1520446526},
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 224.501, 'speed': 3.01}}
duplicate city: cape town,za
city generated: santa cruz,cr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19D4CDA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 36.97, 'lon': -122.03},
'dt': 1520398560,
'id': 5393052,
'main': {'humidity': 66,
'pressure': 1017,
'temp': 12.45,
'temp_max': 16,
'temp_min': 9},
'name': 'Santa Cruz',
'sys': {'country': 'US',
'id': 512,
'message': 0.004,
'sunrise': 1520433008,
'sunset': 1520474905,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 310, 'speed': 2.1}}
duplicate city: vila velha,br
duplicate city: khatanga,ru
duplicate city: attawapiskat,ca
duplicate city: rikitea,pf
city generated: fontem,cm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C36128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 5.49, 'lon': 9.85},
'dt': 1520400542,
'id': 2231564,
'main': {'grnd_level': 890.57,
'humidity': 94,
'pressure': 890.57,
'sea_level': 1024.62,
'temp': 15.48,
'temp_max': 15.48,
'temp_min': 15.48},
'name': 'Fontem',
'sys': {'country': 'CM',
'message': 0.0051,
'sunrise': 1520400616,
'sunset': 1520443975},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 185.501, 'speed': 0.96}}
duplicate city: vaitupu,wf
city generated: ishigaki,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A55AF60>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: ponta do sol,pt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACB7F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': -20.63, 'lon': -46},
'dt': 1520400543,
'id': 3453439,
'main': {'grnd_level': 922.83,
'humidity': 91,
'pressure': 922.83,
'sea_level': 1022.55,
'temp': 19.7,
'temp_max': 19.7,
'temp_min': 19.7},
'name': 'Ponta do Sol',
'rain': {'3h': 0.49},
'sys': {'country': 'BR',
'message': 0.0036,
'sunrise': 1520413418,
'sunset': 1520457954},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 49.5009, 'speed': 1.61}}
duplicate city: cockburn town,bs
duplicate city: punta arenas,cl
city generated: wawa,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BD1860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 9.9, 'lon': 4.41},
'dt': 1520400543,
'id': 2319078,
'main': {'grnd_level': 996.35,
'humidity': 71,
'pressure': 996.35,
'sea_level': 1022.39,
'temp': 21.03,
'temp_max': 21.03,
'temp_min': 21.03},
'name': 'Wawa',
'sys': {'country': 'NG',
'message': 0.0034,
'sunrise': 1520402017,
'sunset': 1520445189},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 224.001, 'speed': 4.11}}
city generated: sao luiz gonzaga,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B2C0F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: sorland,no
duplicate city: port elizabeth,za
duplicate city: kodiak,us
duplicate city: punta arenas,cl
duplicate city: taoudenni,ml
duplicate city: qaanaaq,gl
duplicate city: cabo san lucas,mx
duplicate city: mataura,pf
duplicate city: georgetown,sh
duplicate city: ushuaia,ar
duplicate city: te anau,nz
duplicate city: saint-philippe,re
duplicate city: atuona,pf
duplicate city: touros,br
duplicate city: butaritari,ki
duplicate city: chokurdakh,ru
duplicate city: albany,au
duplicate city: tabiauea,ki
duplicate city: jamestown,sh
duplicate city: provideniya,ru
duplicate city: qaanaaq,gl
duplicate city: yellowknife,ca
duplicate city: narsaq,gl
duplicate city: jamestown,sh
duplicate city: qaanaaq,gl
duplicate city: katsuura,jp
duplicate city: vardo,no
city generated: pangkalanbuun,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2754A8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: alta floresta,br
city generated: birin,dz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19ED9E10>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 35.01, 'lon': 36.67},
'dt': 1520400545,
'id': 170017,
'main': {'grnd_level': 971.79,
'humidity': 89,
'pressure': 971.79,
'sea_level': 1031.31,
'temp': 13.23,
'temp_max': 13.23,
'temp_min': 13.23},
'name': 'Birin',
'rain': {'3h': 0.105},
'sys': {'country': 'SY',
'message': 0.008,
'sunrise': 1520394898,
'sunset': 1520436849},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 262.501, 'speed': 3.76}}
duplicate city: carnarvon,au
city generated: mariinsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFC7AC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 100},
'cod': 200,
'coord': {'lat': 56.21, 'lon': 87.75},
'dt': 1520400545,
'id': 1499350,
'main': {'grnd_level': 997.57,
'humidity': 91,
'pressure': 997.57,
'sea_level': 1018.74,
'temp': 0.05,
'temp_max': 0.05,
'temp_min': 0.05},
'name': 'Mariinsk',
'sys': {'country': 'RU',
'message': 0.0048,
'sunrise': 1520383545,
'sunset': 1520423721},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 174.501, 'speed': 4.31}}
city generated: libreville,ga
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FFB5F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 0.39, 'lon': 9.45},
'dt': 1520398800,
'id': 2399697,
'main': {'humidity': 88,
'pressure': 1010,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Libreville',
'sys': {'country': 'GA',
'id': 6836,
'message': 0.0036,
'sunrise': 1520400601,
'sunset': 1520444178,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'thunderstorm',
'icon': '11n',
'id': 211,
'main': 'Thunderstorm'}],
'wind': {'deg': 150, 'speed': 2.6}}
duplicate city: puerto ayora,ec
city generated: cananeia,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A5D710>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hobart,au
duplicate city: upernavik,gl
duplicate city: vaini,to
duplicate city: hobart,au
duplicate city: hamilton,bm
duplicate city: nanortalik,gl
duplicate city: kruisfontein,za
city generated: yirol,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1390F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: ribeira grande,pt
duplicate city: longyearbyen,sj
duplicate city: poum,nc
duplicate city: georgetown,sh
duplicate city: ushuaia,ar
city generated: santa isabel,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A66E780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 4.71, 'lon': -75.1},
'dt': 1520400547,
'id': 3668716,
'main': {'grnd_level': 864.71,
'humidity': 99,
'pressure': 864.71,
'sea_level': 1022.67,
'temp': 16.28,
'temp_max': 16.28,
'temp_min': 16.28},
'name': 'Santa Isabel',
'sys': {'country': 'CO',
'message': 0.0039,
'sunrise': 1520420981,
'sunset': 1520464378},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 322.001, 'speed': 0.76}}
city generated: dujuma,so
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B17F4A8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: barrow,us
city generated: safford,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2D2B70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 32.83, 'lon': -109.71},
'dt': 1520398260,
'id': 5312476,
'main': {'humidity': 21,
'pressure': 1019,
'temp': 10,
'temp_max': 10,
'temp_min': 10},
'name': 'Safford',
'sys': {'country': 'US',
'id': 323,
'message': 0.0034,
'sunrise': 1520429935,
'sunset': 1520472060,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 100, 'speed': 3.6}}
duplicate city: taolanaro,mg
duplicate city: faya,td
city generated: san nicolas,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ABADE48>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.94, 'lon': -88.33},
'dt': 1520400548,
'id': 3601834,
'main': {'grnd_level': 948.69,
'humidity': 89,
'pressure': 948.69,
'sea_level': 1026.89,
'temp': 15.33,
'temp_max': 15.33,
'temp_min': 15.33},
'name': 'San Nicolas',
'sys': {'country': 'HN',
'message': 0.0037,
'sunrise': 1520424376,
'sunset': 1520467342},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 334.001, 'speed': 0.86}}
duplicate city: kodiak,us
city generated: la ronge,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B999B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 55.1, 'lon': -105.3},
'dt': 1520398800,
'id': 6050066,
'main': {'humidity': 92,
'pressure': 1024,
'temp': -11,
'temp_max': -11,
'temp_min': -11},
'name': 'La Ronge',
'sys': {'country': 'CA',
'id': 3914,
'message': 0.0036,
'sunrise': 1520429729,
'sunset': 1520470183,
'type': 1},
'visibility': 19312,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 240.501, 'speed': 1.61}}
duplicate city: vila,vu
duplicate city: avarua,ck
city generated: port moresby,pg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9E82B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -9.47, 'lon': 147.16},
'dt': 1520398800,
'id': 2088122,
'main': {'humidity': 59,
'pressure': 1003,
'temp': 32,
'temp_max': 32,
'temp_min': 32},
'name': 'Port Moresby',
'sys': {'country': 'PG',
'id': 8151,
'message': 0.007,
'sunrise': 1520367329,
'sunset': 1520411351,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 280, 'speed': 2.1}}
duplicate city: dingle,ie
duplicate city: zhigansk,ru
duplicate city: mount isa,au
duplicate city: puerto ayora,ec
duplicate city: dingle,ie
duplicate city: severo-kurilsk,ru
duplicate city: esperance,au
duplicate city: champerico,gt
duplicate city: new norfolk,au
duplicate city: puerto ayora,ec
duplicate city: sorland,no
duplicate city: vardo,no
duplicate city: praia da vitoria,pt
city generated: qostanay,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7254A8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: port moresby,pg
city generated: zhaoyuan,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CA7278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': 45.52, 'lon': 125.08},
'dt': 1520400549,
'id': 2033149,
'main': {'grnd_level': 1027.72,
'humidity': 88,
'pressure': 1027.72,
'sea_level': 1045.17,
'temp': -12.05,
'temp_max': -12.05,
'temp_min': -12.05},
'name': 'Zhaoyuan',
'sys': {'country': 'CN',
'message': 0.0047,
'sunrise': 1520374065,
'sunset': 1520415266},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 55.0009, 'speed': 3.46}}
duplicate city: vaini,to
duplicate city: dikson,ru
duplicate city: zhigansk,ru
duplicate city: rikitea,pf
duplicate city: albany,au
city generated: portland,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19962940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 45.52, 'lon': -122.67},
'dt': 1520398560,
'id': 5746545,
'main': {'humidity': 61,
'pressure': 1021,
'temp': 6,
'temp_max': 9,
'temp_min': 4},
'name': 'Portland',
'sys': {'country': 'US',
'id': 2274,
'message': 0.0059,
'sunrise': 1520433449,
'sunset': 1520474782,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 90, 'speed': 1.5}}
duplicate city: ambon,id
city generated: novaya zaimka,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFFAAC8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: leningradskiy,ru
duplicate city: arraial do cabo,br
city generated: monduli,tz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B22C2E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -3.3, 'lon': 36.45},
'dt': 1520395200,
'id': 153247,
'main': {'humidity': 94,
'pressure': 1017,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'Monduli',
'sys': {'country': 'TZ',
'id': 6487,
'message': 0.0075,
'sunrise': 1520394040,
'sunset': 1520437778,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 269.001, 'speed': 1.76}}
duplicate city: cherskiy,ru
duplicate city: tuatapere,nz
duplicate city: ushuaia,ar
duplicate city: dikson,ru
city generated: flinders,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199558D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -34.58, 'lon': 150.85},
'dt': 1520398800,
'id': 6255012,
'main': {'humidity': 43,
'pressure': 1026,
'temp': 23,
'temp_max': 23,
'temp_min': 23},
'name': 'Flinders',
'sys': {'country': 'AU',
'id': 8231,
'message': 0.003,
'sunrise': 1520365728,
'sunset': 1520411155,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 120, 'speed': 5.7}}
duplicate city: saskylakh,ru
duplicate city: luderitz,na
duplicate city: hilo,us
city generated: tartki,tj
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1CCE10>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: morgan city,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B3B5780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 29.7, 'lon': -91.21},
'dt': 1520399700,
'id': 4333811,
'main': {'humidity': 58,
'pressure': 1019,
'temp': 13.04,
'temp_max': 16,
'temp_min': 10},
'name': 'Morgan City',
'sys': {'country': 'US',
'id': 1202,
'message': 0.0037,
'sunrise': 1520425415,
'sunset': 1520467698,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 290, 'speed': 2.1}}
duplicate city: busselton,au
duplicate city: vao,nc
duplicate city: faanui,pf
duplicate city: new norfolk,au
duplicate city: ushuaia,ar
duplicate city: hermanus,za
duplicate city: arraial do cabo,br
city generated: la massana,ad
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF198EC940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 42.54, 'lon': 1.52},
'dt': 1520400552,
'id': 3041565,
'main': {'grnd_level': 826.61,
'humidity': 68,
'pressure': 826.61,
'sea_level': 1016.51,
'temp': -6.7,
'temp_max': -6.7,
'temp_min': -6.7},
'name': 'La Massana',
'sys': {'country': 'FR',
'message': 0.004,
'sunrise': 1520403570,
'sunset': 1520445056},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 278.001, 'speed': 1.21}}
duplicate city: rikitea,pf
duplicate city: srednekolymsk,ru
city generated: bandiagara,ml
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A793FD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.35, 'lon': -3.61},
'dt': 1520400553,
'id': 2460489,
'main': {'grnd_level': 975.84,
'humidity': 26,
'pressure': 975.84,
'sea_level': 1023.85,
'temp': 22.9,
'temp_max': 22.9,
'temp_min': 22.9},
'name': 'Bandiagara',
'sys': {'country': 'ML',
'message': 0.003,
'sunrise': 1520404039,
'sunset': 1520447019},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 25.0009, 'speed': 5.71}}
duplicate city: soyo,ao
duplicate city: chokurdakh,ru
duplicate city: souillac,mu
duplicate city: ilulissat,gl
duplicate city: carnarvon,au
duplicate city: illoqqortoormiut,gl
duplicate city: hermanus,za
duplicate city: ushuaia,ar
duplicate city: kodiak,us
duplicate city: saint-philippe,re
duplicate city: hami,cn
duplicate city: rawson,ar
duplicate city: bambous virieux,mu
duplicate city: busselton,au
duplicate city: vardo,no
city generated: madaoua,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E9208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.07, 'lon': 5.96},
'dt': 1520400553,
'id': 2441530,
'main': {'grnd_level': 985.81,
'humidity': 46,
'pressure': 985.81,
'sea_level': 1023.32,
'temp': 16.78,
'temp_max': 16.78,
'temp_min': 16.78},
'name': 'Madaoua',
'sys': {'country': 'NE',
'message': 0.0114,
'sunrise': 1520401737,
'sunset': 1520444728},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 12.0009, 'speed': 1.86}}
duplicate city: kapaa,us
duplicate city: mataura,pf
duplicate city: qaanaaq,gl
duplicate city: clyde river,ca
city generated: myitkyina,mm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7A07B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.38, 'lon': 97.4},
'dt': 1520400554,
'id': 1307741,
'main': {'grnd_level': 998.13,
'humidity': 62,
'pressure': 998.13,
'sea_level': 1026.81,
'temp': 24.68,
'temp_max': 24.68,
'temp_min': 24.68},
'name': 'Myitkyina',
'sys': {'country': 'MM',
'message': 0.0032,
'sunrise': 1520380071,
'sunset': 1520422521},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 15.0009, 'speed': 0.76}}
duplicate city: mys shmidta,ru
duplicate city: khatanga,ru
duplicate city: aklavik,ca
duplicate city: rikitea,pf
duplicate city: foz,es
duplicate city: upernavik,gl
duplicate city: albany,au
duplicate city: severo-kurilsk,ru
duplicate city: qaanaaq,gl
city generated: kouroussa,gn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A09D0F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 10.65, 'lon': -9.88},
'dt': 1520400554,
'id': 2418437,
'main': {'grnd_level': 976.73,
'humidity': 52,
'pressure': 976.73,
'sea_level': 1023.04,
'temp': 20.03,
'temp_max': 20.03,
'temp_min': 20.03},
'name': 'Kouroussa',
'sys': {'country': 'GN',
'message': 0.0035,
'sunrise': 1520405462,
'sunset': 1520448603},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 13.5009, 'speed': 2.21}}
city generated: garden city,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B3A6A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 40.73, 'lon': -73.63},
'dt': 1520400900,
'id': 5118226,
'main': {'humidity': 69,
'pressure': 1014,
'temp': 3.41,
'temp_max': 4,
'temp_min': 3},
'name': 'Garden City',
'sys': {'country': 'US',
'id': 1969,
'message': 0.0049,
'sunrise': 1520421523,
'sunset': 1520463166,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 140, 'speed': 4.1}}
duplicate city: cayenne,gf
duplicate city: yellowknife,ca
duplicate city: bluff,nz
duplicate city: geraldton,au
duplicate city: qaanaaq,gl
duplicate city: qaqortoq,gl
duplicate city: saint anthony,ca
duplicate city: samusu,ws
city generated: mangrol,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3B6080>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.33, 'lon': 76.51},
'dt': 1520400555,
'id': 1263751,
'main': {'grnd_level': 990.11,
'humidity': 36,
'pressure': 990.11,
'sea_level': 1027.33,
'temp': 29.38,
'temp_max': 29.38,
'temp_min': 29.38},
'name': 'Mangrol',
'sys': {'country': 'IN',
'message': 0.0048,
'sunrise': 1520385080,
'sunset': 1520427537},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 82.0009, 'speed': 2.26}}
duplicate city: yellowknife,ca
duplicate city: albany,au
duplicate city: katsuura,jp
city generated: phuket,th
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1B8B00>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
city generated: shekhupura,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC471D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: geraldton,au
duplicate city: new norfolk,au
city generated: bolshegrivskoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEE92E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: basco,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AA294A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 40.33, 'lon': -91.2},
'dt': 1520398920,
'id': 4863349,
'main': {'humidity': 86,
'pressure': 1014,
'temp': 1,
'temp_max': 1,
'temp_min': 1},
'name': 'Basco',
'sys': {'country': 'US',
'id': 878,
'message': 0.004,
'sunrise': 1520425722,
'sunset': 1520467399,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 320, 'speed': 7.2}}
city generated: ilinsko-podomskoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF3A080>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: saskylakh,ru
duplicate city: batagay-alyta,ru
duplicate city: alofi,nu
duplicate city: chuy,uy
duplicate city: mataura,pf
city generated: bulri,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC204A8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tessalit,ml
duplicate city: nanortalik,gl
duplicate city: busselton,au
duplicate city: port elizabeth,za
city generated: bhanpura,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2EE4E0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 24.51, 'lon': 75.75},
'dt': 1520400557,
'id': 1276152,
'main': {'grnd_level': 980.22,
'humidity': 46,
'pressure': 980.22,
'sea_level': 1027.25,
'temp': 25.53,
'temp_max': 25.53,
'temp_min': 25.53},
'name': 'Bhanpura',
'sys': {'country': 'IN',
'message': 0.0031,
'sunrise': 1520385241,
'sunset': 1520427739},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 75.5009, 'speed': 3.11}}
duplicate city: tuktoyaktuk,ca
duplicate city: taolanaro,mg
city generated: bam,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A475A58>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 29.11, 'lon': 58.36},
'dt': 1520400312,
'id': 141736,
'main': {'grnd_level': 886.27,
'humidity': 22,
'pressure': 886.27,
'sea_level': 1025.19,
'temp': 22.93,
'temp_max': 22.93,
'temp_min': 22.93},
'name': 'Bam',
'sys': {'country': 'IR',
'message': 0.0055,
'sunrise': 1520389531,
'sunset': 1520431801},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 293.501, 'speed': 1.26}}
duplicate city: matara,lk
duplicate city: hilo,us
city generated: ulagan,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0CFC88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 50.63, 'lon': 87.96},
'dt': 1520400558,
'id': 1488048,
'main': {'grnd_level': 796.86,
'humidity': 69,
'pressure': 796.86,
'sea_level': 1031.43,
'temp': -3.8,
'temp_max': -3.8,
'temp_min': -3.8},
'name': 'Ulagan',
'sys': {'country': 'RU',
'message': 0.0032,
'sunrise': 1520383188,
'sunset': 1520423966},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 156.501, 'speed': 1.31}}
duplicate city: pevek,ru
duplicate city: atuona,pf
duplicate city: bambous virieux,mu
duplicate city: faanui,pf
city generated: kapit,my
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8CA240>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 2.02, 'lon': 112.94},
'dt': 1520400558,
'id': 1737185,
'main': {'grnd_level': 998.62,
'humidity': 80,
'pressure': 998.62,
'sea_level': 1022.19,
'temp': 27.58,
'temp_max': 27.58,
'temp_min': 27.58},
'name': 'Kapit',
'sys': {'country': 'MY',
'message': 0.0032,
'sunrise': 1520375804,
'sunset': 1520419310},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 169.001, 'speed': 1.31}}
duplicate city: nome,us
duplicate city: rikitea,pf
city generated: pimentel,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9CDC50>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -3.7, 'lon': -45.5},
'dt': 1520400559,
'id': 3389609,
'main': {'grnd_level': 1016.7,
'humidity': 98,
'pressure': 1016.7,
'sea_level': 1023.32,
'temp': 23.13,
'temp_max': 23.13,
'temp_min': 23.13},
'name': 'Pimentel',
'sys': {'country': 'BR',
'message': 0.0038,
'sunrise': 1520413697,
'sunset': 1520457449},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 347.001, 'speed': 1.16}}
city generated: olenegorsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B016860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 68.14, 'lon': 33.28},
'dt': 1520400559,
'id': 515698,
'main': {'grnd_level': 1004.94,
'humidity': 77,
'pressure': 1004.94,
'sea_level': 1031.91,
'temp': -19.98,
'temp_max': -19.98,
'temp_min': -19.98},
'name': 'Olenegorsk',
'sys': {'country': 'RU',
'message': 0.0069,
'sunrise': 1520397680,
'sunset': 1520435767},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 204.501, 'speed': 1.06}}
city generated: trenggalek,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A288358>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -8.05, 'lon': 111.71},
'dt': 1520400429,
'id': 1623251,
'main': {'grnd_level': 975.92,
'humidity': 100,
'pressure': 975.92,
'sea_level': 1020.57,
'temp': 25.3,
'temp_max': 25.3,
'temp_min': 25.3},
'name': 'Trenggalek',
'rain': {'3h': 6.255},
'sys': {'country': 'ID',
'message': 0.0037,
'sunrise': 1520375871,
'sunset': 1520419824},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 212.501, 'speed': 1.46}}
duplicate city: yerbogachen,ru
duplicate city: xichang,cn
city generated: amapa,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A30E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 15.09, 'lon': -87.97},
'dt': 1520398800,
'id': 3603330,
'main': {'humidity': 88,
'pressure': 1014,
'temp': 22,
'temp_max': 22,
'temp_min': 22},
'name': 'Amapa',
'sys': {'country': 'HN',
'id': 4191,
'message': 0.0043,
'sunrise': 1520424293,
'sunset': 1520467252,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 130, 'speed': 2.1}}
duplicate city: kodiak,us
city generated: cap-aux-meules,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B782B0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: iqaluit,ca
city generated: naryan-mar,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AFE8240>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: satitoa,ws
duplicate city: shenjiamen,cn
city generated: muskegon,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B3F8438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 43.23, 'lon': -86.25},
'dt': 1520399820,
'id': 5003132,
'main': {'humidity': 92,
'pressure': 1006,
'temp': -0.26,
'temp_max': 1,
'temp_min': -1},
'name': 'Muskegon',
'sys': {'country': 'US',
'id': 1438,
'message': 0.0034,
'sunrise': 1520424635,
'sunset': 1520466115,
'type': 1},
'visibility': 4828,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'},
{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 10, 'speed': 3.6}}
duplicate city: mataura,pf
city generated: lucapa,ao
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19924048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': -8.42, 'lon': 20.74},
'dt': 1520400561,
'id': 145724,
'main': {'grnd_level': 928.34,
'humidity': 92,
'pressure': 928.34,
'sea_level': 1025.06,
'temp': 20.43,
'temp_max': 20.43,
'temp_min': 20.43},
'name': 'Lucapa',
'sys': {'country': 'AO',
'message': 0.0063,
'sunrise': 1520397695,
'sunset': 1520441658},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 324.501, 'speed': 1.86}}
duplicate city: hasaki,jp
duplicate city: thompson,ca
duplicate city: saskylakh,ru
duplicate city: hermanus,za
duplicate city: jamestown,sh
duplicate city: saint-pierre,pm
duplicate city: rikitea,pf
duplicate city: yellowknife,ca
city generated: soure,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B38C88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 40.06, 'lon': -8.63},
'dt': 1520398800,
'id': 2733851,
'main': {'humidity': 93,
'pressure': 1010,
'temp': 5,
'temp_max': 5,
'temp_min': 5},
'name': 'Soure',
'sys': {'country': 'PT',
'id': 5953,
'message': 0.004,
'sunrise': 1520405918,
'sunset': 1520447576,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 160, 'speed': 1.5}}
duplicate city: rio gallegos,ar
duplicate city: turukhansk,ru
duplicate city: mataura,pf
duplicate city: rikitea,pf
city generated: numan,ng
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8F9B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 9.46, 'lon': 12.04},
'dt': 1520400562,
'id': 2328617,
'main': {'grnd_level': 993.51,
'humidity': 55,
'pressure': 993.51,
'sea_level': 1021.9,
'temp': 21.65,
'temp_max': 21.65,
'temp_min': 21.65},
'name': 'Numan',
'sys': {'country': 'NG',
'message': 0.0032,
'sunrise': 1520400177,
'sunset': 1520443367},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 243.501, 'speed': 3.41}}
duplicate city: cape town,za
duplicate city: tasiilaq,gl
duplicate city: sentyabrskiy,ru
city generated: rock sound,bs
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B576A0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: east london,za
duplicate city: saint george,bm
duplicate city: kodiak,us
duplicate city: jamestown,sh
city generated: ossora,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B01BBA8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: talnakh,ru
city generated: qabis,tn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1D5AC8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: yellowknife,ca
city generated: teknaf,bd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199A2358>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: tasiilaq,gl
city generated: koslan,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF83EB8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hermanus,za
duplicate city: saint-philippe,re
duplicate city: kodiak,us
duplicate city: albany,au
duplicate city: mataura,pf
duplicate city: cape town,za
duplicate city: kavieng,pg
duplicate city: bluff,nz
duplicate city: kodiak,us
duplicate city: amderma,ru
city generated: arvi,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2C7828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 21, 'lon': 78.23},
'dt': 1520400565,
'id': 1278335,
'main': {'grnd_level': 986.95,
'humidity': 38,
'pressure': 986.95,
'sea_level': 1025.63,
'temp': 32.18,
'temp_max': 32.18,
'temp_min': 32.18},
'name': 'Arvi',
'sys': {'country': 'IN',
'message': 0.0029,
'sunrise': 1520384561,
'sunset': 1520427227},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 82.5009, 'speed': 5.61}}
duplicate city: port alfred,za
duplicate city: olinda,br
duplicate city: chokurdakh,ru
duplicate city: jamestown,sh
duplicate city: saint-philippe,re
duplicate city: khatanga,ru
duplicate city: ilhabela,br
duplicate city: sao filipe,cv
duplicate city: bluff,nz
duplicate city: iqaluit,ca
duplicate city: asau,tv
duplicate city: rikitea,pf
duplicate city: laguna,br
duplicate city: ushuaia,ar
duplicate city: port alfred,za
duplicate city: tumannyy,ru
duplicate city: kapaa,us
duplicate city: kapit,my
duplicate city: taolanaro,mg
duplicate city: albany,au
duplicate city: itarema,br
duplicate city: ushuaia,ar
duplicate city: touros,br
duplicate city: vaini,to
city generated: chilca,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9BBCC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': -13.22, 'lon': -72.34},
'dt': 1520395200,
'id': 3934055,
'main': {'humidity': 76,
'pressure': 1031,
'temp': 11,
'temp_max': 11,
'temp_min': 11},
'name': 'Chilca',
'sys': {'country': 'PE',
'id': 4413,
'message': 0.003,
'sunrise': 1520419924,
'sunset': 1520464096,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 193.501, 'speed': 0.41}}
duplicate city: bluff,nz
duplicate city: ponta do sol,pt
duplicate city: rikitea,pf
city generated: chibombo,zm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6D6710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -14.68, 'lon': 28.09},
'dt': 1520400565,
'id': 920233,
'main': {'grnd_level': 897.38,
'humidity': 100,
'pressure': 897.38,
'sea_level': 1024.78,
'temp': 18.53,
'temp_max': 18.53,
'temp_min': 18.53},
'name': 'Chibombo',
'sys': {'country': 'ZM',
'message': 0.003,
'sunrise': 1520395783,
'sunset': 1520440037},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 289.501, 'speed': 2.06}}
duplicate city: hermanus,za
duplicate city: padang,id
city generated: dicabisagan,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AA93B70>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bethel,us
duplicate city: lata,sb
duplicate city: tessalit,ml
duplicate city: saskylakh,ru
duplicate city: jalu,ly
duplicate city: north bend,us
city generated: tall kayf,iq
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A473550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 37.08, 'lon': 41.07},
'dt': 1520398800,
'id': 303750,
'main': {'humidity': 76,
'pressure': 1014,
'temp': 11.45,
'temp_max': 12,
'temp_min': 11},
'name': 'Tall Kayf',
'sys': {'country': 'TR',
'id': 7168,
'message': 0.0048,
'sunrise': 1520393906,
'sunset': 1520435732,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 340, 'speed': 3.6}}
duplicate city: punta arenas,cl
duplicate city: banda aceh,id
duplicate city: saskylakh,ru
duplicate city: bluff,nz
city generated: itamaraca,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AA5550>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: longyearbyen,sj
duplicate city: port elizabeth,za
duplicate city: prince rupert,ca
duplicate city: kapaa,us
duplicate city: cape town,za
duplicate city: airai,pw
city generated: abalak,ne
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8E52B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 15.46, 'lon': 6.28},
'dt': 1520400567,
'id': 2448245,
'main': {'grnd_level': 970.65,
'humidity': 47,
'pressure': 970.65,
'sea_level': 1024.78,
'temp': 18.28,
'temp_max': 18.28,
'temp_min': 18.28},
'name': 'Abalak',
'sys': {'country': 'NE',
'message': 0.0048,
'sunrise': 1520401691,
'sunset': 1520444621},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 17.5009, 'speed': 2.21}}
duplicate city: punta arenas,cl
duplicate city: salalah,om
duplicate city: qaanaaq,gl
duplicate city: padang,id
duplicate city: hithadhoo,mv
duplicate city: albany,au
city generated: turtas,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0CA550>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: sao borja,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B22278>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bredasdorp,za
duplicate city: taolanaro,mg
duplicate city: hermanus,za
duplicate city: vaini,to
duplicate city: taolanaro,mg
duplicate city: kapaa,us
duplicate city: mataura,pf
duplicate city: saint-philippe,re
duplicate city: port alfred,za
duplicate city: dikson,ru
duplicate city: khatanga,ru
duplicate city: busselton,au
city generated: burica,pa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A994FD0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mataura,pf
duplicate city: kaitangata,nz
duplicate city: mataura,pf
duplicate city: barentsburg,sj
duplicate city: ijaki,ki
city generated: oxford,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BAC208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 33.61, 'lon': -85.83},
'dt': 1520398560,
'id': 4081914,
'main': {'humidity': 70,
'pressure': 1012,
'temp': 9.03,
'temp_max': 11,
'temp_min': 6},
'name': 'Oxford',
'sys': {'country': 'US',
'id': 202,
'message': 0.0058,
'sunrise': 1520424231,
'sunset': 1520466305,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 230, 'speed': 2.1}}
duplicate city: fortuna,us
city generated: touba,ci
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C1E6D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 14.86, 'lon': -15.88},
'dt': 1520398800,
'id': 2244322,
'main': {'humidity': 57,
'pressure': 1010,
'temp': 24,
'temp_max': 24,
'temp_min': 24},
'name': 'Touba',
'sys': {'country': 'SN',
'id': 6162,
'message': 0.0069,
'sunrise': 1520406994,
'sunset': 1520449953,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 11.0009, 'speed': 3.11}}
city generated: towada,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5A60F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 40.61, 'lon': 141.21},
'dt': 1520395200,
'id': 2129211,
'main': {'humidity': 54,
'pressure': 1034,
'temp': -2,
'temp_max': -2,
'temp_min': -2},
'name': 'Towada',
'sys': {'country': 'JP',
'id': 7591,
'message': 0.0032,
'sunrise': 1520370014,
'sunset': 1520411569,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 280, 'speed': 4.1}}
duplicate city: severo-kurilsk,ru
city generated: maragogi,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AC86D8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -9.01, 'lon': -35.22},
'dt': 1520400570,
'id': 3395458,
'main': {'grnd_level': 1014.91,
'humidity': 98,
'pressure': 1014.91,
'sea_level': 1023.61,
'temp': 24.58,
'temp_max': 24.58,
'temp_min': 24.58},
'name': 'Maragogi',
'rain': {'3h': 0.215},
'sys': {'country': 'BR',
'message': 0.004,
'sunrise': 1520411112,
'sunset': 1520455097},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 10.0009, 'speed': 2.91}}
duplicate city: dikson,ru
duplicate city: naze,jp
duplicate city: asau,tv
city generated: dubuque,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B39FFD0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 42.5, 'lon': -90.66},
'dt': 1520398800,
'id': 4854529,
'main': {'humidity': 74,
'pressure': 1012,
'temp': -0.65,
'temp_max': 0,
'temp_min': -2},
'name': 'Dubuque',
'sys': {'country': 'US',
'id': 866,
'message': 0.0035,
'sunrise': 1520425666,
'sunset': 1520467199,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 350, 'speed': 6.2}}
duplicate city: bambous virieux,mu
duplicate city: rikitea,pf
duplicate city: puerto ayora,ec
duplicate city: atuona,pf
city generated: humboldt,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B934A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 52.21, 'lon': -105.12},
'dt': 1520400570,
'id': 5978404,
'main': {'grnd_level': 971.38,
'humidity': 75,
'pressure': 971.38,
'sea_level': 1045.25,
'temp': -15.28,
'temp_max': -15.28,
'temp_min': -15.28},
'name': 'Humboldt',
'sys': {'country': 'CA',
'message': 0.0031,
'sunrise': 1520429533,
'sunset': 1520470287},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 293.501, 'speed': 4.06}}
city generated: thinadhoo,mv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7BEDA0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: port alfred,za
duplicate city: vila franca do campo,pt
duplicate city: klyuchi,ru
duplicate city: bredasdorp,za
duplicate city: hasaki,jp
city generated: beauraing,be
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF199A82B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 50.11, 'lon': 4.96},
'dt': 1520398500,
'id': 2802501,
'main': {'humidity': 86,
'pressure': 991,
'temp': 4.34,
'temp_max': 5,
'temp_min': 4},
'name': 'Beauraing',
'sys': {'country': 'BE',
'id': 4849,
'message': 0.0042,
'sunrise': 1520403054,
'sunset': 1520443933,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 170, 'speed': 2.1}}
duplicate city: hithadhoo,mv
duplicate city: bluff,nz
duplicate city: bethel,us
duplicate city: busselton,au
duplicate city: beringovskiy,ru
duplicate city: garden city,us
duplicate city: severo-kurilsk,ru
duplicate city: rikitea,pf
duplicate city: qaanaaq,gl
duplicate city: ushuaia,ar
duplicate city: albany,au
duplicate city: kapaa,us
duplicate city: vaini,to
duplicate city: vaini,to
duplicate city: salalah,om
duplicate city: albany,au
duplicate city: saint anthony,ca
duplicate city: camacha,pt
duplicate city: avarua,ck
duplicate city: esperance,au
duplicate city: hermanus,za
city generated: amuntai,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A24FA20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -2.42, 'lon': 115.25},
'dt': 1520400572,
'id': 1651461,
'main': {'grnd_level': 1017.51,
'humidity': 90,
'pressure': 1017.51,
'sea_level': 1022.55,
'temp': 25.33,
'temp_max': 25.33,
'temp_min': 25.33},
'name': 'Amuntai',
'rain': {'3h': 1.265},
'sys': {'country': 'ID',
'message': 0.0027,
'sunrise': 1520375150,
'sunset': 1520418851},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 351.501, 'speed': 1.46}}
duplicate city: hithadhoo,mv
duplicate city: pisco,pe
duplicate city: arraial do cabo,br
duplicate city: ambilobe,mg
duplicate city: esperance,au
duplicate city: tasiilaq,gl
duplicate city: rikitea,pf
duplicate city: albany,au
duplicate city: ushuaia,ar
duplicate city: kapaa,us
duplicate city: saint george,bm
duplicate city: faanui,pf
city generated: loralai,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC39320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 30.37, 'lon': 68.6},
'dt': 1520400573,
'id': 1171868,
'main': {'grnd_level': 837.72,
'humidity': 28,
'pressure': 837.72,
'sea_level': 1027.09,
'temp': 18.73,
'temp_max': 18.73,
'temp_min': 18.73},
'name': 'Loralai',
'sys': {'country': 'PK',
'message': 0.0035,
'sunrise': 1520387109,
'sunset': 1520429309},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 313.001, 'speed': 1.76}}
duplicate city: hobart,au
duplicate city: bambanglipuro,id
duplicate city: cape town,za
city generated: inderborskiy,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A71FE80>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: illoqqortoormiut,gl
duplicate city: vaini,to
duplicate city: ushuaia,ar
duplicate city: puerto ayora,ec
duplicate city: cape town,za
duplicate city: port alfred,za
duplicate city: thompson,ca
duplicate city: yellowknife,ca
duplicate city: jamestown,sh
duplicate city: albany,au
duplicate city: kaitangata,nz
duplicate city: korla,cn
duplicate city: butaritari,ki
duplicate city: samusu,ws
duplicate city: mount isa,au
city generated: felidhoo,mv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7BE5C0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: cervo,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F23860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': -22.19, 'lon': -46.24},
'dt': 1520400574,
'id': 3469169,
'main': {'grnd_level': 906.29,
'humidity': 86,
'pressure': 906.29,
'sea_level': 1023,
'temp': 17.68,
'temp_max': 17.68,
'temp_min': 17.68},
'name': 'Cervo',
'sys': {'country': 'BR',
'message': 0.0034,
'sunrise': 1520413434,
'sunset': 1520458051},
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 67.0009, 'speed': 1.51}}
duplicate city: constitucion,cl
duplicate city: maniitsoq,gl
city generated: nokha,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3DE828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 27.56, 'lon': 73.47},
'dt': 1520400574,
'id': 1261227,
'main': {'grnd_level': 994.08,
'humidity': 38,
'pressure': 994.08,
'sea_level': 1026.93,
'temp': 29.7,
'temp_max': 29.7,
'temp_min': 29.7},
'name': 'Nokha',
'sys': {'country': 'IN',
'message': 0.0037,
'sunrise': 1520385866,
'sunset': 1520428212},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 158.001, 'speed': 2.11}}
duplicate city: am timan,td
duplicate city: hithadhoo,mv
duplicate city: punta arenas,cl
city generated: aksu,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C3ADA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 52.04, 'lon': 76.93},
'dt': 1520398800,
'id': 1524298,
'main': {'humidity': 73,
'pressure': 1011,
'temp': -6,
'temp_max': -6,
'temp_min': -6},
'name': 'Aksu',
'sys': {'country': 'KZ',
'id': 7205,
'message': 0.0039,
'sunrise': 1520385901,
'sunset': 1520426549,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 230, 'speed': 12}}
city generated: wyndham,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A992668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 51.61, 'lon': -3.54},
'dt': 1520398200,
'id': 2639447,
'main': {'humidity': 93,
'pressure': 991,
'temp': 1.89,
'temp_max': 4,
'temp_min': -1},
'name': 'Wyndham',
'sys': {'country': 'GB',
'id': 5074,
'message': 0.0047,
'sunrise': 1520405163,
'sunset': 1520445906,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 300, 'speed': 3.1}}
city generated: elliot lake,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B863C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 46.37, 'lon': -82.65},
'dt': 1520398800,
'id': 5947866,
'main': {'humidity': 92,
'pressure': 1007,
'temp': -3,
'temp_max': -3,
'temp_min': -3},
'name': 'Elliot Lake',
'sys': {'country': 'CA',
'id': 3658,
'message': 0.0038,
'sunrise': 1520423890,
'sunset': 1520465136,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 70, 'speed': 6.7}}
duplicate city: taolanaro,mg
duplicate city: cherskiy,ru
duplicate city: salalah,om
duplicate city: narsaq,gl
duplicate city: bluff,nz
duplicate city: upernavik,gl
duplicate city: voyvozh,ru
duplicate city: ushuaia,ar
city generated: si satchanalai,th
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1BF6D8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: san jeronimo,mx
duplicate city: busselton,au
city generated: thanh hoa,vn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6AAB38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 10.21, 'lon': 106.33},
'dt': 1520400576,
'id': 1574023,
'main': {'grnd_level': 1022.94,
'humidity': 53,
'pressure': 1022.94,
'sea_level': 1023.08,
'temp': 32.7,
'temp_max': 32.7,
'temp_min': 32.7},
'name': 'Thanh Hoa',
'sys': {'country': 'VN',
'message': 0.0032,
'sunrise': 1520377572,
'sunset': 1520420721},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 92.5009, 'speed': 6.36}}
duplicate city: cedar city,us
city generated: itaituba,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AA5128>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -4.26, 'lon': -55.99},
'dt': 1520400576,
'id': 3397967,
'main': {'grnd_level': 1013.21,
'humidity': 98,
'pressure': 1013.21,
'sea_level': 1023.28,
'temp': 22.78,
'temp_max': 22.78,
'temp_min': 22.78},
'name': 'Itaituba',
'sys': {'country': 'BR',
'message': 0.0095,
'sunrise': 1520416203,
'sunset': 1520459978},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 98.5009, 'speed': 0.96}}
duplicate city: bengkulu,id
duplicate city: isangel,vu
duplicate city: mataura,pf
duplicate city: busselton,au
duplicate city: rikitea,pf
duplicate city: hithadhoo,mv
duplicate city: busselton,au
duplicate city: barentsburg,sj
duplicate city: hobart,au
duplicate city: kodiak,us
duplicate city: busselton,au
city generated: nenjiang,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C7A9B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 49.17, 'lon': 125.23},
'dt': 1520400577,
'id': 2035601,
'main': {'grnd_level': 1005.19,
'humidity': 70,
'pressure': 1005.19,
'sea_level': 1044.32,
'temp': -9.38,
'temp_max': -9.38,
'temp_min': -9.38},
'name': 'Nenjiang',
'sys': {'country': 'CN',
'message': 0.0031,
'sunrise': 1520374187,
'sunset': 1520415078},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 219.501, 'speed': 3.01}}
duplicate city: rikitea,pf
duplicate city: san quintin,mx
duplicate city: belushya guba,ru
duplicate city: arraial do cabo,br
duplicate city: saskylakh,ru
duplicate city: port hedland,au
duplicate city: vaini,to
duplicate city: grand river south east,mu
duplicate city: saldanha,za
duplicate city: mataura,pf
duplicate city: nouadhibou,mr
duplicate city: tuktoyaktuk,ca
duplicate city: mataura,pf
duplicate city: boende,cd
city generated: rock springs,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6E3400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 41.59, 'lon': -109.2},
'dt': 1520398440,
'id': 5836898,
'main': {'humidity': 67,
'pressure': 1025,
'temp': -7,
'temp_max': -7,
'temp_min': -7},
'name': 'Rock Springs',
'sys': {'country': 'US',
'id': 3090,
'message': 0.0039,
'sunrise': 1520430079,
'sunset': 1520471682,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 240, 'speed': 4.1}}
duplicate city: chuy,uy
duplicate city: torbay,ca
city generated: chesma,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF02BA8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 53.81, 'lon': 60.65},
'dt': 1520400577,
'id': 1507926,
'main': {'grnd_level': 987.6,
'humidity': 71,
'pressure': 987.6,
'sea_level': 1026.85,
'temp': -13.18,
'temp_max': -13.18,
'temp_min': -13.18},
'name': 'Chesma',
'sys': {'country': 'RU',
'message': 0.0034,
'sunrise': 1520389897,
'sunset': 1520430370},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 280.001, 'speed': 7.51}}
duplicate city: leningradskiy,ru
duplicate city: bredasdorp,za
duplicate city: provideniya,ru
duplicate city: coquimbo,cl
duplicate city: port alfred,za
duplicate city: bluff,nz
duplicate city: atuona,pf
duplicate city: punta arenas,cl
city generated: ho,gh
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A090390>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 6.61, 'lon': 0.47},
'dt': 1520400578,
'id': 2300379,
'main': {'grnd_level': 1007.7,
'humidity': 94,
'pressure': 1007.7,
'sea_level': 1023.97,
'temp': 22.4,
'temp_max': 22.4,
'temp_min': 22.4},
'name': 'Ho',
'sys': {'country': 'GH',
'message': 0.0031,
'sunrise': 1520402890,
'sunset': 1520446203},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 223.501, 'speed': 2.46}}
duplicate city: isangel,vu
duplicate city: beloha,mg
duplicate city: port hardy,ca
duplicate city: thanh hoa,vn
duplicate city: cape town,za
duplicate city: taolanaro,mg
duplicate city: mahebourg,mu
duplicate city: port lincoln,au
duplicate city: kapaa,us
duplicate city: yulara,au
duplicate city: tsihombe,mg
duplicate city: albany,au
duplicate city: vaini,to
duplicate city: kapaa,us
duplicate city: cayenne,gf
duplicate city: puerto ayora,ec
duplicate city: longyearbyen,sj
duplicate city: ketchikan,us
duplicate city: ushuaia,ar
duplicate city: rikitea,pf
city generated: verkh-usugli,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0ECE48>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: severo-kurilsk,ru
duplicate city: hasaki,jp
duplicate city: hermanus,za
duplicate city: bredasdorp,za
duplicate city: atambua,id
duplicate city: rikitea,pf
duplicate city: rikitea,pf
city generated: gigmoto,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AAAB198>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: atuona,pf
duplicate city: butaritari,ki
duplicate city: new norfolk,au
duplicate city: kapaa,us
duplicate city: vardo,no
duplicate city: albany,au
city generated: porto velho,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B04940>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': -8.75, 'lon': -63.87},
'dt': 1520400579,
'id': 3662762,
'main': {'grnd_level': 1012.16,
'humidity': 95,
'pressure': 1012.16,
'sea_level': 1022.59,
'temp': 24.58,
'temp_max': 24.58,
'temp_min': 24.58},
'name': 'Porto Velho',
'sys': {'country': 'BR',
'message': 0.0031,
'sunrise': 1520417994,
'sunset': 1520461965},
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 175.501, 'speed': 1.01}}
duplicate city: longyearbyen,sj
duplicate city: saint-philippe,re
duplicate city: khatanga,ru
duplicate city: bengkulu,id
duplicate city: albany,au
duplicate city: busselton,au
city generated: giresun,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1ED160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': 40.91, 'lon': 38.39},
'dt': 1520400580,
'id': 746881,
'main': {'grnd_level': 931.58,
'humidity': 69,
'pressure': 931.58,
'sea_level': 1025.35,
'temp': 11.63,
'temp_max': 11.63,
'temp_min': 11.63},
'name': 'Giresun',
'sys': {'country': 'TR',
'message': 0.0034,
'sunrise': 1520394674,
'sunset': 1520436255},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 189.001, 'speed': 1.51}}
duplicate city: torbay,ca
duplicate city: faanui,pf
city generated: tilburg,nl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9307B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 51.56, 'lon': 5.08},
'dt': 1520398860,
'id': 2746301,
'main': {'humidity': 100,
'pressure': 992,
'temp': 2.51,
'temp_max': 4,
'temp_min': 1},
'name': 'Tilburg',
'sys': {'country': 'NL',
'id': 5210,
'message': 0.0054,
'sunrise': 1520403094,
'sunset': 1520443837,
'type': 1},
'visibility': 4100,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 80, 'speed': 1.5}}
duplicate city: ushuaia,ar
duplicate city: bandarbeyla,so
duplicate city: khatanga,ru
duplicate city: port alfred,za
duplicate city: punta arenas,cl
duplicate city: taolanaro,mg
duplicate city: carnarvon,au
duplicate city: butaritari,ki
duplicate city: te anau,nz
duplicate city: ushuaia,ar
city generated: bafq,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A475828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 31.6, 'lon': 55.4},
'dt': 1520400580,
'id': 142255,
'main': {'grnd_level': 891.7,
'humidity': 26,
'pressure': 891.7,
'sea_level': 1027.74,
'temp': 19.4,
'temp_max': 19.4,
'temp_min': 19.4},
'name': 'Bafq',
'sys': {'country': 'IR',
'message': 0.0042,
'sunrise': 1520390308,
'sunset': 1520432446},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 282.501, 'speed': 5.66}}
city generated: poronaysk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0400B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': 49.22, 'lon': 143.1},
'dt': 1520400581,
'id': 2121909,
'main': {'grnd_level': 1003.16,
'humidity': 79,
'pressure': 1003.16,
'sea_level': 1041.4,
'temp': -12.05,
'temp_max': -12.05,
'temp_min': -12.05},
'name': 'Poronaysk',
'sys': {'country': 'RU',
'message': 0.0098,
'sunrise': 1520369907,
'sunset': 1520410782},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 267.501, 'speed': 4.86}}
duplicate city: barrow,us
city generated: beruni,uz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6EA898>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: albany,au
city generated: beckley,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6D1CC0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 37.78, 'lon': -81.19},
'dt': 1520398500,
'id': 4798308,
'main': {'humidity': 86,
'pressure': 1005,
'temp': 1.35,
'temp_max': 2,
'temp_min': 1},
'name': 'Beckley',
'sys': {'country': 'US',
'id': 3047,
'message': 0.0046,
'sunrise': 1520423241,
'sunset': 1520465073,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 110, 'speed': 3.1}}
duplicate city: mataura,pf
duplicate city: barawe,so
city generated: north platte,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5D3B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 41.12, 'lon': -100.77},
'dt': 1520398380,
'id': 5697939,
'main': {'humidity': 53,
'pressure': 1023,
'temp': -3,
'temp_max': -3,
'temp_min': -3},
'name': 'North Platte',
'sys': {'country': 'US',
'id': 1913,
'message': 0.0091,
'sunrise': 1520428042,
'sunset': 1520469673,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 10, 'speed': 5.7}}
city generated: uthal,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC4CF98>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.81, 'lon': 66.62},
'dt': 1520400582,
'id': 1162862,
'main': {'grnd_level': 1009.73,
'humidity': 26,
'pressure': 1009.73,
'sea_level': 1026.28,
'temp': 30.98,
'temp_max': 30.98,
'temp_min': 30.98},
'name': 'Uthal',
'sys': {'country': 'PK',
'message': 0.0038,
'sunrise': 1520387464,
'sunset': 1520429900},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 0.500946, 'speed': 1.76}}
duplicate city: taolanaro,mg
city generated: sheridan,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6E34A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 39.65, 'lon': -105.03},
'dt': 1520398800,
'id': 5438542,
'main': {'humidity': 49,
'pressure': 1024,
'temp': -3.77,
'temp_max': 0,
'temp_min': -7},
'name': 'Sheridan',
'sys': {'country': 'US',
'id': 539,
'message': 0.0055,
'sunrise': 1520429015,
'sunset': 1520470742,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'few clouds',
'icon': '02n',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 190, 'speed': 2.6}}
duplicate city: salalah,om
city generated: cody,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6E2B38>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 44.53, 'lon': -109.06},
'dt': 1520398560,
'id': 5821593,
'main': {'humidity': 68,
'pressure': 1023,
'temp': -3,
'temp_max': -3,
'temp_min': -3},
'name': 'Cody',
'sys': {'country': 'US',
'id': 3075,
'message': 0.0037,
'sunrise': 1520430150,
'sunset': 1520471548,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 240, 'speed': 1.5}}
duplicate city: sao filipe,cv
duplicate city: broome,au
duplicate city: albany,au
duplicate city: bredasdorp,za
duplicate city: bethel,us
duplicate city: praia da vitoria,pt
duplicate city: ponta do sol,cv
duplicate city: balkanabat,tm
city generated: akyab,mm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7999B0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mataura,pf
duplicate city: east london,za
duplicate city: illoqqortoormiut,gl
city generated: roros,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9619E8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: butaritari,ki
duplicate city: port hedland,au
duplicate city: adrar,dz
duplicate city: la palma,pa
duplicate city: cherskiy,ru
city generated: diego de almagro,cl
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C263C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -26.39, 'lon': -70.05},
'dt': 1520400584,
'id': 3892454,
'main': {'grnd_level': 916.18,
'humidity': 90,
'pressure': 916.18,
'sea_level': 1025.11,
'temp': 11.83,
'temp_max': 11.83,
'temp_min': 11.83},
'name': 'Diego de Almagro',
'sys': {'country': 'CL',
'message': 0.0129,
'sunrise': 1520419034,
'sunset': 1520463874},
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 98.5009, 'speed': 1.06}}
duplicate city: okhotsk,ru
city generated: altayskoye,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEBA4A8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': 51.95, 'lon': 85.34},
'dt': 1520400585,
'id': 1511736,
'main': {'grnd_level': 989.38,
'humidity': 87,
'pressure': 989.38,
'sea_level': 1022.96,
'temp': 6.45,
'temp_max': 6.45,
'temp_min': 6.45},
'name': 'Altayskoye',
'sys': {'country': 'RU',
'message': 0.0039,
'sunrise': 1520383882,
'sunset': 1520424533},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 234.501, 'speed': 4.11}}
duplicate city: chuy,uy
duplicate city: port elizabeth,za
duplicate city: georgetown,sh
duplicate city: atuona,pf
duplicate city: caravelas,br
city generated: houlton,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B3BC9E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 46.13, 'lon': -67.84},
'dt': 1520398560,
'id': 4967563,
'main': {'humidity': 68,
'pressure': 1020,
'temp': -2,
'temp_max': -2,
'temp_min': -2},
'name': 'Houlton',
'sys': {'country': 'US',
'id': 1359,
'message': 0.0032,
'sunrise': 1520420331,
'sunset': 1520461588,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 50, 'speed': 4.6}}
duplicate city: barrow,us
duplicate city: bluff,nz
duplicate city: rikitea,pf
duplicate city: punta arenas,cl
duplicate city: busselton,au
city generated: olean,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A613EF0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 42.08, 'lon': -78.43},
'dt': 1520398560,
'id': 5129780,
'main': {'humidity': 86,
'pressure': 1006,
'temp': -1.49,
'temp_max': -1,
'temp_min': -2},
'name': 'Olean',
'sys': {'country': 'US',
'id': 2337,
'message': 0.0041,
'sunrise': 1520422719,
'sunset': 1520464275,
'type': 1},
'visibility': 12874,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 150, 'speed': 3.6}}
city generated: loum,cm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C36E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 4.72, 'lon': 9.72},
'dt': 1520400586,
'id': 2229152,
'main': {'grnd_level': 955.42,
'humidity': 95,
'pressure': 955.42,
'sea_level': 1024.7,
'temp': 20.78,
'temp_max': 20.78,
'temp_min': 20.78},
'name': 'Loum',
'sys': {'country': 'CM',
'message': 0.0044,
'sunrise': 1520400630,
'sunset': 1520444023},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 323.501, 'speed': 1.06}}
duplicate city: nioro,ml
duplicate city: geraldton,au
duplicate city: bluff,nz
duplicate city: hohhot,cn
duplicate city: hermanus,za
duplicate city: tuktoyaktuk,ca
city generated: damghan,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A478A20>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 36.17, 'lon': 54.34},
'dt': 1520400586,
'id': 138025,
'main': {'grnd_level': 899.97,
'humidity': 83,
'pressure': 899.97,
'sea_level': 1029.85,
'temp': 11.55,
'temp_max': 11.55,
'temp_min': 11.55},
'name': 'Damghan',
'sys': {'country': 'IR',
'message': 0.0041,
'sunrise': 1520390696,
'sunset': 1520432572},
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 101.001, 'speed': 1.76}}
city generated: imeni stepana razina,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF3A898>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: chifeng,cn
duplicate city: albany,au
duplicate city: belushya guba,ru
duplicate city: thompson,ca
duplicate city: ushuaia,ar
duplicate city: new norfolk,au
duplicate city: mar del plata,ar
duplicate city: barrow,us
city generated: chapais,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B7D0F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 49.78, 'lon': -74.86},
'dt': 1520398800,
'id': 5919850,
'main': {'humidity': 73,
'pressure': 1017,
'temp': -6,
'temp_max': -6,
'temp_min': -6},
'name': 'Chapais',
'sys': {'country': 'CA',
'id': 3777,
'message': 0.0042,
'sunrise': 1520422167,
'sunset': 1520463126,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 120, 'speed': 4.1}}
duplicate city: mataura,pf
duplicate city: jumla,np
duplicate city: rikitea,pf
duplicate city: georgetown,sh
duplicate city: mahebourg,mu
duplicate city: illoqqortoormiut,gl
duplicate city: punta arenas,cl
duplicate city: katsuura,jp
duplicate city: atuona,pf
duplicate city: acapulco,mx
duplicate city: saint-philippe,re
duplicate city: busselton,au
duplicate city: taolanaro,mg
city generated: hakodate,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A54DBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 41.8, 'lon': 140.75},
'dt': 1520395200,
'id': 2130188,
'main': {'humidity': 50,
'pressure': 1035,
'temp': -1,
'temp_max': -1,
'temp_min': -1},
'name': 'Hakodate',
'sys': {'country': 'JP',
'id': 7522,
'message': 0.0054,
'sunrise': 1520370167,
'sunset': 1520411639,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 280, 'speed': 5.1}}
duplicate city: rungata,ki
duplicate city: arraial do cabo,br
duplicate city: barcelos,br
duplicate city: albany,au
duplicate city: san quintin,mx
city generated: great falls,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A5D0860>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 47.5, 'lon': -111.29},
'dt': 1520398680,
'id': 5655240,
'main': {'humidity': 92,
'pressure': 1022,
'temp': -11.49,
'temp_max': -11,
'temp_min': -12},
'name': 'Great Falls',
'sys': {'country': 'US',
'id': 1741,
'message': 0.0049,
'sunrise': 1520430800,
'sunset': 1520471973,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 236.501, 'speed': 1.51}}
duplicate city: muli,mv
city generated: rebrikha,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0551D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 53.08, 'lon': 82.34},
'dt': 1520400588,
'id': 1493722,
'main': {'grnd_level': 993.92,
'humidity': 100,
'pressure': 993.92,
'sea_level': 1023.52,
'temp': 1.05,
'temp_max': 1.05,
'temp_min': 1.05},
'name': 'Rebrikha',
'rain': {'3h': 0.125},
'sys': {'country': 'RU',
'message': 0.0043,
'sunrise': 1520384660,
'sunset': 1520425196},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 249.001, 'speed': 9.26}}
duplicate city: sibolga,id
duplicate city: clyde river,ca
duplicate city: rikitea,pf
duplicate city: nanortalik,gl
duplicate city: lompoc,us
duplicate city: busselton,au
duplicate city: kavaratti,in
city generated: artyom,az
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19968DD8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 43.36, 'lon': 132.19},
'dt': 1520398800,
'id': 2027456,
'main': {'humidity': 35,
'pressure': 1033,
'temp': -3,
'temp_max': -3,
'temp_min': -3},
'name': 'Artyom',
'sys': {'country': 'RU',
'id': 7251,
'message': 0.0032,
'sunrise': 1520372276,
'sunset': 1520413639,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 200, 'speed': 4}}
city generated: ahome,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7CB748>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: saskylakh,ru
duplicate city: bredasdorp,za
city generated: fengzhen,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C4EE80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': 40.43, 'lon': 113.15},
'dt': 1520400589,
'id': 2037391,
'main': {'grnd_level': 891.05,
'humidity': 56,
'pressure': 891.05,
'sea_level': 1037.43,
'temp': 1.63,
'temp_max': 1.63,
'temp_min': 1.63},
'name': 'Fengzhen',
'sys': {'country': 'CN',
'message': 0.0036,
'sunrise': 1520376735,
'sunset': 1520418315},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 325.001, 'speed': 6.71}}
duplicate city: carnarvon,au
duplicate city: necochea,ar
duplicate city: ponta do sol,cv
duplicate city: severo-kurilsk,ru
duplicate city: sorland,no
duplicate city: kapaa,us
duplicate city: ushuaia,ar
duplicate city: mataura,pf
duplicate city: atuona,pf
duplicate city: san cristobal,ec
duplicate city: hithadhoo,mv
duplicate city: belushya guba,ru
duplicate city: alice springs,au
duplicate city: vostok,ru
duplicate city: hithadhoo,mv
duplicate city: mucurapo,tt
duplicate city: rikitea,pf
duplicate city: albany,au
duplicate city: tasiilaq,gl
duplicate city: faanui,pf
duplicate city: kodiak,us
duplicate city: airai,pw
city generated: ekhabi,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF1C780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 32},
'cod': 200,
'coord': {'lat': 53.51, 'lon': 142.97},
'dt': 1520400589,
'id': 2122614,
'main': {'grnd_level': 1030.64,
'humidity': 87,
'pressure': 1030.64,
'sea_level': 1033.74,
'temp': -15.13,
'temp_max': -15.13,
'temp_min': -15.13},
'name': 'Ekhabi',
'sys': {'country': 'RU',
'message': 0.0038,
'sunrise': 1520370156,
'sunset': 1520410604},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 276.501, 'speed': 7.96}}
duplicate city: castro,cl
duplicate city: thompson,ca
duplicate city: rikitea,pf
city generated: alekseyevsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AEB7550>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 57.84, 'lon': 108.35},
'dt': 1520400590,
'id': 2022083,
'main': {'grnd_level': 984.68,
'humidity': 46,
'pressure': 984.68,
'sea_level': 1044.56,
'temp': -12.13,
'temp_max': -12.13,
'temp_min': -12.13},
'name': 'Alekseyevsk',
'sys': {'country': 'RU',
'message': 0.0039,
'sunrise': 1520378717,
'sunset': 1520418667},
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 177.001, 'speed': 1.61}}
duplicate city: albany,au
duplicate city: albany,au
duplicate city: busselton,au
city generated: mayumba,ga
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FFB7B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 80},
'cod': 200,
'coord': {'lat': -3.44, 'lon': 10.65},
'dt': 1520400590,
'id': 2399001,
'main': {'grnd_level': 1014.18,
'humidity': 100,
'pressure': 1014.18,
'sea_level': 1025.06,
'temp': 25.83,
'temp_max': 25.83,
'temp_min': 25.83},
'name': 'Mayumba',
'sys': {'country': 'GA',
'message': 0.0034,
'sunrise': 1520400229,
'sunset': 1520443971},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 154.501, 'speed': 1.31}}
duplicate city: vaini,to
duplicate city: chifeng,cn
duplicate city: kapaa,us
duplicate city: banda aceh,id
duplicate city: barrow,us
city generated: ocampo,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A852BE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 13.56, 'lon': 123.37},
'dt': 1520400591,
'id': 1697332,
'main': {'grnd_level': 1013.53,
'humidity': 86,
'pressure': 1013.53,
'sea_level': 1023.4,
'temp': 27.9,
'temp_max': 27.9,
'temp_min': 27.9},
'name': 'Ocampo',
'sys': {'country': 'PH',
'message': 0.0033,
'sunrise': 1520373559,
'sunset': 1520416558},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 60.0009, 'speed': 4.36}}
duplicate city: rikitea,pf
duplicate city: samusu,ws
duplicate city: puerto ayora,ec
duplicate city: grindavik,is
duplicate city: meulaboh,id
duplicate city: butaritari,ki
duplicate city: mataura,pf
duplicate city: busselton,au
duplicate city: punta arenas,cl
duplicate city: mataura,pf
duplicate city: bilma,ne
duplicate city: bluff,nz
duplicate city: barrow,us
duplicate city: richards bay,za
duplicate city: lebu,cl
duplicate city: mar del plata,ar
duplicate city: taolanaro,mg
duplicate city: burica,pa
duplicate city: ponta do sol,cv
duplicate city: qaanaaq,gl
duplicate city: illoqqortoormiut,gl
duplicate city: vaini,to
city generated: aripuana,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A3A7B8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: kloulklubed,pw
city generated: oranjemund,na
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8DF0B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -28.55, 'lon': 16.43},
'dt': 1520400592,
'id': 3354071,
'main': {'grnd_level': 1026.58,
'humidity': 96,
'pressure': 1026.58,
'sea_level': 1027.37,
'temp': 17.53,
'temp_max': 17.53,
'temp_min': 17.53},
'name': 'Oranjemund',
'rain': {'3h': 0.32},
'sys': {'country': 'ZA',
'message': 0.0109,
'sunrise': 1520398206,
'sunset': 1520443196},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 158.501, 'speed': 7.01}}
duplicate city: nanortalik,gl
duplicate city: taolanaro,mg
duplicate city: upernavik,gl
duplicate city: rawannawi,ki
duplicate city: whitehorse,ca
duplicate city: jamestown,sh
duplicate city: goure,ne
duplicate city: dikson,ru
duplicate city: tiksi,ru
duplicate city: rikitea,pf
duplicate city: mataura,pf
duplicate city: puerto ayora,ec
duplicate city: puerto ayora,ec
duplicate city: provideniya,ru
duplicate city: punta arenas,cl
city generated: teguldet,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0B61D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 57.31, 'lon': 88.17},
'dt': 1520400592,
'id': 1489822,
'main': {'grnd_level': 997.08,
'humidity': 78,
'pressure': 997.08,
'sea_level': 1018.42,
'temp': -1.33,
'temp_max': -1.33,
'temp_min': -1.33},
'name': 'Teguldet',
'sys': {'country': 'RU',
'message': 0.0048,
'sunrise': 1520383515,
'sunset': 1520423552},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 157.501, 'speed': 3.56}}
duplicate city: provideniya,ru
duplicate city: san patricio,mx
duplicate city: abu dhabi,ae
duplicate city: taolanaro,mg
duplicate city: sisimiut,gl
duplicate city: carnarvon,au
city generated: waipawa,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A98E668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -39.94, 'lon': 176.59},
'dt': 1520400593,
'id': 2185329,
'main': {'grnd_level': 989.22,
'humidity': 97,
'pressure': 989.22,
'sea_level': 1020,
'temp': 16.68,
'temp_max': 16.68,
'temp_min': 16.68},
'name': 'Waipawa',
'rain': {'3h': 5.555},
'sys': {'country': 'NZ',
'message': 0.0084,
'sunrise': 1520359336,
'sunset': 1520405187},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 140.001, 'speed': 1.81}}
city generated: totness,sr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1829B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 33.74, 'lon': -80.8},
'dt': 1520398560,
'id': 4589590,
'main': {'humidity': 100,
'pressure': 1008,
'temp': 11.75,
'temp_max': 14,
'temp_min': 10},
'name': 'Totness',
'sys': {'country': 'US',
'id': 2427,
'message': 0.0046,
'sunrise': 1520423028,
'sunset': 1520465094,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 310, 'speed': 6.2}}
city generated: rosarito,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A86A908>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 4.91, 'lon': -75.23},
'dt': 1520398800,
'id': 3676604,
'main': {'humidity': 88,
'pressure': 1016,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'Rosarito',
'sys': {'country': 'CO',
'id': 4268,
'message': 0.0037,
'sunrise': 1520421017,
'sunset': 1520464405,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 50, 'speed': 2.1}}
duplicate city: bandarbeyla,so
duplicate city: barrow,us
duplicate city: aswan,eg
duplicate city: pevek,ru
city generated: paita,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9CD2E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 36},
'cod': 200,
'coord': {'lat': -5.09, 'lon': -81.11},
'dt': 1520400594,
'id': 3694112,
'main': {'grnd_level': 1009.16,
'humidity': 80,
'pressure': 1009.16,
'sea_level': 1024.17,
'temp': 22.23,
'temp_max': 22.23,
'temp_min': 22.23},
'name': 'Paita',
'sys': {'country': 'PE',
'message': 0.0034,
'sunrise': 1520422213,
'sunset': 1520466023},
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 196.001, 'speed': 1.21}}
duplicate city: yerbogachen,ru
duplicate city: quelimane,mz
duplicate city: grand river south east,mu
duplicate city: kavieng,pg
city generated: lumberton,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A69CCF8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 30.27, 'lon': -94.2},
'dt': 1520398500,
'id': 4708328,
'main': {'humidity': 47,
'pressure': 1022,
'temp': 13,
'temp_max': 13,
'temp_min': 13},
'name': 'Lumberton',
'sys': {'country': 'US',
'id': 2561,
'message': 0.0033,
'sunrise': 1520426147,
'sunset': 1520468402,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 340, 'speed': 3.6}}
duplicate city: punta arenas,cl
duplicate city: mataura,pf
duplicate city: belushya guba,ru
duplicate city: bethel,us
duplicate city: barentsburg,sj
duplicate city: salinopolis,br
duplicate city: hervey bay,au
duplicate city: salalah,om
city generated: araguaina,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A371D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: castro,cl
duplicate city: port elizabeth,za
duplicate city: cape town,za
city generated: fortuna foothills,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2CED68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 32.66, 'lon': -114.41},
'dt': 1520398620,
'id': 5295143,
'main': {'humidity': 17,
'pressure': 1017,
'temp': 17,
'temp_max': 17,
'temp_min': 17},
'name': 'Fortuna Foothills',
'sys': {'country': 'US',
'id': 337,
'message': 0.0034,
'sunrise': 1520431057,
'sunset': 1520473193,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 290, 'speed': 3.1}}
duplicate city: santa maria,cv
duplicate city: touros,br
duplicate city: vaini,to
duplicate city: severo-kurilsk,ru
duplicate city: hilo,us
duplicate city: saskylakh,ru
city generated: liberty,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A69C7F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 39.64, 'lon': -84.93},
'dt': 1520399100,
'id': 4260329,
'main': {'humidity': 94,
'pressure': 1007,
'temp': 3.35,
'temp_max': 4,
'temp_min': 2},
'name': 'Liberty',
'sys': {'country': 'US',
'id': 2179,
'message': 0.0041,
'sunrise': 1520424196,
'sunset': 1520465915,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 320, 'gust': 9.3, 'speed': 4.6}}
duplicate city: necochea,ar
duplicate city: tuktoyaktuk,ca
city generated: sovetskaya gavan,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B092198>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: cabo san lucas,mx
duplicate city: rikitea,pf
duplicate city: ushuaia,ar
duplicate city: barentsburg,sj
duplicate city: carnarvon,au
duplicate city: clyde river,ca
duplicate city: arraial do cabo,br
duplicate city: rikitea,pf
city generated: aquiraz,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A35898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': -3.9, 'lon': -38.39},
'dt': 1520398800,
'id': 3407407,
'main': {'humidity': 88,
'pressure': 1010,
'temp': 27,
'temp_max': 27,
'temp_min': 27},
'name': 'Aquiraz',
'sys': {'country': 'BR',
'id': 4498,
'message': 0.0032,
'sunrise': 1520411987,
'sunset': 1520455748,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 60, 'speed': 2.1}}
duplicate city: castro,cl
duplicate city: cidreira,br
duplicate city: eyl,so
duplicate city: san cristobal,ec
duplicate city: chokurdakh,ru
duplicate city: punta arenas,cl
duplicate city: te anau,nz
duplicate city: bluff,nz
duplicate city: bengkulu,id
duplicate city: tsihombe,mg
duplicate city: jamestown,sh
duplicate city: iqaluit,ca
duplicate city: atuona,pf
duplicate city: marsa matruh,eg
duplicate city: tasiilaq,gl
duplicate city: hobart,au
city generated: yambio,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B137E10>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: itaocara,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19AA5BA8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -21.67, 'lon': -42.08},
'dt': 1520400597,
'id': 3460774,
'main': {'grnd_level': 993.51,
'humidity': 94,
'pressure': 993.51,
'sea_level': 1023.69,
'temp': 19.45,
'temp_max': 19.45,
'temp_min': 19.45},
'name': 'Itaocara',
'sys': {'country': 'BR',
'message': 0.0028,
'sunrise': 1520412449,
'sunset': 1520457040},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 26.5009, 'speed': 0.76}}
duplicate city: cayenne,gf
duplicate city: busselton,au
duplicate city: kruisfontein,za
duplicate city: ukiah,us
duplicate city: taolanaro,mg
duplicate city: port hedland,au
duplicate city: punta arenas,cl
duplicate city: chuy,uy
duplicate city: rikitea,pf
duplicate city: busselton,au
duplicate city: chokurdakh,ru
duplicate city: bluff,nz
duplicate city: airai,pw
duplicate city: flinders,au
duplicate city: krasnoselkup,ru
duplicate city: margate,za
duplicate city: jamestown,sh
duplicate city: milkovo,ru
city generated: moratuwa,lk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A735F60>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 6.77, 'lon': 79.88},
'dt': 1520395800,
'id': 1234633,
'main': {'humidity': 70,
'pressure': 1012,
'temp': 29,
'temp_max': 29,
'temp_min': 29},
'name': 'Moratuwa',
'sys': {'country': 'LK',
'id': 7864,
'message': 0.0041,
'sunrise': 1520383841,
'sunset': 1520427142,
'type': 1},
'visibility': 9000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 130, 'speed': 2.1}}
duplicate city: nikolskoye,ru
duplicate city: qaanaaq,gl
duplicate city: cidreira,br
duplicate city: narsaq,gl
duplicate city: beyneu,kz
duplicate city: tual,id
duplicate city: amderma,ru
duplicate city: lagoa,pt
duplicate city: tumannyy,ru
city generated: callaway,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B335588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 46.98, 'lon': -95.91},
'dt': 1520399700,
'id': 5024237,
'main': {'humidity': 92,
'pressure': 1020,
'temp': -13.42,
'temp_max': -10,
'temp_min': -16},
'name': 'Callaway',
'sys': {'country': 'US',
'id': 1500,
'message': 0.0866,
'sunrise': 1520427093,
'sunset': 1520468298,
'type': 1},
'visibility': 11265,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 320, 'speed': 2.6}}
duplicate city: taolanaro,mg
city generated: conselheiro lafaiete,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A71C88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': -20.66, 'lon': -43.79},
'dt': 1520400598,
'id': 3465644,
'main': {'grnd_level': 905.24,
'humidity': 99,
'pressure': 905.24,
'sea_level': 1023.44,
'temp': 19.45,
'temp_max': 19.45,
'temp_min': 19.45},
'name': 'Conselheiro Lafaiete',
'sys': {'country': 'BR',
'message': 0.003,
'sunrise': 1520412887,
'sunset': 1520457424},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 121.501, 'speed': 1.31}}
duplicate city: arraial do cabo,br
duplicate city: ponta do sol,cv
duplicate city: illoqqortoormiut,gl
duplicate city: yar-sale,ru
duplicate city: thompson,ca
duplicate city: new norfolk,au
duplicate city: busselton,au
duplicate city: port alfred,za
duplicate city: new norfolk,au
duplicate city: port hardy,ca
duplicate city: mataura,pf
duplicate city: trincomalee,lk
duplicate city: berlevag,no
city generated: sembakung,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A27DC50>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: bethel,us
city generated: murshidabad,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3C75F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 24.17, 'lon': 88.27},
'dt': 1520400599,
'id': 1262412,
'main': {'grnd_level': 1024.15,
'humidity': 65,
'pressure': 1024.15,
'sea_level': 1026.69,
'temp': 27.88,
'temp_max': 27.88,
'temp_min': 27.88},
'name': 'Murshidabad',
'sys': {'country': 'IN',
'message': 0.0027,
'sunrise': 1520382230,
'sunset': 1520424742},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 318.501, 'speed': 3.16}}
duplicate city: rikitea,pf
duplicate city: ushuaia,ar
duplicate city: chuy,uy
city generated: saryg-sep,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B067208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 51.49, 'lon': 95.55},
'dt': 1520400599,
'id': 1492948,
'main': {'grnd_level': 902,
'humidity': 69,
'pressure': 902,
'sea_level': 1038.52,
'temp': -3.23,
'temp_max': -3.23,
'temp_min': -3.23},
'name': 'Saryg-Sep',
'sys': {'country': 'RU',
'message': 0.0043,
'sunrise': 1520381412,
'sunset': 1520422102},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 157.501, 'speed': 0.86}}
duplicate city: barrow,us
duplicate city: rikitea,pf
city generated: davila,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AA8FDA0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: qaanaaq,gl
duplicate city: castro,cl
duplicate city: alta floresta,br
duplicate city: bluff,nz
duplicate city: ushuaia,ar
duplicate city: yellowknife,ca
duplicate city: hamilton,bm
duplicate city: coihaique,cl
duplicate city: rikitea,pf
duplicate city: cape town,za
duplicate city: ponta do sol,pt
duplicate city: alyangula,au
duplicate city: thompson,ca
city generated: santa maria da boa vista,br
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19B17D68>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': -8.8, 'lon': -39.83},
'dt': 1520400600,
'id': 3389462,
'main': {'grnd_level': 978.76,
'humidity': 99,
'pressure': 978.76,
'sea_level': 1024.17,
'temp': 21.03,
'temp_max': 21.03,
'temp_min': 21.03},
'name': 'Santa Maria da Boa Vista',
'rain': {'3h': 6.4},
'sys': {'country': 'BR',
'message': 0.004,
'sunrise': 1520412223,
'sunset': 1520456198},
'weather': [{'description': 'moderate rain',
'icon': '10n',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 196.001, 'speed': 0.66}}
city generated: bousso,td
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B199CC0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: putina,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9D05C0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -14.91, 'lon': -69.87},
'dt': 1520400603,
'id': 3931275,
'main': {'grnd_level': 616.02,
'humidity': 96,
'pressure': 616.02,
'sea_level': 1024.25,
'temp': 1.98,
'temp_max': 1.98,
'temp_min': 1.98},
'name': 'Putina',
'rain': {'3h': 0.17},
'sys': {'country': 'PE',
'message': 0.2145,
'sunrise': 1520419291,
'sunset': 1520463542},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 49.5009, 'speed': 1.71}}
duplicate city: taoudenni,ml
city generated: jujuy,ar
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19927908>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: lamar,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B323828>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 38.09, 'lon': -102.62},
'dt': 1520398380,
'id': 5427957,
'main': {'humidity': 44,
'pressure': 1025,
'temp': -6,
'temp_max': -6,
'temp_min': -6},
'name': 'Lamar',
'sys': {'country': 'US',
'id': 565,
'message': 0.2901,
'sunrise': 1520428388,
'sunset': 1520470211,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 37.5009, 'speed': 3.06}}
duplicate city: mayumba,ga
duplicate city: dikson,ru
duplicate city: new norfolk,au
city generated: tazovskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0B2DD8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: ivdel,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF45320>
associated weather data:
{'base': 'stations',
'clouds': {'all': 12},
'cod': 200,
'coord': {'lat': 60.7, 'lon': 60.42},
'dt': 1520400606,
'id': 1505260,
'main': {'grnd_level': 991.16,
'humidity': 63,
'pressure': 991.16,
'sea_level': 1008.36,
'temp': -14.35,
'temp_max': -14.35,
'temp_min': -14.35},
'name': 'Ivdel',
'sys': {'country': 'RU',
'message': 0.0043,
'sunrise': 1520390408,
'sunset': 1520429986},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 294.001, 'speed': 6.76}}
duplicate city: ixtapa,mx
duplicate city: kodiak,us
duplicate city: palabuhanratu,id
duplicate city: kapaa,us
duplicate city: yar-sale,ru
duplicate city: saint-georges,gf
duplicate city: bengkulu,id
duplicate city: kaitangata,nz
duplicate city: hermanus,za
duplicate city: butaritari,ki
duplicate city: tuktoyaktuk,ca
duplicate city: mataura,pf
city generated: darfield,nz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A97BAC8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 44},
'cod': 200,
'coord': {'lat': -43.49, 'lon': 172.11},
'dt': 1520398800,
'id': 2191913,
'main': {'humidity': 72,
'pressure': 1017,
'temp': 15,
'temp_max': 15,
'temp_min': 15},
'name': 'Darfield',
'sys': {'country': 'NZ',
'id': 8278,
'message': 0.0139,
'sunrise': 1520360252,
'sunset': 1520406415,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 30, 'speed': 3.1}}
city generated: lelydorp,sr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B182438>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 5.69, 'lon': -55.21},
'dt': 1520398800,
'id': 3383714,
'main': {'humidity': 100,
'pressure': 1012,
'temp': 23,
'temp_max': 23,
'temp_min': 23},
'name': 'Lelydorp',
'sys': {'country': 'SR',
'id': 4780,
'message': 0.0221,
'sunrise': 1520416230,
'sunset': 1520459585,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 70, 'speed': 1}}
duplicate city: barrow,us
duplicate city: namatanai,pg
duplicate city: hermanus,za
city generated: kuhestan,af
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF198F5588>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: naryan-mar,ru
duplicate city: dikson,ru
duplicate city: arraial do cabo,br
city generated: sinkat,sd
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B134F98>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: punta arenas,cl
duplicate city: ushuaia,ar
city generated: zabol,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A48D5F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 31.03, 'lon': 61.49},
'dt': 1520398800,
'id': 1113217,
'main': {'humidity': 42,
'pressure': 1015,
'temp': 18,
'temp_max': 18,
'temp_min': 18},
'name': 'Zabol',
'sys': {'country': 'IR',
'id': 7061,
'message': 0.0039,
'sunrise': 1520388832,
'sunset': 1520430999,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 350, 'speed': 6.2}}
duplicate city: mahebourg,mu
duplicate city: cape town,za
duplicate city: aksu,cn
duplicate city: atuona,pf
duplicate city: kodiak,us
duplicate city: taolanaro,mg
duplicate city: bluff,nz
duplicate city: castro,cl
city generated: bella union,uy
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A6E37F0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 8.5, 'lon': -73.35},
'dt': 1520400609,
'id': 3681990,
'main': {'grnd_level': 908.81,
'humidity': 98,
'pressure': 908.81,
'sea_level': 1023.32,
'temp': 18.33,
'temp_max': 18.33,
'temp_min': 18.33},
'name': 'Bella Union',
'rain': {'3h': 0.245},
'sys': {'country': 'CO',
'message': 0.0034,
'sunrise': 1520420642,
'sunset': 1520463880},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 82.5009, 'speed': 0.96}}
duplicate city: xining,cn
city generated: ballina,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19950470>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 54.11, 'lon': -9.15},
'dt': 1520400610,
'id': 2966778,
'main': {'grnd_level': 988.25,
'humidity': 100,
'pressure': 988.25,
'sea_level': 998.56,
'temp': 2.48,
'temp_max': 2.48,
'temp_min': 2.48},
'name': 'Ballina',
'rain': {'3h': 0.475},
'sys': {'country': 'IE',
'message': 0.0238,
'sunrise': 1520406637,
'sunset': 1520447129},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 240.001, 'speed': 2.21}}
duplicate city: atuona,pf
city generated: oshnaviyeh,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A4835F8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 37.04, 'lon': 45.1},
'dt': 1520398800,
'id': 121795,
'main': {'humidity': 93,
'pressure': 1015,
'temp': 6,
'temp_max': 6,
'temp_min': 6},
'name': 'Oshnaviyeh',
'sys': {'country': 'IR',
'id': 7056,
'message': 0.0047,
'sunrise': 1520392938,
'sunset': 1520434765,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 10, 'speed': 2.1}}
duplicate city: clyde river,ca
city generated: kingman,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2D2208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 35.19, 'lon': -114.05},
'dt': 1520398560,
'id': 5301067,
'main': {'humidity': 14,
'pressure': 1020,
'temp': 14.22,
'temp_max': 18,
'temp_min': 7},
'name': 'Kingman',
'sys': {'country': 'US',
'id': 310,
'message': 0.004,
'sunrise': 1520431042,
'sunset': 1520473039,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 110, 'speed': 5.1}}
duplicate city: taolanaro,mg
duplicate city: hilo,us
duplicate city: upernavik,gl
duplicate city: viedma,ar
duplicate city: port hardy,ca
city generated: macusani,pe
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9C67B8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 88},
'cod': 200,
'coord': {'lat': -14.07, 'lon': -70.43},
'dt': 1520400611,
'id': 3935624,
'main': {'grnd_level': 740.61,
'humidity': 100,
'pressure': 740.61,
'sea_level': 1024.21,
'temp': 9.3,
'temp_max': 9.3,
'temp_min': 9.3},
'name': 'Macusani',
'rain': {'3h': 0.525},
'sys': {'country': 'PE',
'message': 0.0029,
'sunrise': 1520419445,
'sunset': 1520463657},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 145.001, 'speed': 0.76}}
duplicate city: kruisfontein,za
duplicate city: amderma,ru
duplicate city: torbay,ca
duplicate city: balkhash,kz
duplicate city: san patricio,mx
city generated: nemuro,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A57FB70>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: beisfjord,no
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A9401D0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 68.38, 'lon': 17.6},
'dt': 1520398200,
'id': 3144987,
'main': {'humidity': 52,
'pressure': 1007,
'temp': -8,
'temp_max': -8,
'temp_min': -8},
'name': 'Beisfjord',
'sys': {'country': 'NO',
'id': 5287,
'message': 0.0935,
'sunrise': 1520401465,
'sunset': 1520439508,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 120, 'speed': 6.7}}
city generated: along,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2BB2B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 48},
'cod': 200,
'coord': {'lat': 28.17, 'lon': 94.8},
'dt': 1520400612,
'id': 1278969,
'main': {'grnd_level': 913.35,
'humidity': 76,
'pressure': 913.35,
'sea_level': 1028.83,
'temp': 15.68,
'temp_max': 15.68,
'temp_min': 15.68},
'name': 'Along',
'rain': {'3h': 0.35},
'sys': {'country': 'IN',
'message': 0.0035,
'sunrise': 1520380767,
'sunset': 1520423075},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 122.501, 'speed': 0.71}}
city generated: salur,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A41F2E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 18.52, 'lon': 83.21},
'dt': 1520400613,
'id': 1257587,
'main': {'grnd_level': 997.24,
'humidity': 30,
'pressure': 997.24,
'sea_level': 1025.15,
'temp': 35.03,
'temp_max': 35.03,
'temp_min': 35.03},
'name': 'Salur',
'sys': {'country': 'IN',
'message': 0.0707,
'sunrise': 1520383307,
'sunset': 1520426088},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 87.0009, 'speed': 2.56}}
duplicate city: samusu,ws
duplicate city: cape town,za
city generated: alcaniz,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F0FC88>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hobart,au
city generated: edzell,gb
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A027B00>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 56.81, 'lon': -2.65},
'dt': 1520398200,
'id': 2642302,
'main': {'humidity': 100,
'pressure': 988,
'temp': 2,
'temp_max': 3,
'temp_min': 1},
'name': 'Edzell',
'sys': {'country': 'GB',
'id': 5134,
'message': 0.1589,
'sunrise': 1520405239,
'sunset': 1520445413,
'type': 1},
'visibility': 5000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 250, 'speed': 1.5}}
duplicate city: hambantota,lk
city generated: marana,us
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B2D2390>
associated weather data:
{'base': 'stations',
'clouds': {'all': 1},
'cod': 200,
'coord': {'lat': 32.44, 'lon': -111.22},
'dt': 1520398680,
'id': 5303705,
'main': {'humidity': 30,
'pressure': 1017,
'temp': 14.52,
'temp_max': 16,
'temp_min': 13},
'name': 'Marana',
'sys': {'country': 'US',
'id': 299,
'message': 0.0036,
'sunrise': 1520430286,
'sunset': 1520472433,
'type': 1},
'visibility': 16093,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 170, 'speed': 2.1}}
duplicate city: ushuaia,ar
duplicate city: punta arenas,cl
city generated: prabumulih,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A277780>
associated weather data:
{'base': 'stations',
'clouds': {'all': 64},
'cod': 200,
'coord': {'lat': -3.5, 'lon': 104.19},
'dt': 1520400610,
'id': 1631393,
'main': {'grnd_level': 1017.51,
'humidity': 91,
'pressure': 1017.51,
'sea_level': 1022.39,
'temp': 28.05,
'temp_max': 28.05,
'temp_min': 28.05},
'name': 'Prabumulih',
'sys': {'country': 'ID',
'message': 0.0034,
'sunrise': 1520377780,
'sunset': 1520421528},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 326.501, 'speed': 1.76}}
duplicate city: lavrentiya,ru
city generated: oissel,fr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19FCBE10>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 49.34, 'lon': 1.1},
'dt': 1520398800,
'id': 6443376,
'main': {'humidity': 100,
'pressure': 990,
'temp': 4,
'temp_max': 4,
'temp_min': 4},
'name': 'Oissel',
'sys': {'country': 'FR',
'id': 5605,
'message': 0.0819,
'sunrise': 1520403943,
'sunset': 1520444895,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 260, 'speed': 5.1}}
duplicate city: new norfolk,au
city generated: mackay,au
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1995B9E8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 53.65, 'lon': -115.58},
'dt': 1520398800,
'id': 5921525,
'main': {'humidity': 73,
'pressure': 1022,
'temp': -9.74,
'temp_max': -7,
'temp_min': -11},
'name': 'Mackay',
'sys': {'country': 'CA',
'id': 3225,
'message': 0.1639,
'sunrise': 1520432113,
'sunset': 1520472730,
'type': 1},
'visibility': 19312,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 350, 'speed': 3.1}}
city generated: lahat,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A268978>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': -3.78, 'lon': 103.55},
'dt': 1520400616,
'id': 1638775,
'main': {'grnd_level': 1011.27,
'humidity': 99,
'pressure': 1011.27,
'sea_level': 1022.59,
'temp': 27.03,
'temp_max': 27.03,
'temp_min': 27.03},
'name': 'Lahat',
'rain': {'3h': 1.25},
'sys': {'country': 'ID',
'message': 0.003,
'sunrise': 1520377927,
'sunset': 1520421688},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 335.001, 'speed': 2.76}}
duplicate city: torbay,ca
duplicate city: el alto,pe
duplicate city: atuona,pf
duplicate city: illoqqortoormiut,gl
duplicate city: lagoa,pt
city generated: bose,cn
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C43518>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 45.46, 'lon': 8.01},
'dt': 1520398500,
'id': 6457397,
'main': {'humidity': 81,
'pressure': 996,
'temp': 0.58,
'temp_max': 6,
'temp_min': -15},
'name': 'Bose',
'sys': {'country': 'IT',
'id': 5795,
'message': 0.0069,
'sunrise': 1520402124,
'sunset': 1520443392,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'speed': 0.5}}
city generated: jamsa,fi
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F69780>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: ryotsu,jp
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A58E128>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: punta arenas,cl
duplicate city: tuktoyaktuk,ca
duplicate city: eyl,so
duplicate city: hermanus,za
duplicate city: arraial do cabo,br
duplicate city: hailey,us
city generated: pyay,mm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7A0C88>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 18.82, 'lon': 95.22},
'dt': 1520400618,
'id': 1299154,
'main': {'grnd_level': 1017.83,
'humidity': 44,
'pressure': 1017.83,
'sea_level': 1023.44,
'temp': 34.4,
'temp_max': 34.4,
'temp_min': 34.4},
'name': 'Pyay',
'sys': {'country': 'MM',
'message': 0.0807,
'sunrise': 1520380434,
'sunset': 1520423198},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 0.000946045, 'speed': 4.06}}
duplicate city: pisco,pe
duplicate city: ormara,pk
city generated: kologriv,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF77748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 58.83, 'lon': 44.31},
'dt': 1520400619,
'id': 546282,
'main': {'grnd_level': 1011.18,
'humidity': 73,
'pressure': 1011.18,
'sea_level': 1034.22,
'temp': -17.55,
'temp_max': -17.55,
'temp_min': -17.55},
'name': 'Kologriv',
'sys': {'country': 'RU',
'message': 0.1576,
'sunrise': 1520394126,
'sunset': 1520433995},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 287.001, 'speed': 2.36}}
duplicate city: rikitea,pf
duplicate city: tuktoyaktuk,ca
duplicate city: new norfolk,au
duplicate city: clyde river,ca
city generated: pali,in
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A3E7208>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 25.77, 'lon': 73.33},
'dt': 1520400619,
'id': 1260716,
'main': {'grnd_level': 1002.75,
'humidity': 25,
'pressure': 1002.75,
'sea_level': 1026.48,
'temp': 31.83,
'temp_max': 31.83,
'temp_min': 31.83},
'name': 'Pali',
'sys': {'country': 'IN',
'message': 0.1577,
'sunrise': 1520385854,
'sunset': 1520428290},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 87.5009, 'speed': 4.11}}
duplicate city: ushuaia,ar
duplicate city: cape town,za
city generated: vinderup,dk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19ED1160>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: sabang,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A27D668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 13.72, 'lon': 123.58},
'dt': 1520400620,
'id': 1691355,
'main': {'grnd_level': 1013.53,
'humidity': 86,
'pressure': 1013.53,
'sea_level': 1023.4,
'temp': 27.9,
'temp_max': 27.9,
'temp_min': 27.9},
'name': 'Sabang',
'sys': {'country': 'PH',
'message': 0.0034,
'sunrise': 1520373512,
'sunset': 1520416504},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 60.0009, 'speed': 4.36}}
duplicate city: dikson,ru
duplicate city: taolanaro,mg
city generated: calabozo,ve
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B696400>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 8.92, 'lon': -67.43},
'dt': 1520400621,
'id': 3647444,
'main': {'grnd_level': 1011.51,
'humidity': 88,
'pressure': 1011.51,
'sea_level': 1024.46,
'temp': 23.95,
'temp_max': 23.95,
'temp_min': 23.95},
'name': 'Calabozo',
'sys': {'country': 'VE',
'message': 0.0045,
'sunrise': 1520419231,
'sunset': 1520462451},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 62.5009, 'speed': 4.81}}
duplicate city: carnarvon,au
duplicate city: thompson,ca
city generated: mahibadhoo,mv
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7BE9B0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: rikitea,pf
duplicate city: butaritari,ki
duplicate city: barrow,us
duplicate city: esperance,au
duplicate city: jalu,ly
duplicate city: kodiak,us
duplicate city: hithadhoo,mv
duplicate city: busselton,au
duplicate city: sentyabrskiy,ru
city generated: zhezkazgan,kz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A72A080>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 47.8, 'lon': 67.71},
'dt': 1520398800,
'id': 1516589,
'main': {'humidity': 78,
'pressure': 1020,
'temp': -9,
'temp_max': -9,
'temp_min': -9},
'name': 'Zhezkazgan',
'sys': {'country': 'KZ',
'id': 7201,
'message': 0.0883,
'sunrise': 1520387911,
'sunset': 1520428957,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 250, 'speed': 13}}
duplicate city: kapaa,us
duplicate city: ushuaia,ar
duplicate city: srednekolymsk,ru
duplicate city: eyl,so
duplicate city: albany,au
duplicate city: thompson,ca
duplicate city: hermanus,za
duplicate city: rikitea,pf
duplicate city: fortuna,us
duplicate city: vaini,to
duplicate city: mahebourg,mu
duplicate city: chokurdakh,ru
duplicate city: los llanos de aridane,es
city generated: elbrus,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AF1C908>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 43.26, 'lon': 42.65},
'dt': 1520400623,
'id': 563534,
'main': {'grnd_level': 740.61,
'humidity': 92,
'pressure': 740.61,
'sea_level': 1029.89,
'temp': -3.83,
'temp_max': -3.83,
'temp_min': -3.83},
'name': 'Elbrus',
'sys': {'country': 'RU',
'message': 0.1284,
'sunrise': 1520393736,
'sunset': 1520435151},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 281.001, 'speed': 0.16}}
duplicate city: punta arenas,cl
duplicate city: cabo san lucas,mx
city generated: el retorno,co
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19CD5588>
associated weather data:
{'base': 'stations',
'clouds': {'all': 68},
'cod': 200,
'coord': {'lat': 2.33, 'lon': -72.63},
'dt': 1520400623,
'id': 3792387,
'main': {'grnd_level': 987.11,
'humidity': 88,
'pressure': 987.11,
'sea_level': 1023.28,
'temp': 24.38,
'temp_max': 24.38,
'temp_min': 24.38},
'name': 'El Retorno',
'sys': {'country': 'CO',
'message': 0.005,
'sunrise': 1520420338,
'sunset': 1520463834},
'weather': [{'description': 'broken clouds',
'icon': '04n',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 4.00095, 'speed': 1.96}}
duplicate city: punta arenas,cl
duplicate city: halifax,ca
duplicate city: hasaki,jp
city generated: ouesso,cg
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BE9710>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 1.61, 'lon': 16.05},
'dt': 1520400623,
'id': 2255564,
'main': {'grnd_level': 984.84,
'humidity': 100,
'pressure': 984.84,
'sea_level': 1025.51,
'temp': 21.28,
'temp_max': 21.28,
'temp_min': 21.28},
'name': 'Ouesso',
'rain': {'3h': 4.86},
'sys': {'country': 'CG',
'message': 0.0045,
'sunrise': 1520399044,
'sunset': 1520442569},
'weather': [{'description': 'moderate rain',
'icon': '10d',
'id': 501,
'main': 'Rain'}],
'wind': {'deg': 108.001, 'speed': 1.31}}
duplicate city: mataura,pf
duplicate city: vaini,to
duplicate city: grand river south east,mu
city generated: solovetskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B08BCF8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hilo,us
duplicate city: tasiilaq,gl
city generated: port hawkesbury,ca
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19BB1B70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 90},
'cod': 200,
'coord': {'lat': 45.62, 'lon': -61.36},
'dt': 1520398800,
'id': 6111867,
'main': {'humidity': 74,
'pressure': 1015,
'temp': -1,
'temp_max': -1,
'temp_min': -1},
'name': 'Port Hawkesbury',
'sys': {'country': 'CA',
'id': 3499,
'message': 0.021,
'sunrise': 1520418757,
'sunset': 1520460050,
'type': 1},
'visibility': 14484,
'weather': [{'description': 'overcast clouds',
'icon': '04n',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 40, 'gust': 9.8, 'speed': 4.6}}
city generated: batetskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AED31D0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mataura,pf
duplicate city: khatanga,ru
city generated: mapiri,bo
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19A20C18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -15.31, 'lon': -68.22},
'dt': 1520400625,
'id': 3910758,
'main': {'grnd_level': 762.01,
'humidity': 93,
'pressure': 762.01,
'sea_level': 1025.39,
'temp': 11.03,
'temp_max': 11.03,
'temp_min': 11.03},
'name': 'Mapiri',
'rain': {'3h': 0.88},
'sys': {'country': 'BO',
'message': 0.0035,
'sunrise': 1520418885,
'sunset': 1520463155},
'weather': [{'description': 'light rain',
'icon': '10n',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 196.001, 'speed': 0.76}}
duplicate city: cape town,za
duplicate city: vaini,to
duplicate city: chumikan,ru
city generated: svetlogorsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0A9048>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 53.14, 'lon': 59.15},
'dt': 1520398800,
'id': 584051,
'main': {'humidity': 54,
'pressure': 1007,
'temp': -15,
'temp_max': -15,
'temp_min': -15},
'name': 'Svetlogorsk',
'sys': {'country': 'RU',
'id': 7307,
'message': 0.0215,
'sunrise': 1520390219,
'sunset': 1520430766,
'type': 1},
'visibility': 5000,
'weather': [{'description': 'scattered clouds',
'icon': '03d',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 290, 'gust': 18, 'speed': 11}}
duplicate city: vostok,ru
city generated: marrakesh,ma
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A773278>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 31.63, 'lon': -7.99},
'dt': 1520398800,
'id': 2542997,
'main': {'humidity': 82,
'pressure': 1014,
'temp': 15,
'temp_max': 15,
'temp_min': 15},
'name': 'Marrakesh',
'sys': {'country': 'MA',
'id': 6151,
'message': 0.0648,
'sunrise': 1520405510,
'sunset': 1520447666,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'scattered clouds',
'icon': '03n',
'id': 802,
'main': 'Clouds'}],
'wind': {'deg': 210, 'speed': 2.1}}
city generated: simnas,lt
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A748390>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 54.38, 'lon': 23.65},
'dt': 1520400626,
'id': 594639,
'main': {'grnd_level': 997.97,
'humidity': 93,
'pressure': 997.97,
'sea_level': 1011.73,
'temp': -2.78,
'temp_max': -2.78,
'temp_min': -2.78},
'name': 'Simnas',
'sys': {'country': 'LT',
'message': 0.0943,
'sunrise': 1520398794,
'sunset': 1520439232},
'weather': [{'description': 'overcast clouds',
'icon': '04d',
'id': 804,
'main': 'Clouds'}],
'wind': {'deg': 90.5009, 'speed': 5.26}}
duplicate city: wau,pg
duplicate city: punta arenas,cl
duplicate city: busselton,au
duplicate city: cape town,za
duplicate city: punta arenas,cl
city generated: doctor pedro p. pena,py
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ACD4CF8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: the valley,ai
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF198FA2B0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: butaritari,ki
duplicate city: lavrentiya,ru
duplicate city: mataura,pf
duplicate city: kapaa,us
duplicate city: belushya guba,ru
duplicate city: narsaq,gl
duplicate city: qaanaaq,gl
city generated: elat,il
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A2A4748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': 2.91, 'lon': 11.16},
'dt': 1520400627,
'id': 2232283,
'main': {'grnd_level': 947.47,
'humidity': 95,
'pressure': 947.47,
'sea_level': 1024.78,
'temp': 21.68,
'temp_max': 21.68,
'temp_min': 21.68},
'name': 'Elat',
'rain': {'3h': 0.1},
'sys': {'country': 'CM',
'message': 0.004,
'sunrise': 1520400245,
'sunset': 1520443715},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 256.501, 'speed': 1.21}}
duplicate city: vardo,no
duplicate city: jamestown,sh
duplicate city: punta arenas,cl
duplicate city: chara,ru
duplicate city: saint-philippe,re
duplicate city: cockburn town,bs
duplicate city: portland,au
city generated: metehara,et
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F63710>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: faanui,pf
duplicate city: praia da vitoria,pt
duplicate city: puerto ayora,ec
duplicate city: upernavik,gl
duplicate city: strezhevoy,ru
city generated: tarazona,es
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19F4E748>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 41.91, 'lon': -1.72},
'dt': 1520398800,
'id': 3108308,
'main': {'humidity': 93,
'pressure': 1005,
'temp': 2.53,
'temp_max': 3,
'temp_min': 2},
'name': 'Tarazona',
'sys': {'country': 'ES',
'id': 5471,
'message': 0.0043,
'sunrise': 1520404324,
'sunset': 1520445856,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01n',
'id': 800,
'main': 'Clear'}],
'wind': {'speed': 1}}
duplicate city: rikitea,pf
city generated: chipinge,zw
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6DFF98>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': -20.19, 'lon': 32.62},
'dt': 1520400628,
'id': 893549,
'main': {'grnd_level': 954.77,
'humidity': 89,
'pressure': 954.77,
'sea_level': 1025.79,
'temp': 23.23,
'temp_max': 23.23,
'temp_min': 23.23},
'name': 'Chipinge',
'sys': {'country': 'ZW',
'message': 0.0038,
'sunrise': 1520394556,
'sunset': 1520439085},
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 53.5009, 'speed': 1.66}}
duplicate city: avarua,ck
duplicate city: mahebourg,mu
city generated: minab,ir
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A482E80>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 27.15, 'lon': 57.07},
'dt': 1520398800,
'id': 123941,
'main': {'humidity': 94,
'pressure': 1015,
'temp': 20,
'temp_max': 20,
'temp_min': 20},
'name': 'Minab',
'sys': {'country': 'IR',
'id': 7037,
'message': 0.003,
'sunrise': 1520389789,
'sunset': 1520432160,
'type': 1},
'visibility': 2000,
'weather': [{'description': 'mist', 'icon': '50d', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 20, 'speed': 2.1}}
duplicate city: mayo,ca
city generated: sosnovoborsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B08EB70>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 56.12, 'lon': 93.34},
'dt': 1520398800,
'id': 1491291,
'main': {'humidity': 57,
'pressure': 1010,
'temp': -6,
'temp_max': -6,
'temp_min': -6},
'name': 'Sosnovoborsk',
'sys': {'country': 'RU',
'id': 7285,
'message': 0.0224,
'sunrise': 1520382200,
'sunset': 1520422383,
'type': 1},
'visibility': 4800,
'weather': [{'description': 'smoke',
'icon': '50d',
'id': 711,
'main': 'Smoke'}],
'wind': {'speed': 1}}
duplicate city: barentsburg,sj
duplicate city: grindavik,is
duplicate city: tezu,in
duplicate city: lompoc,us
duplicate city: bluff,nz
duplicate city: rikitea,pf
duplicate city: nikolskoye,ru
duplicate city: cherskiy,ru
duplicate city: sitka,us
duplicate city: new norfolk,au
duplicate city: mabaruma,gy
duplicate city: tual,id
duplicate city: airai,pw
duplicate city: barentsburg,sj
city generated: mindif,cm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF19C37668>
associated weather data:
{'base': 'stations',
'clouds': {'all': 76},
'cod': 200,
'coord': {'lat': 10.4, 'lon': 14.44},
'dt': 1520400630,
'id': 2226641,
'main': {'grnd_level': 976.33,
'humidity': 26,
'pressure': 976.33,
'sea_level': 1021.66,
'temp': 26.15,
'temp_max': 26.15,
'temp_min': 26.15},
'name': 'Mindif',
'sys': {'country': 'CM',
'message': 0.0301,
'sunrise': 1520399621,
'sunset': 1520442771},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 3.50095, 'speed': 4.36}}
city generated: suba,ph
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1ABDE198>
associated weather data:
{'base': 'stations',
'clouds': {'all': 56},
'cod': 200,
'coord': {'lat': 28.73, 'lon': 103.51},
'dt': 1520400630,
'id': 1800475,
'main': {'grnd_level': 926.56,
'humidity': 78,
'pressure': 926.56,
'sea_level': 1036.66,
'temp': 12.7,
'temp_max': 12.7,
'temp_min': 12.7},
'name': 'Suba',
'sys': {'country': 'CN',
'message': 0.0033,
'sunrise': 1520378693,
'sunset': 1520420970},
'weather': [{'description': 'broken clouds',
'icon': '04d',
'id': 803,
'main': 'Clouds'}],
'wind': {'deg': 338.001, 'speed': 1.31}}
city generated: kiruna,se
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B13DC18>
associated weather data:
{'base': 'stations',
'clouds': {'all': 75},
'cod': 200,
'coord': {'lat': 67.86, 'lon': 20.23},
'dt': 1520398200,
'id': 605155,
'main': {'humidity': 83,
'pressure': 1009,
'temp': -22,
'temp_max': -22,
'temp_min': -22},
'name': 'Kiruna',
'sys': {'country': 'SE',
'id': 5407,
'message': 0.0043,
'sunrise': 1520400765,
'sunset': 1520438944,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'light snow',
'icon': '13n',
'id': 600,
'main': 'Snow'}],
'wind': {'deg': 280, 'speed': 1.5}}
duplicate city: taolanaro,mg
city generated: pyaozerskiy,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B04E978>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: mabaruma,gy
duplicate city: sao filipe,cv
duplicate city: severo-kurilsk,ru
duplicate city: saint-francois,gp
city generated: letterkenny,ie
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A298DA0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 8},
'cod': 200,
'coord': {'lat': 54.95, 'lon': -7.73},
'dt': 1520400632,
'id': 2962961,
'main': {'grnd_level': 990.76,
'humidity': 100,
'pressure': 990.76,
'sea_level': 997.66,
'temp': 2.28,
'temp_max': 2.28,
'temp_min': 2.28},
'name': 'Letterkenny',
'sys': {'country': 'IE',
'message': 0.0062,
'sunrise': 1520406344,
'sunset': 1520446742},
'weather': [{'description': 'clear sky',
'icon': '02n',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 209.501, 'speed': 2.31}}
duplicate city: dikson,ru
duplicate city: vaini,to
duplicate city: barrow,us
duplicate city: tuktoyaktuk,ca
duplicate city: qaanaaq,gl
duplicate city: rikitea,pf
duplicate city: omsukchan,ru
duplicate city: nikolskoye,ru
duplicate city: saskylakh,ru
duplicate city: mys shmidta,ru
duplicate city: bengkulu,id
duplicate city: surt,ly
city generated: nurobod,uz
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B6902B0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 0},
'cod': 200,
'coord': {'lat': 40.91, 'lon': 69.8},
'dt': 1520398800,
'id': 1513064,
'main': {'humidity': 81,
'pressure': 1024,
'temp': 10,
'temp_max': 10,
'temp_min': 10},
'name': 'Nurobod',
'sys': {'country': 'UZ',
'id': 7402,
'message': 0.0035,
'sunrise': 1520387144,
'sunset': 1520428711,
'type': 1},
'visibility': 10000,
'weather': [{'description': 'clear sky',
'icon': '01d',
'id': 800,
'main': 'Clear'}],
'wind': {'speed': 1}}
duplicate city: victoria,sc
duplicate city: georgetown,sh
duplicate city: cape town,za
duplicate city: tasiilaq,gl
duplicate city: punta arenas,cl
duplicate city: hermanus,za
duplicate city: bredasdorp,za
duplicate city: longyearbyen,sj
duplicate city: kaitangata,nz
duplicate city: souillac,mu
duplicate city: atuona,pf
duplicate city: mataura,pf
duplicate city: airai,pw
duplicate city: avarua,ck
city generated: jambi,id
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A261898>
associated weather data:
{'base': 'stations',
'clouds': {'all': 92},
'cod': 200,
'coord': {'lat': -1.6, 'lon': 103.62},
'dt': 1520400633,
'id': 1642858,
'main': {'grnd_level': 1020.42,
'humidity': 92,
'pressure': 1020.42,
'sea_level': 1023.32,
'temp': 25.83,
'temp_max': 25.83,
'temp_min': 25.83},
'name': 'Jambi',
'rain': {'3h': 0.25},
'sys': {'country': 'ID',
'message': 0.0033,
'sunrise': 1520377959,
'sunset': 1520421624},
'weather': [{'description': 'light rain',
'icon': '10d',
'id': 500,
'main': 'Rain'}],
'wind': {'deg': 247.501, 'speed': 2.66}}
duplicate city: alekseyevka,kz
duplicate city: chokurdakh,ru
city generated: benemerito de las americas,mx
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A7E17F0>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: pevek,ru
duplicate city: dingle,ie
duplicate city: tasiilaq,gl
duplicate city: kapaa,us
duplicate city: puerto ayora,ec
duplicate city: ancud,cl
duplicate city: fortuna,us
city generated: paka,my
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1A8D13C8>
associated weather data:
{'base': 'stations',
'clouds': {'all': 40},
'cod': 200,
'coord': {'lat': 45.29, 'lon': 18.06},
'dt': 1520398800,
'id': 3190586,
'main': {'humidity': 85,
'pressure': 998,
'temp': 0,
'temp_max': 0,
'temp_min': 0},
'name': 'Paka',
'sys': {'country': 'HR',
'id': 5455,
'message': 0.0033,
'sunrise': 1520399708,
'sunset': 1520440984,
'type': 1},
'visibility': 1000,
'weather': [{'description': 'mist', 'icon': '50n', 'id': 701, 'main': 'Mist'}],
'wind': {'deg': 200, 'speed': 2.6}}
city generated: urusha,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0D6C18>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: barrow,us
duplicate city: kapaa,us
duplicate city: puerto ayora,ec
city generated: beysehir,tr
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1E1390>
associated weather data:
{'cod': '404', 'message': 'city not found'}
duplicate city: hobart,au
duplicate city: albany,au
duplicate city: rikitea,pf
duplicate city: mareeba,au
duplicate city: luganville,vu
duplicate city: ushuaia,ar
city generated: gazanjyk,tm
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B1D0BA8>
associated weather data:
{'cod': '404', 'message': 'city not found'}
city generated: troitsk,ru
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B0C2080>
associated weather data:
{'base': 'stations',
'clouds': {'all': 20},
'cod': 200,
'coord': {'lat': 54.08, 'lon': 61.55},
'dt': 1520400635,
'id': 1489246,
'main': {'grnd_level': 999.03,
'humidity': 78,
'pressure': 999.03,
'sea_level': 1026.12,
'temp': -13.03,
'temp_max': -13.03,
'temp_min': -13.03},
'name': 'Troitsk',
'sys': {'country': 'RU',
'message': 0.0072,
'sunrise': 1520389696,
'sunset': 1520430140},
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 270.501, 'speed': 7.21}}
duplicate city: mount gambier,au
city generated: murree,pk
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1AC3BBE0>
associated weather data:
{'base': 'stations',
'clouds': {'all': 24},
'cod': 200,
'coord': {'lat': 33.91, 'lon': 73.39},
'dt': 1520398800,
'id': 1169684,
'main': {'humidity': 45,
'pressure': 1016,
'temp': 19,
'temp_max': 19,
'temp_min': 19},
'name': 'Murree',
'sys': {'country': 'PK',
'id': 7146,
'message': 0.0037,
'sunrise': 1520386060,
'sunset': 1520428063,
'type': 1},
'visibility': 7000,
'weather': [{'description': 'few clouds',
'icon': '02d',
'id': 801,
'main': 'Clouds'}],
'wind': {'deg': 37.5009, 'speed': 1.26}}
duplicate city: jamestown,sh
duplicate city: pangnirtung,ca
duplicate city: haines junction,ca
duplicate city: cape town,za
duplicate city: rikitea,pf
duplicate city: punta arenas,cl
duplicate city: karaul,ru
duplicate city: artyk,ru
duplicate city: nanortalik,gl
duplicate city: port alfred,za
duplicate city: paamiut,gl
city generated: turayf,sa
processing request for http://api.openweathermap.org/data/2.5/weather?<citipy.citipy.City object at 0x000001DF1B130160>
associated weather data:
{'base': 'stations',
'clouds': {'all': 5},
'cod': 200,
'coord': {'lat': 31.68, 'lon': 38.65},
'dt': 1520398800,
'id': 101312,
'main': {'humidity': 54,
'pressure': 1018,
'temp': 14,
'temp_max': 14,
'temp_min': 14},
'name': 'Turayf',
'sys': {'country': 'SA',
'id': 7008,
'message': 0.0039,
'sunrise': 1520394327,
'sunset': 1520436466,
'type': 1},
'visibility': 8000,
'weather': [{'description': 'clear sky',
'icon': '02d',
'id': 800,
'main': 'Clear'}],
'wind': {'deg': 250, 'speed': 5.7}}
Merge data into Pandas DataFrame
first we’ll parse out the weather records into lists and then add them into a pandas dataframe
import pandas as pd
import numpy as np
lat = list()
long = list()
city_name = list()
country = list()
loc_id = list()
humidity = list()
temp = list()
pressure = list()
temp_max = list()
temp_min = list()
weather_description = list()
wind_speed = list()
visibility = list()
try:
for rec in weather:
lat.append(rec["coord"]['lat'])
long.append(rec["coord"]['lon'])
city_name.append(rec['name'])
country.append(rec['sys']['country'])
loc_id.append(rec['id'])
humidity.append(rec['main']['humidity'])
temp.append(rec['main']['temp'])
pressure.append(rec['main']['pressure'])
temp_max.append(rec['main']['temp_max'])
temp_min.append(rec['main']['temp_min'])
try:
visibility.append(rec['visibility'])
except:
visibility.append(np.nan)
weather_description.append(rec['weather'][0]['description'])
wind_speed.append(rec['wind']['speed'])
df = pd.DataFrame({
'lat':lat,
'long':long,
'city_name':city_name,
'country':country,
'loc_id':loc_id,
'humidity':humidity,
'temp':temp,
'pressure':pressure,
"temp_max":temp_max,
"temp_min":temp_min,
"visibility":visibility,
"weather_description":weather_description,
"wind_speed":wind_speed
})
df.to_csv('weather_data.csv')
except:
df = pd.read_csv('weather_data.csv')
pd.Series(duplicate_cities).to_csv('duplicates.csv')
pd.Series(list(weatherless_cities)).to_csv('weatherless.csv')
df.head()
city_name | country | humidity | lat | loc_id | long | pressure | temp | temp_max | temp_min | visibility | weather_description | wind_speed | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | Thompson | CA | 71 | 55.74 | 6165406 | -97.86 | 1025.00 | -14.00 | -14.00 | -14.00 | 24140.0 | scattered clouds | 1.00 |
1 | Castro | CL | 96 | -42.48 | 3896218 | -73.76 | 1012.16 | 10.48 | 10.48 | 10.48 | NaN | clear sky | 1.51 |
2 | Kodiak | US | 61 | 39.95 | 4407665 | -94.76 | 1021.00 | 0.00 | 0.00 | 0.00 | 16093.0 | overcast clouds | 8.20 |
3 | Busselton | AU | 80 | -33.64 | 2075265 | 115.35 | 1025.69 | 24.98 | 24.98 | 24.98 | NaN | scattered clouds | 4.66 |
4 | Niamtougou | TG | 73 | 9.77 | 2364812 | 1.11 | 980.14 | 23.48 | 23.48 | 23.48 | NaN | clear sky | 2.86 |
# Create a column of temps that are in F
def Fahrenheit(temp):
return temp * 9/5 + 32
df["temp_f"] = [Fahrenheit(x) for x in df['temp']]
Temperature (F) vs. Latitude
- plotting temperature against latitude we can see how temperature varies across the earth’s north south axis. We can make out that it’s late winter in the northern hemisphere due to it being tilted upwards a bit
import matplotlib.pyplot as plt
import seaborn as sns
from matplotlib import rcParams
rcParams['axes.titlepad'] = 10
font = {'family' : 'sans-serif',
'weight' : 'bold',
'size' : 20}
plt.rc('font', **font)
plt.style.use('dark_background')
g = sns.JointGrid(y='temp_f', x='lat', data=df, size=10, ratio=5, space=.5,
ylim=(-20,110), xlim=(-60,90))
g.plot_joint(plt.scatter, color='yellow',s=40, edgecolor='black')
plt.title('Temperature and Latitude')
plt.xlabel("Temperature (F)")
plt.ylabel("Latitude")
plt.show()
Humidity (%) vs. Latitude
plt.style.use('dark_background')
rcParams['axes.titlepad'] = 20
g = sns.JointGrid(x='humidity', y='lat', data=df, size=9, ratio=100)
g.plot_joint(plt.scatter, color='#DAF7A6',s=40, edgecolor='black')
plt.ylim(-20,110)
plt.xlim(0,105)
plt.title('Humidity and Latitude')
plt.xlabel("Humidity")
plt.ylabel("Latitude")
plt.show()
Cloudiness (%) vs. Latitude
- in the more northerly regions of the world visibility goes up.
plt.style.use("dark_background")
g = sns.JointGrid(x='visibility', y='lat', data=df, size=10, ratio=100)
g.plot_joint(plt.scatter, color='#FFC300',s=40, edgecolor='black')
plt.title('Visibility and Latitude')
plt.xlabel("Visibility")
plt.ylabel("Latitude")
plt.show()
Wind Speed (mph) vs. Latitude
- Generally we can see that around the equator wind speeds are lower
plt.style.use("dark_background")
g = sns.JointGrid(x='wind_speed', y='lat', data=df, size=10, ratio=100)
g.plot_joint(plt.scatter, color='skyblue',s=40, edgecolor='black')
plt.title('Visibility and Latitude')
plt.xlabel("Visibility")
plt.ylabel("Latitude")
plt.show()
Frequent duplicate cities
- I used a random numbers generator to create lat, long values which were then fed into the citipy module. The citipy module will return the closest inhabited place of 500 and more, when given coordinates. If a city/town is more isolated, then it has a higher chance of being picked by the citipy module (given a uniform distribution of coordinates). Bellow is the top 10 locations most frequently returned locations by the citipy modules. Most of the towns are in nations from the southern hemisphere (Australia, New Zealand, South Africa, French Polynesia, Chile, Argentina) and coastal.
duplic = pd.Series(duplicate_cities).value_counts()[:10]
plt.rcParams["figure.figsize"] = (20,5)
plt.bar(duplic.index, duplic)
plt.xticks(rotation=70)
plt.title("Top Ten Most Randomly Found Cities")
plt.show()
#weatherless_cities