import urequests
AREA = 'Tokyo'
APIKEY = 'fde376f'  # UoꂽAPIw肵Ă
URL = 'http://api.openweathermap.org/data/2.5/weather?q={:s}&APPID={:s}'

url = URL.format(AREA,APIKEY)
response = urequests.get(url)  # WebAPIɐڑCVC\JSON擾
if response.status_code == 200:
    weather = response.json()  #JSON񂩂PythonIuWFNgɕϊ
    report = weather['weather'][0]['main']  # ^CXg^ƂĎQƁD\擾
    desc = weather['weather'][0]['description']  # ڍ׏擾
    print('AREA:{:s}'.format(AREA))
    print('{:s}({:s})'.format(report,desc))