Skip to content

Commit

Permalink
Merge pull request #1128 from ranaroussi/fix/financials-data
Browse files Browse the repository at this point in the history
Fix financials tables
  • Loading branch information
ValueRaider committed Oct 28, 2022
2 parents e3d2c5d + e83cc74 commit bcd6e5b
Show file tree
Hide file tree
Showing 5 changed files with 406 additions and 90 deletions.
30 changes: 21 additions & 9 deletions README.md
Expand Up @@ -68,24 +68,30 @@ msft.dividends
# show splits
msft.splits

# show financials
msft.financials
msft.quarterly_financials
# show share count
msft.shares

# show major holders
msft.major_holders

# show institutional holders
msft.institutional_holders
# show income statement
msft.income_stmt
msft.quarterly_income_stmt

# show balance sheet
msft.balance_sheet
msft.quarterly_balance_sheet

# show cashflow
# show cash flow statement
msft.cashflow
msft.quarterly_cashflow

# show major holders
msft.major_holders

# show institutional holders
msft.institutional_holders

# show mutualfund holders
msft.mutualfund_holders

# show earnings
msft.earnings
msft.quarterly_earnings
Expand All @@ -95,6 +101,12 @@ msft.sustainability

# show analysts recommendations
msft.recommendations
msft.recommendations_summary
# show analysts other work
msft.analyst_price_target
mfst.revenue_forecasts
mfst.earnings_forecasts
mfst.earnings_trend

# show next event (earnings, etc)
msft.calendar
Expand Down
11 changes: 8 additions & 3 deletions test_yfinance.py
Expand Up @@ -37,23 +37,28 @@ def test_attributes(self):
ticker.dividends
ticker.splits
ticker.actions
ticker.shares
ticker.info
ticker.calendar
ticker.recommendations
ticker.earnings
ticker.quarterly_earnings
ticker.financials
ticker.quarterly_financials
ticker.income_stmt
ticker.quarterly_income_stmt
ticker.balance_sheet
ticker.quarterly_balance_sheet
ticker.cashflow
ticker.quarterly_cashflow
ticker.recommendations_summary
ticker.analyst_price_target
ticker.revenue_forecasts
ticker.sustainability
ticker.options
ticker.news
ticker.shares
ticker.earnings_trend
ticker.earnings_history
ticker.earnings_dates
ticker.earnings_forecasts

def test_holders(self):
for ticker in tickers:
Expand Down

0 comments on commit bcd6e5b

Please sign in to comment.