Metadata-Version: 2.1
Name: finops
Version: 0.2.4
Summary: A Python package for financial operations.
Home-page: https://github.com/nixuri/FinOps
Author: Alireza Nilgaran
Author-email: alireza.nilgaran@gmail.com
License: BSD (3-clause)
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Requires-Dist: datetime
Requires-Dist: jdatetime
Requires-Dist: selenium

# FinOps

FinOps is a python package for financial operations.

## Table of Contents

- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)

## Installation

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

```pip install finops```

## Usage
```
import finops
import datetime

ticker = finops.Ticker("778253364357513")
ticker.get_price_history()


tse = finops.TehranStockExchange()
tse.get_shareholders_data(start_date=datetime(2020, 1, 1), end_date=datetime(2023, 1, 1))
```

## Contributing

Contributions are always welcome!
