Age | Commit message (Collapse) | Author |
|
Modeling income and expenses separately does not make sense since the
only difference is the sign of the amount. Separate definitions would
lead to a lot of duplicated code.
|
|
Floating point data types are not suitable to represent money since
rounding issues will sum up.
|
|
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.
|
|
This is the minimal starting point to model financial income.
|