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
|
from utils.read_file import entry
from utils.colored_output import *
from typing import List, Iterator
import re
import shutil
class currencies:
"""
Store various currencies and add or subtract them.
"""
def __init__(self) -> None:
# The keys of the dictionary will be the currency symbol. The value of
# the dictionary will be a float number, representing the amount.
self.money = dict()
def __retrieve_number(self, price: str) -> float:
"""
Given a string, extract the number from it. The number is defined by a
consecutive string of digits, with maybe a dot in between or end of it.
"""
result = re.findall(r'\d+(?:\.\d*)?', price)[0]
result = float(result)
# If it has the minus symbol (-), it must be a negative value.
if '-' in price:
return -result
else:
return result
def __retrieve_currency(self, price: str) -> str:
"""
Given a string, remove the number and maybe a negative symbol from it.
The resulting string is most likely the currency symbol.
"""
number = re.findall(r'\d+(?:\.\d*)?', price)[0]
result = price.replace(number, '')
result = result.replace('-', '')
return result.strip()
def add_money(self, price: str) -> None:
"""
Add money to our "wallet." If it is a currency we already have, sum the
values. If the currency is new, create the entry on our dictionary and
assign the amount to it.
On the other hand, if the amount is equal to 0, delete the currency
entry.
"""
number = self.__retrieve_number(price)
currency = self.__retrieve_currency(price)
if currency in self.money:
self.money[currency] += number
else:
self.money[currency] = number
if self.money[currency] == 0:
del self.money[currency]
def __iter__(self) -> Iterator[str]:
"""
When iterating through our currencies, yield the already formatted
currencies. If there are not currencies, just return a 0.
"""
if not self.money:
yield '0'
for currency, amount in self.money.items():
if len(currency) == 1:
yield f'{currency}{amount:.02f}'
else:
yield f'{amount:.02f} {currency}'
# What to do if we do "-currencies"?
def __neg__(self):
negated = currencies()
for currency, number in self.money.items():
negated.add_money(f'{currency} {-number}')
return negated
def __lt__(self, other):
if len(self.money.values()) != 1 or len(other.money.values()) != 1:
raise Exception('Cannot compare multiple currencies at once!')
for amount_left in self.money.values():
break
for amount_right in other.money.values():
break
return amount_left < amount_right
def __str__(self) -> str:
if len(self.money.items()) != 1:
raise Exception('Cannot convert to string more than one currency!')
for currency, amount in self.money.items():
if len(currency) == 1:
return f'{currency}{amount:.02f}'
else:
return f'{amount:.02f} {currency}'
def complete_prices(my_entry: entry):
"""
Transform all string of prices to the class `currencies`. If there is an
entry that has no price, balance the transaction so the sum is equal to 0.
"""
idx_not_complete = -1
money_to_bal = currencies()
for idx in range(len(my_entry.transactions)):
if (len(my_entry.transactions[idx]) == 1):
idx_not_complete = idx
else:
_, price = my_entry.transactions[idx]
money_to_bal.add_money(price)
new_price_format = currencies()
new_price_format.add_money(price)
my_entry.transactions[idx][1] = new_price_format
if idx_not_complete != -1:
my_entry.transactions[idx_not_complete].append(
-money_to_bal
)
def print_register(entries: List[entry]):
width_term, _ = shutil.get_terminal_size(fallback=(80, 24))
# We will divide the terminal width in the following way:
# - Date and Comment: 37/100 parts of the terminal width.
# - Account name: 31/100 parts of the terminal width.
# - First price column: 16/100 parts of the terminal width.
# - Second price column: 16/100 parts of the terminal width.
# NOTE: We reserve 3 spaces of the terminal width to help separate the
# columns.
d_c_len = int((width_term - 3) * 37 / 100); d_c_len = max(d_c_len, 15)
acc_len = int((width_term - 3) * 31 / 100); acc_len = max(acc_len, 6)
p_1_len = int((width_term - 3) * 16 / 100)
p_2_len = int((width_term - 3) * 16 / 100)
result = ''
current_money = currencies()
for ent in entries:
complete_prices(ent)
date = date_f(ent.date.strftime('%y-%b-%d '))
result += date
comment = ent.comment
if len(date) + len(comment) > d_c_len:
comment = comment[:d_c_len - len(date) - 2] + '..'
result += comment_f(f'{comment:<{d_c_len - len(date)}} ')
for trans in ent.transactions:
account = trans[0]
if len(account) > acc_len:
account = '..' + account[-(acc_len - 2):]
result += account_f(f'{account:<{acc_len}} ')
for price in trans[1]:
result += price_f(f'{price:>{p_1_len}} ')
current_money.add_money(price)
for curr_price in current_money:
result += price_f(f'{curr_price:>{p_2_len}}') + '\n'
result += ' ' * (d_c_len + 1 + acc_len + 1 + p_1_len + 1)
result = result.rstrip() + '\n'
result += ' ' * (d_c_len + 1 + acc_len + 1)
result = result.rstrip() + '\n'
result += ' ' * (d_c_len + 1)
result = result.rstrip() + '\n'
print(result.rstrip())
|