skip to Main Content

Converting Json to pd

I'm trying to convert the Json type data to dataframe. I extrated data from following webpage with following code. webpage I extract data import pandas as pd import requests import json url = r'https://www.hkex.com.hk/eng/csm/MonthlyStat/data_tab_monthly_202302e.js?_=1' response = requests.get(url) if response.status_code !=…

VIEW QUESTION
Back To Top
Search