Metadata-Version: 2.1
Name: stockdex
Version: 0.2.0
Summary: A package to get stock data from Yahoo Finance
Home-page: https://github.com/ahnazary/stockdex
Author: Amir Nazary
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: pandas==2.0.3
Requires-Dist: beautifulsoup4==4.12.2
Requires-Dist: requests==2.31.0

# Stockdex

Stockdex is a Python package that provides a simple interface to access financial data from Yahoo Finance.

# Installation 

Install the package using pip:

```bash
pip install stockdex
``` 

# Usage

```python
from stockdex import Ticker

ticker = Ticker('AAPL')

summary = ticker.summary()
statistics = ticker.statistics()
income_stmt = ticker.income_stmt()
balance_sheet = ticker.balance_sheet()
cash_flow = ticker.cash_flow()
analysis = ticker.analysis()
```
