dgunning / edgartools

Navigate SEC Edgar data in Python
MIT License
522 stars 104 forks source link

Fixes docs for calling financials #127

Closed pierotofy closed 1 month ago

pierotofy commented 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.

This PR fixes the references in the README.