1
0

Compare commits

..

No commits in common. "95c82d698cb88faaecc6061a8f4641970c4f1963" and "7c7209389380271122509c96103d9e54b97a8261" have entirely different histories.

4 changed files with 16 additions and 41 deletions

View File

@ -4,11 +4,9 @@
# Financial Depository Fetchers
# Financial Depository Fetchers.
![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
Python library for programmating downloads of asset position information from
personal depository accounts.
This library is a core part of my personal financial applications, as it allows
@ -17,8 +15,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 ordinary people to access and control their own
personal financial information.
it is hugely difficult for 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
@ -50,16 +48,9 @@ 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 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?
- [ ] Personal Bank: Personal Bank Account (Open Banking) Maybe use AIIA?
- [ ] 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 programmatic download of asset position information from
Python library for programmating downloads 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 ordinary people to access and control their own
personal financial information.
it is hugely difficult for 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,16 +42,8 @@ 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 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?
- [ ] Personal Bank: Personal Bank Account (Open Banking) Maybe use AIIA?
- [ ] 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.43'
__version__ = '0.1.42'

View File

@ -13,7 +13,7 @@ PACKAGE_NAME = 'fin_depo'
PACKAGE_DESCRIPTION = """
# Financial Depository Fetchers.
Python library for programmatic download of asset position information from
Python library for programmating downloads 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 ordinary people to access and control their own
personal financial information.
it is hugely difficult for 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,20 +55,12 @@ 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 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?
- [ ] Personal Bank: Personal Bank Account (Open Banking) Maybe use AIIA?
- [ ] 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 programmatic download of asset position information from
Python library for programmating downloads of asset position information from
personal depository accounts.""".strip()