Metadata-Version: 2.1
Name: Fundys
Version: 0.0.2
Summary: stock & portfolio analysis
Home-page: https://github.com/caresendiz/fundys.git
Author: Chase Resendiz
Author-email: chaseresendiz@gmail.com
License: UNKNOWN
Project-URL: issues, https://github.com/caresendiz/fundys.git
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

Fundys

Fundys is a Python library for stock & portfolio analysis.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.

```bash
pip install fundys
```

## Usage

```python
from fundys import data
from fundys import ratios
from fundys import analysis

# returns the current price
data.price('AAPL')

# returns current ratio annual or quarterly history
ratios.currentRatio('AAPL', 'Y')

# returns portfolio volatility
analysis.portVol(stockHistories, stockWeights)
```.

## License
[MIT](https://choosealicense.com/licenses/mit/)


