2024-07-08 17:05:49 +00:00
|
|
|
"""# Financial Depository Fetchers.
|
|
|
|
|
|
|
|
Python library for automatic fetching of personal asset depo information.
|
|
|
|
|
|
|
|
Supports:
|
|
|
|
|
2024-07-16 19:54:13 +00:00
|
|
|
- **Kraken**: Uses their [publicly documented API](https://docs.kraken.com/rest/).
|
|
|
|
- **Kucoin**: Uses their [publicly documented API](https://www.kucoin.com/docs/beginners/introduction).
|
2024-07-08 17:05:49 +00:00
|
|
|
- **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?
|
|
|
|
"""
|
|
|
|
|
2024-07-16 19:54:13 +00:00
|
|
|
__all__ = [
|
|
|
|
'defi_kraken',
|
|
|
|
'defi_kucoin',
|
|
|
|
'defi_partisia_blockchain',
|
|
|
|
'investbank_nordnet',
|
|
|
|
]
|
2024-06-02 14:14:17 +00:00
|
|
|
|
2024-07-16 19:54:13 +00:00
|
|
|
from . import defi_kraken, defi_kucoin, defi_partisia_blockchain, investbank_nordnet
|