Feature
* **fetch:** Add new RealT fetch source ([106](https://github.com/MadeInPierre/finalynx/issues/106)) ([`ca00549`](https://github.com/MadeInPierre/finalynx/commit/ca0054980026980368da1addbc05f2e6dc5f6b4a)) by nmathey
* :warning: Some RealT investments may not be correctly fetched due to name mismatch issues, see 118 for a pending fix
Usage
Finalynx can now fetch your investments from RealT with your wallet address. To activate it, add the following to `your_config.py`:
python
from finalynx.fetch.source_realt import SourceRealT
from finalynx import ...
portfolio = Portfolio(...)
assistant = Assistant(portfolio)
assistant.add_source(SourceRealT("0x123ABC_MY_REALT_TOKEN"))
assistant.run()
Then, choose which source(s) to enable when launching Finalynx (`finary` and/or `realt` available today):
bash
python assistant_config.py --sources="finary,realt"
To save your preferences, change the following line in `your_config.py`:
python
assistant = Assistant(portfolio, ..., active_sources=["finary", "realt"])