1
0

Compare commits

...

3 Commits

Author SHA1 Message Date
95c82d698c 🤖 Bumped version to 0.1.43
All checks were successful
Package Python / Package (push) Successful in 27s
Python Ruff Code Quality / ruff (push) Successful in 27s
Run Python tests (through Pytest) / Test (push) Successful in 28s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 24s
This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
2024-11-28 21:05:02 +01:00
5d9f4a9ebd 🤖 Repository layout updated to latest version
This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
2024-11-28 21:03:50 +01:00
0a060c3bec
Update docstring 2024-11-28 20:32:50 +01:00
4 changed files with 41 additions and 16 deletions

View File

@ -4,9 +4,11 @@
# Financial Depository Fetchers.
# Financial Depository Fetchers
Python library for programmating downloads of asset position information from
![Test program/library](https://gitfub.space/Jmaa/fin-depo/actions/workflows/python-test.yml/badge.svg) ![Codequality (Ruff)](https://gitfub.space/Jmaa/fin-depo/actions/workflows/python-ruff.yml/badge.svg)
Python library for programmatic download of asset position information from
personal depository accounts.
This library is a core part of my personal financial applications, as it allows
@ -15,8 +17,8 @@ me to monitor my investments on financial markets and web3 investments.
A lot can be said (mostly negative) about web3, but at least they are serious
about API access, which the modern banking system is not great at providing.
Even in The European Union, where GDPR is law and OpenBanking is a requirement,
it is hugely difficult for people to access and control their own personal
financial information.
it is hugely difficult for ordinary people to access and control their own
personal financial information.
This is a library; if you want a simple program for downloading the information
exposed by one of the supported services, try [my personal-data-fetchers
@ -48,9 +50,16 @@ implementing this functionality. Exposes the same data as the home page.
## Future extension
- [ ] Investment Bank: Saxo Bank OpenAPI
- [ ] Personal Bank: Personal Bank Account (Open Banking) Maybe use AIIA?
- [ ] Personal Bank: Personal Bank Account (Open Banking).
* Maybe using [Enable Banking](https://enablebanking.com/)? They seem to
allow developers to access their own accounts in a sort of half production
half demo environment.
* [AIIA](https://www.aiia.eu/) is also a possiblity?
- [ ] Partisia Blockchain: Implement sharding routing correctly.
- [ ] Depository history: Allow users to query both the state of their deposity
in the past, and to allow them to query the transactions.
* Most backends only support listing the transactions themselves, so the
depository history needs to be computed backwards from these.
## Dependencies

View File

@ -1,6 +1,6 @@
"""# Financial Depository Fetchers.
Python library for programmating downloads of asset position information from
Python library for programmatic download of asset position information from
personal depository accounts.
This library is a core part of my personal financial applications, as it allows
@ -9,8 +9,8 @@ me to monitor my investments on financial markets and web3 investments.
A lot can be said (mostly negative) about web3, but at least they are serious
about API access, which the modern banking system is not great at providing.
Even in The European Union, where GDPR is law and OpenBanking is a requirement,
it is hugely difficult for people to access and control their own personal
financial information.
it is hugely difficult for ordinary people to access and control their own
personal financial information.
This is a library; if you want a simple program for downloading the information
exposed by one of the supported services, try [my personal-data-fetchers
@ -42,8 +42,16 @@ implementing this functionality. Exposes the same data as the home page.
## Future extension
- [ ] Investment Bank: Saxo Bank OpenAPI
- [ ] Personal Bank: Personal Bank Account (Open Banking) Maybe use AIIA?
- [ ] Personal Bank: Personal Bank Account (Open Banking).
* Maybe using [Enable Banking](https://enablebanking.com/)? They seem to
allow developers to access their own accounts in a sort of half production
half demo environment.
* [AIIA](https://www.aiia.eu/) is also a possiblity?
- [ ] Partisia Blockchain: Implement sharding routing correctly.
- [ ] Depository history: Allow users to query both the state of their deposity
in the past, and to allow them to query the transactions.
* Most backends only support listing the transactions themselves, so the
depository history needs to be computed backwards from these.
"""
BACKEND_MODULE_NAMES = [

View File

@ -1 +1 @@
__version__ = '0.1.42'
__version__ = '0.1.43'

View File

@ -13,7 +13,7 @@ PACKAGE_NAME = 'fin_depo'
PACKAGE_DESCRIPTION = """
# Financial Depository Fetchers.
Python library for programmating downloads of asset position information from
Python library for programmatic download of asset position information from
personal depository accounts.
This library is a core part of my personal financial applications, as it allows
@ -22,8 +22,8 @@ me to monitor my investments on financial markets and web3 investments.
A lot can be said (mostly negative) about web3, but at least they are serious
about API access, which the modern banking system is not great at providing.
Even in The European Union, where GDPR is law and OpenBanking is a requirement,
it is hugely difficult for people to access and control their own personal
financial information.
it is hugely difficult for ordinary people to access and control their own
personal financial information.
This is a library; if you want a simple program for downloading the information
exposed by one of the supported services, try [my personal-data-fetchers
@ -55,12 +55,20 @@ implementing this functionality. Exposes the same data as the home page.
## Future extension
- [ ] Investment Bank: Saxo Bank OpenAPI
- [ ] Personal Bank: Personal Bank Account (Open Banking) Maybe use AIIA?
- [ ] Personal Bank: Personal Bank Account (Open Banking).
* Maybe using [Enable Banking](https://enablebanking.com/)? They seem to
allow developers to access their own accounts in a sort of half production
half demo environment.
* [AIIA](https://www.aiia.eu/) is also a possiblity?
- [ ] Partisia Blockchain: Implement sharding routing correctly.
- [ ] Depository history: Allow users to query both the state of their deposity
in the past, and to allow them to query the transactions.
* Most backends only support listing the transactions themselves, so the
depository history needs to be computed backwards from these.
""".strip()
PACKAGE_DESCRIPTION_SHORT = """
Python library for programmating downloads of asset position information from
Python library for programmatic download of asset position information from
personal depository accounts.""".strip()