Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-08 | Switch to decimal.Decimal for money | xengineering | |
Floating point data types are not suitable to represent money since rounding issues will sum up. | |||
2024-09-08 | finance: Use datetime for Income.integrate() | xengineering | |
Time-based Integration in general is done between two time stamps. For the financial context it makes sense to use Python's datetime.datetime class for this purpose. This commit implements integrating an income between two datetime.datetime time stamps. | |||
2024-09-08 | finance: Add income.py | xengineering | |
This is the minimal starting point to model financial income. |