a_json = raw_json['daily']

df = pd.DataFrame.from_dict(a_json)
df['time'] = pd.to_datetime(df['time'], format='%Y-%m-%d')

df.info()