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
generates error:
TypeError: init() got an unexpected keyword argument 'concurrent'
IF I do a git clone from your repo and cd into that yahoofinancials folder and only in that folder (where I ran the python setup.py install):
the above code in Jupyter works!
The text was updated successfully, but these errors were encountered:
When running from Jupyter notebook this fails. but code works from python script in the same customer kernel:
from yahoofinancials import YahooFinancials
tickers = ['AAPL', 'GOOG', 'C']
yahoo_financials = YahooFinancials(tickers, concurrent=True, max_workers=8, country="US")
balance_sheet_data_qt = yahoo_financials.get_financial_stmts('quarterly', 'balance')
print(balance_sheet_data_qt)
generates error:
TypeError: init() got an unexpected keyword argument 'concurrent'
IF I do a git clone from your repo and cd into that yahoofinancials folder and only in that folder (where I ran the python setup.py install):
the above code in Jupyter works!
The text was updated successfully, but these errors were encountered: