使用Pandas Datareader 存取雅虎財經資料時出現TypeError
使用Pandas Datareader 從Yahoo Finance 擷取股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會遇到股票資料時,使用者可能會與“TypeError”:字串索引必須是整數”錯誤。當“symbols”參數需要字串列表但遇到字串時,可能會出現此問題。
要解決此錯誤,請確保“symbols 」參數是股票識別碼清單。以下是工作代碼的範例:
<code class="python">import pandas_datareader end = "2022-12-15" start = "2022-12-15" stock_list = ["TATAELXSI.NS"] data = pandas_datareader.get_data_yahoo(symbols=stock_list, start=start, end=end) print(data)</code>
此外,名為raphi6 的GitHub 用戶提供了一個拉取請求,其中修復了此問題。要安裝此修復程序,請依照以下步驟操作:
安裝以下相依性:
conda install pycryptodome pycryptodomex
卸載目前版本的Pandas Datareader:
conda uninstall pandas-datareader
pip install git+https://github.com/raphi6/pandas-datareader.git@ea66d6b981554f9d0262038aef2106dda7138316
<code class="python">import pandas_datareader as pdr import pandas as pd end = "2022-12-15" start = "2022-12-15" stock_list = ["TATAELXSI.NS"] stock_symbol = stock_list[0] stock_obj = pdr.DataReader(stock_symbol, 'yahoo', start, end) stock_data = pd.DataFrame({stock_symbol: stock_obj['Close']}) </code>
以上是使用 Pandas Datareader 存取雅虎財經資料時如何解決'TypeError:字串索引必須是整數”錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!