Metadata-Version: 2.1
Name: sharepp
Version: 0.1.8
Summary: SharePriceProvider is a small script that provides share prices in EUR for a given ISIN.
Home-page: https://github.com/Plebo13/sharepp
Author: Lukas Brauckmann
Author-email: lukas.brauckmann@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: bs4

# SharePriceProvider
## Installation
The best way to install SharePriceProvider is by using pip:
`pip install sharepp`

## Usage
To use SharePriceProvider simply import it into your python project and call the only function available.
```python
import sharepp

print(sharepp.parse_price('NL0000235190'))
```
If you execute the above example you should get the current price for the Airbus share in EUR. Replace the ISIN with your one. Currently supported are company shares and ETFs.


