I have been using the following code to retrieve data from yahoo finance for stock.
I have been using the following code:
from pandas_datareader import data as wb
ABEV = wb.DataReader(‘ABEV’, data_source = ‘yahoo’, start = ‘2024-7-1’)
ABEV
But instead of receiving the financial data. I am getting an attribute error. Can somebody tell me what I am doing wrong
New contributor