1
0
personal-data/personal_data/__init__.py
Jon Michael Aanes 6027f37c3c
Some checks failed
Test Python / Test (push) Failing after 24s
Extended readme
2024-07-21 14:37:54 +02:00

40 lines
1.0 KiB
Python

"""# Personal Data Fetcher Systems.
This program collects several small data fetchers, for downloading personal
data spread around the internet. The fetchers are mostly related either to
personal finance, or to various nerdy hobbies.
Supported fetchers:
- Crunchyroll episode watch history
- FFXIV Lodestone achivement history
- Playstation achievements by way of PSN Profiles.
- Account balances for several backends supported by [`fin-depo`](https://gitfub.space/Jmaa/fin-depo)
* Partisia Blockchain BYOC and MPC trackers
* Kraken Account Balances
* Kucoin Account Balances
## Usage
Add relevant secrets to
a [`secret_loader`](https://gitfub.space/Jmaa/secret_loader)-compatible
location, and run:
```sh
python -m personal_data
```
Use `--help` option to see all options.
## Further expansion
- [ ] YouTube (Music): Liked videos with title and URL.
- [ ] Steam Wishlist and Achievements
- [ ] [WaniKani](https://docs.api.wanikani.com)
- [ ] Ledger (Live?) Account Balances
"""
__all__ = ['__version__']
from ._version import __version__