From 4becccf48b611c59f2f9959c5c6712da6460acd7 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Mon, 8 Jul 2024 19:05:49 +0200 Subject: [PATCH] Docstring --- fin_depo/__init__.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/fin_depo/__init__.py b/fin_depo/__init__.py index f05458e..8dc125c 100644 --- a/fin_depo/__init__.py +++ b/fin_depo/__init__.py @@ -1,3 +1,25 @@ +"""# Financial Depository Fetchers. + +Python library for automatic fetching of personal asset depo information. + +Supports: + +- **Kraken**: Uses their API +- **Kucoin**: Uses their API +- **Partisia Blockchain Account**: Uses a reader node to check the account + state. +- **Nordnet**: Through their + [API](https://www.nordnet.dk/externalapi/docs/api). Thanks to [Morten + Helmstedt](https://helmstedt.dk/) for sharing his [Nordnet + utilities](https://github.com/helmstedt/nordnet-utilities), + which helped a lot. + +## TODO + +- [ ] Investment Bank: Saxo Bank OpenAPI +- [ ] Personal Bank: Personal Bank Account (Open Banking) Maybe use AIIA? +""" + __all__ = ['defi_kraken', 'defi_kucoin', 'defi_partisia_blockchain'] from . import defi_kraken, defi_kucoin, defi_partisia_blockchain