1
0

Compare commits

..

3 Commits

Author SHA1 Message Date
fd41bed214 🤖 Bumped version to 0.1.15
Some checks failed
Package Python / Package (push) Failing after 22s
Test Python / Test (push) Failing after 22s
This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
2024-07-08 19:07:09 +02:00
8812548812 🤖 Repository layout updated to latest version
This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
2024-07-08 19:06:10 +02:00
4becccf48b
Docstring 2024-07-08 19:05:49 +02:00
3 changed files with 28 additions and 2 deletions

View File

@ -1,4 +1,8 @@
# Financial Depository Fetchers <!--- WARNING ---!>
<!--- THIS IS AN AUTO-GENERATED FILE ---!>
<!--- MANUAL CHANGES CAN AND WILL BE OVERWRITTEN ---!>
# Financial Depository Fetchers.
Python library for automatic fetching of personal asset depo information. Python library for automatic fetching of personal asset depo information.

View File

@ -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'] __all__ = ['defi_kraken', 'defi_kucoin', 'defi_partisia_blockchain']
from . import defi_kraken, defi_kucoin, defi_partisia_blockchain from . import defi_kraken, defi_kucoin, defi_partisia_blockchain

View File

@ -1 +1 @@
__version__ = '0.1.14' __version__ = '0.1.15'