You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Receiving a warning message when running queries. Not sure what needs to be changed on these lines as simply replacing append with concat doesn't work.
/usr/local/lib/python3.9/site-packages/yahoo_fin/stock_info.py:295: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
data = tables[0].append(tables[1])
/usr/local/lib/python3.9/site-packages/yahoo_fin/stock_info.py:302: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
data = data.append(quote_price)
The text was updated successfully, but these errors were encountered:
Receiving a warning message when running queries. Not sure what needs to be changed on these lines as simply replacing append with concat doesn't work.
/usr/local/lib/python3.9/site-packages/yahoo_fin/stock_info.py:295: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
data = tables[0].append(tables[1])
/usr/local/lib/python3.9/site-packages/yahoo_fin/stock_info.py:302: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
data = data.append(quote_price)
The text was updated successfully, but these errors were encountered: