Answers for "json url to dataframe python"

0

json url to dataframe python

import requests
import pandas as pd

URL = 'http://some_address/some_file.json'
data = json.loads(requests.get(URL).text)

# Flattening JSON data
pd.json_normalize(data)
Posted by: Guest on January-27-2022

Code answers related to "json url to dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language