Metadata-Version: 2.1
Name: financial_statement
Version: 0.0.3
Summary: Read the financial statement of listed company
Author: Ng wen kang
Author-email: kangwen177@gmail.com
Keywords: python,finance,financial statement,stock market
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE.rtf
Requires-Dist: requests
Requires-Dist: numpy
Requires-Dist: bs4
Requires-Dist: pandas
Requires-Dist: datetime

# financial-statement

[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)\

# Overview

financial-statement is a Python package that allows you to read the financial statements of listed companies.\

## Installation

```bash\
pip install financial_statement
```

## Usage
```python
import financial-statement as fs
# get annual income statement
ticket = "AAPL"
year = "2023" # it is string
income_statement = fs.income_statement(ticket,year)

# get balance sheet
balance_sheet = fs.balance_sheet(ticket,year)

# get cash flow statement
cash_flow_statement = fs.cash_flow_statement(ticket,year)

# get dividend from company
dividend = fs.get_dividend(ticket)
# if you want get annual received dividend
annual_dividend = fs.get_dividend(ticket,YTM=True)

# get shareholder list
shareholder = fs.shareholder(ticket)
```

## Source

The library extracts data from discounting cash flows and Yahoo Finance. Developers are not tasked with accumulating the data, and the library automatically goes offline in the case of an interest conflict.

