2024-07-09 21:56:04 +00:00
|
|
|
"""# Personal Data Fetcher Systems.
|
|
|
|
|
2024-07-21 12:37:46 +00:00
|
|
|
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.
|
2024-07-09 21:56:04 +00:00
|
|
|
|
|
|
|
Supported fetchers:
|
|
|
|
|
|
|
|
- Crunchyroll episode watch history
|
|
|
|
- FFXIV Lodestone achivement history
|
|
|
|
- Playstation achievements by way of PSN Profiles.
|
2024-07-21 12:37:46 +00:00
|
|
|
- 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
|
2024-07-09 21:56:04 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2024-07-21 12:37:46 +00:00
|
|
|
Add relevant secrets to
|
|
|
|
a [`secret_loader`](https://gitfub.space/Jmaa/secret_loader)-compatible
|
|
|
|
location, and run:
|
|
|
|
|
2024-07-09 21:56:04 +00:00
|
|
|
```sh
|
|
|
|
python -m personal_data
|
|
|
|
```
|
|
|
|
|
2024-07-21 12:37:46 +00:00
|
|
|
Use `--help` option to see all options.
|
|
|
|
|
|
|
|
## Further expansion
|
2024-07-09 21:56:04 +00:00
|
|
|
|
|
|
|
- [ ] YouTube (Music): Liked videos with title and URL.
|
|
|
|
- [ ] Steam Wishlist and Achievements
|
2024-07-21 12:37:46 +00:00
|
|
|
- [ ] [WaniKani](https://docs.api.wanikani.com)
|
2024-07-09 21:56:04 +00:00
|
|
|
- [ ] Ledger (Live?) Account Balances
|
|
|
|
"""
|
|
|
|
|
2024-07-21 12:37:46 +00:00
|
|
|
__all__ = ['__version__']
|
|
|
|
|
|
|
|
from ._version import __version__
|