8.4.3 현금흐름표
현금흐름표(cash flow statements)는 get_cash_flow 메서드를 사용해 구한다. 다음은 애플의 현금흐름표를 구하는 예다. 재무상태표 및 손익계산서와 마찬가지로 여러 종목의 현금흐름표를 얻고 최근 연도 데이터만 모을 것이다. 그리고 그중에서 어느 한 기업의 특정 현금흐름표 항목을 조회할 것이다.
기본적으로 어느 한 종목의 현금흐름표를 얻으려면 코드는 다음과 같다.
flow = si.get_cash_flow( "aapl" )
flow.items
결과
<bound method DataFrame.items of endDate 2020-09-26 ... 2017-09-30 Breakdown ... investments 5335000000 ... -33542000000 changeToLiabilities -1981000000 ... 8373000000 totalCashflowsFromInvestingActivities -4289000000 ... -46446000000 netBorrowings 2499000000 ... 29014000000 totalCashFromFinancingActivities -86820000000 ... -17974000000 changeToOperatingActivities 881000000 ... -8480000000 issuanceOfStock 880000000 ... 555000000 netIncome 57411000000 ... 48351000000 changeInCash -10435000000 ... -195000000 repurchaseOfStock -75992000000 ... -34774000000 totalCashFromOperatingActivities 80674000000 ... 64225000000 depreciation 11056000000 ... 10157000000 otherCashflowsFromInvestingActivities -791000000 ... -124000000 dividendsPaid -14081000000 ... -12769000000 changeToInventory -127000000 ... -2723000000 changeToAccountReceivables 6917000000 ... -2093000000 otherCashflowsFromFinancingActivities -126000000 ... -105000000 changeToNetincome 6517000000 ... 10640000000 capitalExpenditures -7309000000 ... -12451000000 [19 rows x 4 columns]>