Answer the question
In order to leave comments, you need to log in
How to extract data from Json to Pandas dataFrame?
Good afternoon !
Tell me how to convert data from a Json file to a DataFrame using pandas?
from pandas.io.json import json_normalize
import pandas as pd
import json
df = pd.read_json('https://api.bittrex.com/api/v1.1/public/getmarketsummary?market=USD-BTC')
df = pd.json_normalize(df)
print(df)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question