有没有办法将 pandas 与 blob link 一起使用?
Is there a way to use pandas with a blob link?
我正在尝试使用 pandas 阅读此文件,最好不要下载它:
blob:https://worldpopulationreview.com/26dd60b4-4e76-4c4a-8762-bc639acc2790
然而,当我尝试使用
pd.read_csv('blob:https://worldpopulationreview.com/26dd60b4-4e76-4c4a-8762-bc639acc2790')
我明白了
ValueError: Protocol not known: blob:https
如果没有 blob 部分,我会收到 404 错误。 link 来自这里:
https://worldpopulationreview.com/state-rankings/electoral-votes-by-state
另一种方法,read_html()
pd.read_html("https://worldpopulationreview.com/state-rankings/electoral-votes-by-state")[0]
我正在尝试使用 pandas 阅读此文件,最好不要下载它:
blob:https://worldpopulationreview.com/26dd60b4-4e76-4c4a-8762-bc639acc2790
然而,当我尝试使用
pd.read_csv('blob:https://worldpopulationreview.com/26dd60b4-4e76-4c4a-8762-bc639acc2790')
我明白了
ValueError: Protocol not known: blob:https
如果没有 blob 部分,我会收到 404 错误。 link 来自这里:
https://worldpopulationreview.com/state-rankings/electoral-votes-by-state
另一种方法,read_html()
pd.read_html("https://worldpopulationreview.com/state-rankings/electoral-votes-by-state")[0]