gitextract_j_yn7vd1/ ├── .github/ │ └── workflows/ │ └── sonarcloud.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST ├── README.md ├── docs/ │ ├── 01_first_simulation.md │ ├── 02_using_callables_for_dynamic_changes.md │ ├── 03_dependencies_between_accounts.md │ └── README.md ├── financial_life/ │ ├── README.md │ ├── __init__.py │ ├── calendar_help/ │ │ └── __init__.py │ ├── constants/ │ │ ├── __init__.py │ │ └── intervals.py │ ├── examples/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── dependencies.py │ │ ├── meta_data.md │ │ ├── meta_data.py │ │ └── simple_examples.py │ ├── financing/ │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── colors.py │ │ ├── identity.py │ │ ├── plotting.py │ │ ├── test_financing.py │ │ ├── test_meta.py │ │ ├── test_status.py │ │ └── validate.py │ ├── products/ │ │ ├── __init__.py │ │ └── germany/ │ │ ├── __init__.py │ │ └── lbs/ │ │ └── __init__.py │ ├── reports/ │ │ ├── __init__.py │ │ ├── excel.py │ │ └── html.py │ ├── tax/ │ │ ├── __init__.py │ │ └── germany/ │ │ └── __init__.py │ ├── templates/ │ │ ├── __init__.py │ │ └── html/ │ │ ├── __init__.py │ │ └── standard/ │ │ ├── __init__.py │ │ ├── account_details.html │ │ ├── index.html │ │ └── render.py │ └── test_general.py ├── requirements.txt ├── setup.py └── unittests.sh