1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
#!/usr/bin/env python3
import re
from decimal import Decimal
from typing import Optional, Tuple, TypeVar
import math_utils
class Money(object):
"""A class for representing monetary amounts potentially with
different currencies.
"""
def __init__(
self,
amount: Decimal = Decimal("0"),
currency: str = 'USD',
*,
strict_mode=False,
):
self.strict_mode = strict_mode
if isinstance(amount, str):
ret = Money._parse(amount)
if ret is None:
raise Exception(f'Unable to parse money string "{amount}"')
amount = ret[0]
currency = ret[1]
if not isinstance(amount, Decimal):
amount = Decimal(float(amount))
self.amount = amount
if not currency:
self.currency: Optional[str] = None
else:
self.currency = currency
def __repr__(self):
a = float(self.amount)
a = round(a, 2)
s = f'{a:,.2f}'
if self.currency is not None:
return '%s %s' % (s, self.currency)
else:
return '$%s' % s
def __pos__(self):
return Money(amount=self.amount, currency=self.currency)
def __neg__(self):
return Money(amount=-self.amount, currency=self.currency)
def __add__(self, other):
if isinstance(other, Money):
if self.currency == other.currency:
return Money(amount=self.amount + other.amount, currency=self.currency)
else:
raise TypeError('Incompatible currencies in add expression')
else:
if self.strict_mode:
raise TypeError('In strict_mode only two moneys can be added')
else:
return Money(
amount=self.amount + Decimal(float(other)), currency=self.currency
)
def __sub__(self, other):
if isinstance(other, Money):
if self.currency == other.currency:
return Money(amount=self.amount - other.amount, currency=self.currency)
else:
raise TypeError('Incompatible currencies in add expression')
else:
if self.strict_mode:
raise TypeError('In strict_mode only two moneys can be added')
else:
return Money(
amount=self.amount - Decimal(float(other)), currency=self.currency
)
def __mul__(self, other):
if isinstance(other, Money):
raise TypeError('can not multiply monetary quantities')
else:
return Money(
amount=self.amount * Decimal(float(other)), currency=self.currency
)
def __truediv__(self, other):
if isinstance(other, Money):
raise TypeError('can not divide monetary quantities')
else:
return Money(
amount=self.amount / Decimal(float(other)), currency=self.currency
)
def __float__(self):
return self.amount.__float__()
def truncate_fractional_cents(self):
x = float(self)
self.amount = Decimal(math_utils.truncate_float(x))
return self.amount
def round_fractional_cents(self):
x = float(self)
self.amount = Decimal(round(x, 2))
return self.amount
__radd__ = __add__
def __rsub__(self, other):
if isinstance(other, Money):
if self.currency == other.currency:
return Money(amount=other.amount - self.amount, currency=self.currency)
else:
raise TypeError('Incompatible currencies in sub expression')
else:
if self.strict_mode:
raise TypeError('In strict_mode only two moneys can be added')
else:
return Money(
amount=Decimal(float(other)) - self.amount, currency=self.currency
)
__rmul__ = __mul__
#
# Override comparison operators to also compare currency.
#
def __eq__(self, other):
if other is None:
return False
if isinstance(other, Money):
return self.amount == other.amount and self.currency == other.currency
if self.strict_mode:
raise TypeError("In strict mode only two Moneys can be compared")
else:
return self.amount == Decimal(float(other))
def __ne__(self, other):
result = self.__eq__(other)
if result is NotImplemented:
return result
return not result
def __lt__(self, other):
if isinstance(other, Money):
if self.currency == other.currency:
return self.amount < other.amount
else:
raise TypeError('can not directly compare different currencies')
else:
if self.strict_mode:
raise TypeError('In strict mode, only two Moneys can be compated')
else:
return self.amount < Decimal(float(other))
def __gt__(self, other):
if isinstance(other, Money):
if self.currency == other.currency:
return self.amount > other.amount
else:
raise TypeError('can not directly compare different currencies')
else:
if self.strict_mode:
raise TypeError('In strict mode, only two Moneys can be compated')
else:
return self.amount > Decimal(float(other))
def __le__(self, other):
return self < other or self == other
def __ge__(self, other):
return self > other or self == other
def __hash__(self):
return self.__repr__
AMOUNT_RE = re.compile(r"^([+|-]?)(\d+)(\.\d+)$")
CURRENCY_RE = re.compile(r"^[A-Z][A-Z][A-Z]$")
@classmethod
def _parse(cls, s: str) -> Optional[Tuple[Decimal, str]]:
amount = None
currency = None
s = s.strip()
chunks = s.split(' ')
try:
for chunk in chunks:
if Money.AMOUNT_RE.match(chunk) is not None:
amount = Decimal(chunk)
elif Money.CURRENCY_RE.match(chunk) is not None:
currency = chunk
except Exception:
pass
if amount is not None and currency is not None:
return (amount, currency)
elif amount is not None:
return (amount, 'USD')
return None
@classmethod
def parse(cls, s: str) -> 'Money':
chunks = Money._parse(s)
if chunks is not None:
return Money(chunks[0], chunks[1])
raise Exception(f'Unable to parse money string "{s}"')
|