我正在试用新的yahoofinancials library。我还没有尝试所有的方法,但是get_financial_stmts不适合我。有没有人有同样的问题?
from yahoofinancials import YahooFinancials
yahoo_financials = YahooFinancials('AAPL')
print(yahoo_financials.get_financial_stmts('annual', 'income'))输出:
{'incomeStatementHistory': {'AAPL': None}}我尝试的另一种方法是get_historical_price_data,它工作得很好。
发布于 2021-01-14 11:50:36
我用这个fix解决了这个问题
https://stackoverflow.com/questions/65712950
复制相似问题