Closed pierotofy closed 1 month ago
What a cool library! While running the example from the README:
tenk = Company("AAPL").get_filings(form="10-K").latest(1).obj() financials = tenk.financials financials.balance_sheet
I got a AttributeError: 'Financials' object has no attribute 'balance_sheet'. Did you mean: 'get_balance_sheet'?. I think the methods were renamed to get_balance_sheet, get_income_statement, etc.
AttributeError: 'Financials' object has no attribute 'balance_sheet'. Did you mean: 'get_balance_sheet'?
get_balance_sheet
get_income_statement
This PR fixes the references in the README.
What a cool library! While running the example from the README:
I got a
AttributeError: 'Financials' object has no attribute 'balance_sheet'. Did you mean: 'get_balance_sheet'?
. I think the methods were renamed toget_balance_sheet
,get_income_statement
, etc.This PR fixes the references in the README.