我试图从头开始获取比特币的coinbase的所有历史数据
2016年到现在。我知道有许多方法,比如使用API,
抓桌子,但我试图将该页面作为HTML阅读,但我仍然是
获取编码错误。
import pandas as pd
import time
import seaborn as sns
import matplotlib.pyplot as plt
import datetime
import numpy as np
# get market info for bitcoin from the start of 2016 to the current day
bitcoin_market_info = pd.read_html("https://coinmarketcap.com/currencies/bitcoin/historical-data/?start=20130428&end="+time.strftime("%Y%m%d"))[0]
我收到错误为TypeError: __init__() got an unexpected keyword argument 'encoding'
我已采取其他措施来阻止此错误,例如检查
pd_version,因为它大于0.15,甚至使用不同的编码,如
encoding = 'utf-8', encoding='big5hkscs'
我还检查了htlm5lib并且已经安装了,所以任何人都可以告诉我如何从这个方法获取数据,只有在本文中使用它。