Как скачать "http://www.hkexnews.hk/reports/bmn/ebmn_c.htm" в Excel с помощью Python? Является ли Python лучшим решением для такой задачи?
Мои коды:
import requests
import pandas as pd
import io
url = 'https://www.hkexnews.hk/reports/bmn/ebmn_c.htm'
response = requests.get(url)
open('ebmn.csv', 'wb').write(response.content)
read_file = pd.read_csv (r'C:\A-CEO\REPORTS\STOCKS\PROFILE\Python\ebmn.csv')
read_file.to_excel (r'C:\A-CEO\REPORTS\STOCKS\PROFILE\Python\ebmn.xlsx', index = None, header=True)