import requests

url = 'https://www.jpx.co.jp/markets/statistics-equities/misc/tvdivq0000001vg2-att/data_j.xls' # ファイルのURLを指定する
filename = 'data_j.xlsx' # 保存するファイル名を指定する

response = requests.get(url)
with open(filename, 'wb') as f:
    f.write(response.content)

おすすめの記事