Metadata-Version: 2.1
Name: Avanza
Version: 0.0.4
Summary: Python wrapper for Unofficial Avanza API
Home-page: https://github.com/North14/avanza
Author: North14
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests

# Avanza

Based on [https://github.com/fhqvst/avanza](https://github.com/fhqvst/avanza)

Python wrapper for Unofficial Avanza API

Code is work in progress and is only meant as "proof of concept"

Authentication is done with selenium,
which will save cookies incurrent working directory.

Short example of getting the current buyprice for msft stock:

```python
from avanza import avanza

avanza_run = avanza.Avanza()
msft = avanza_run.stock(3873)
buy_price = msft['buyPrice']
print(buy_price)
> 166.48
```

More examples can be found [here](https://github.com/North14/avanza-client)


