Metadata-Version: 2.1
Name: pyfinra
Version: 0.1.7
Summary: Unoffical Python Finra Wrapper
Home-page: https://github.com/BluhbergTerminal/PyFinra/tree/alpha
Author: Sören Michaels
Author-email: soeren.michaels@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: finsymbols (>=1.3.0,<2.0.0)
Requires-Dist: pandas (>=1.2.3,<2.0.0)
Requires-Dist: requests (>=2.25.1,<3.0.0)
Requires-Dist: selenium (>=3.141.0,<4.0.0)
Project-URL: Repository, https://github.com/BluhbergTerminal/PyFinra/tree/alpha
Description-Content-Type: text/markdown

# Unoffical Python Finra Wrapper

**warning this repository is still in alpha stage** 

## Requirements
- Chromium 
- Chromedriver

## Installation

### PIP

```Bash
pip install pyfinra
```

### Build your self with Python-Poetry

```Bash
poetry install
poetry build
```

## Example 

```Python
from PyFinra import Ticker

gme = Ticker("GME")
tsla = Ticker("TSLA")


print(gme.quote(), tsla.quote())
```

## Testing

```Bash
petry run pytest
```
