Metadata-Version: 2.1
Name: Avanza
Version: 0.0.6
Summary: Python wrapper for Unofficial Avanza API
Home-page: https://github.com/North14/avanza
Author: North14
License: UNKNOWN
Platform: any
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Office/Business :: Financial :: Investment
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: selenium

# 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 in current 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)


