Finalynx

Latest version: v1.23.0

Safety actively analyzes 682471 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 12

1.17.0

Feature

* **console:** Add support for light/dark/custom console themes ([115](https://github.com/MadeInPierre/finalynx/issues/115)) ([`7722e29`](https://github.com/MadeInPierre/finalynx/commit/7722e296ec0f869469ca39e97848b88d426d941c))

Set a custom set of colors for each element rendered to the console. New dark theme:

<img src="https://github.com/MadeInPierre/finalynx/assets/12670280/aaf072f2-c434-487b-8e21-8ef4b1109e03" width="500px"/>

Which seems to also work fine with VSCode:

<img src="https://github.com/MadeInPierre/finalynx/assets/12670280/ed799d10-c285-4627-a243-d41e0abee90e" width="500px"/>

In addition to the original light theme:

<img src="https://github.com/MadeInPierre/finalynx/assets/12670280/58bd51b0-7bb8-4b6d-afb5-49498a859993" width="500px"/>

Usage

Three options:
1. Use one of the predefined themes (light or dark), default is light:
bash
python your_config --theme="dark" or light


2. Save your preferred predefined theme to avoid using the command line option:

python
from finalynx import DarkTheme, LightTheme

portfolio = Portfolio(...)
assistant = Assistant(..., theme=DarkTheme())
assistant.run()


3. Set your own custom theme in `your_config.py`, see the `LightTheme` class for references:

python
from finalynx import Theme

class MyTheme(Theme):
TEXT = "white"
FOLDER_COLOR="cyan"
...

portfolio = Portfolio(...)
assistant = Assistant(..., theme=MyTheme())
assistant.run()

1.16.3

Fix
* **delta:** Align deltas when showing portfolio root ([`cb20954`](https://github.com/MadeInPierre/finalynx/commit/cb20954e2b6dfaea56c31394f58f4f977c647109))

1.16.2

Fix
* **fetch:** Spinner was hiding user prompts ([`8c5a78f`](https://github.com/MadeInPierre/finalynx/commit/8c5a78fc8df7e781783c1877b29b25589fe14bc3))

1.16.1

Performance
* **finary:** Fetch all finary investments in only one call ([`f119c49`](https://github.com/MadeInPierre/finalynx/commit/f119c49967f8fc20dc591f1525a678e024cfabe3))

1.16.0

Feature
* Add startup for exotic investiment in constant file ([100](https://github.com/MadeInPierre/finalynx/issues/100)) ([`598f0e0`](https://github.com/MadeInPierre/finalynx/commit/598f0e0a026080e30de8c43e4b778e4bd80600ef)) by sebfar9172
* **fetch:** Add support for multiple fetch sources ([97](https://github.com/MadeInPierre/finalynx/issues/97)) ([`903fc23`](https://github.com/MadeInPierre/finalynx/commit/903fc230b73c7a859a730b0faf83d51571485176)) by MadeInPierre

1.15.1

Fix
* **envelope:** Fix optional parameter default value 98 ([`0307352`](https://github.com/MadeInPierre/finalynx/commit/0307352c1d3312b82010772d69e232175cd6ada9))

Page 4 of 12

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.