Вы можете попробовать это:
import json
import pandas as pd
from urllib.request import urlopen
urlco = "https://www.mpfinance.com/fin/getlisting.php?block=daily&startissue=20200118&fixiss=1"
response = urlopen(urlco)
response = response.read().decode('utf-8-sig')
result = json.loads(response)
df = pd.DataFrame(result['listing'])
print(df.head())
nodeid docissue docsection sectionname docparent parentname \
0 1579286154686 20200118 S00002 財經 S00001 報章內容
1 1579286155903 20200118 S00002 財經 S00001 報章內容
2 1579286156356 20200118 S00002 財經 S00001 報章內容
3 1579286156402 20200118 S00002 財經 S00001 報章內容
4 1579286156808 20200118 S00002 財經 S00001 報章內容
ordertext heading1 heading2 \
0 eaa1 中國出生率70年最低 失人口紅利 勞動人口連降8年 人均收入增速低過GDP
1 eaa2 去年GDP增6.1% 第4季保六靠投資
2 eaa3 人行全周淨投放9000億 創單周歷史新高
3 eab1 去年港銀貸款增6.7% 料今年息差受壓
4 eab2 招行業績快報 去年多賺15%
alt ... pubdate pubdate2 \
0 中國出生率70年最低 失人口紅利 勞動人口連降8年 人均收入增速低過GDP ... 2020年1月18日 2020-1-18
1 去年GDP增6.1% 第4季保六靠投資 ... 2020年1月18日 2020-1-18
2 人行全周淨投放9000億 創單周歷史新高 ... 2020年1月18日 2020-1-18
3 去年港銀貸款增6.7% 料今年息差受壓 ... 2020年1月18日 2020-1-18
4 招行業績快報 去年多賺15% ... 2020年1月18日 2020-1-18
link tag author imprate \
0 ../fin/daily2.php?node=1579286154686&issue=202... 經濟;
1 ../fin/daily2.php?node=1579286155903&issue=202... 經濟;
2 ../fin/daily2.php?node=1579286156356&issue=202... 經濟;
3 ../fin/daily2.php?node=1579286156402&issue=202... 經濟;
4 ../fin/daily2.php?node=1579286156808&issue=202... 經濟;
realnativeads bimage video \
0 False https://fs.mingpao.com/fin/20200118/s00002/0fe...
1 False https://fs.mingpao.com/fin/20200118/s00002/0fe...
2 False
3 False https://fs.mingpao.com/fin/20200118/s00002/0fe...
4 False
videoplayer
0
1
2
3
4
[5 rows x 23 columns]