I want to extract wind object's data from the following JSON string:
import pandas as pd
from urllib2 import Request, urlopen
import json
from pandas.io.json import json_normalize
request=Request('...')
response_weather = urlopen(request)
w = response_weather.read()
metar = json.loads(w)
wind = pd.DataFrame(json_normalize(metar['wind']))
print wind
KeyError: 'wind'
