首頁  >  文章  >  後端開發  >  如何使用 Pandas 從 URL 讀取 CSV 檔案?

如何使用 Pandas 從 URL 讀取 CSV 檔案?

DDD
DDD原創
2024-11-03 17:49:30684瀏覽

How Do You Read CSV Files From URLs Using Pandas?

使用Pandas 從URL 讀取CSV 檔案

嘗試使用Python 3.x 從URL 讀取CSV 檔案時,使用者可能會遇到錯誤:「預期檔案路徑名或類似文件的對象,得到 類型。從網址。要解決此問題,請遵循更新的Pandas 實作:

在0.19.2 之後的Pandas 版本中,您可以直接將URL 傳遞給read_csv() 函數:

此更新程式碼直接從指定的URL讀取CSV數據,無需涉及requests.get().content的中間步驟。
<code class="python">import pandas as pd

# Replace the s variable with the direct URL
url = "https://raw.githubusercontent.com/cs109/2014_data/master/countries.csv"
c = pd.read_csv(url)</code>

以上是如何使用 Pandas 從 URL 讀取 CSV 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn