forked from pythonguis/pythonguis-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
currency.py
346 lines (264 loc) · 10.4 KB
/
currency.py
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
from PyQt5.QtCore import *
import pyqtgraph as pg
import requests
import requests_cache
from collections import defaultdict
from datetime import datetime, timedelta, date
from itertools import cycle
import sys
import time
import traceback
requests_cache.install_cache('http_cache')
# Base currency is used to retrieve rates from fixer.io.
# If we change currency we re-request, though it would
# be possible to calculate any rates *through* the base.
DEFAULT_BASE_CURRENCY = 'EUR'
DEFAULT_DISPLAY_CURRENCIES = ['CAD','CYP','AUD','USD', 'EUR', 'GBP', 'NZD', 'SGD']
HISTORIC_DAYS_N = 180
# Colour sets.
BREWER12PAIRED = cycle(['#a6cee3', '#1f78b4', '#b2df8a', '#33a02c', '#fb9a99', '#e31a1c', '#fdbf6f', '#ff7f00',
'#cab2d6', '#6a3d9a', '#ffff99', '#b15928' ])
# Base PyQtGraph configuration
pg.setConfigOption('background', 'w')
pg.setConfigOption('foreground', 'k')
# Build progressive request order, for filling up data
# Uses an depth-first search pattern, filling more recent data
# to a higher resolution more quickly with a
DATE_REQUEST_OFFSETS = [0]
current = [(0, HISTORIC_DAYS_N)]
while current:
a, b = current.pop(0)
n = (a + b) // 2
DATE_REQUEST_OFFSETS.append(n)
if abs(a - n) > 1:
current.insert(0, (a, n))
if abs(b - n) > 1:
current.append((b, n))
class WorkerSignals(QObject):
'''
Defines the signals available from a running worker thread.
'''
finished = pyqtSignal()
error = pyqtSignal(tuple)
progress = pyqtSignal(int)
data = pyqtSignal(int, dict)
cancel = pyqtSignal()
class UpdateWorker(QRunnable):
'''
Worker thread for updating currency.
'''
signals = WorkerSignals()
is_interrupted = False
def __init__(self, base_currency):
super(UpdateWorker, self).__init__()
self.base_currency = base_currency
self.signals.cancel.connect(self.cancel)
@pyqtSlot()
def run(self):
try:
today = date.today()
total_requests = len(DATE_REQUEST_OFFSETS)
for n, offset in enumerate(DATE_REQUEST_OFFSETS, 1):
when = today - timedelta(days=offset)
url = 'http://api.fixer.io/{}'.format(when.isoformat())
r = requests.get(url, params={'base': self.base_currency})
r.raise_for_status()
data = r.json()
rates = data['rates']
rates[self.base_currency] = 1.0
self.signals.data.emit(offset ,rates)
self.signals.progress.emit(int(100 * n / total_requests))
if not r.from_cache:
time.sleep(1) # Don't be rude.
if self.is_interrupted:
break
except Exception as e:
print(e)
exctype, value = sys.exc_info()[:2]
self.signals.error.emit((exctype, value, traceback.format_exc()))
return
self.signals.finished.emit()
def cancel(self):
self.is_interrupted = True
class MainWindow(QMainWindow):
def __init__(self, *args, **kwargs):
super(MainWindow, self).__init__(*args, **kwargs)
layout = QHBoxLayout()
self.ax = pg.PlotWidget()
self.ax.showGrid(True, True)
self.line = pg.InfiniteLine(
pos=-20,
pen=pg.mkPen('k', width=3),
movable=False # We have our own code to handle dragless moving.
)
self.ax.addItem(self.line)
self.ax.setLimits(xMin=-HISTORIC_DAYS_N + 1, xMax=0)
self.ax.getPlotItem().scene().sigMouseMoved.connect(self.mouse_move_handler)
self.base_currency = DEFAULT_BASE_CURRENCY
# Store a reference to lines on the plot, and items in our
# data viewer we can update rather than redraw.
self._data_lines = dict()
self._data_items = dict()
self._data_colors = dict()
self._data_visible = DEFAULT_DISPLAY_CURRENCIES
self._last_updated = None
self.listView = QTableView()
self.model = QStandardItemModel()
self.model.setHorizontalHeaderLabels(["Currency", "Rate"])
self.model.itemChanged.connect(self.check_check_state)
self.listView.setModel(self.model)
self.threadpool = QThreadPool()
self.worker = False
layout.addWidget(self.ax)
layout.addWidget(self.listView)
widget = QWidget()
widget.setLayout(layout)
self.setCentralWidget(widget)
self.listView.setFixedSize(226, 400)
self.setFixedSize(650, 400)
toolbar = QToolBar("Main")
self.addToolBar(toolbar)
self.currencyList = QComboBox()
toolbar.addWidget(self.currencyList)
self.update_currency_list(DEFAULT_DISPLAY_CURRENCIES)
self.currencyList.setCurrentText(self.base_currency)
self.currencyList.currentTextChanged.connect(self.change_base_currency)
self.progress = QProgressBar()
self.progress.setRange(0, 100)
toolbar.addWidget(self.progress)
self.refresh_historic_rates()
self.setWindowTitle("Doughnut")
self.show()
def update_currency_list(self, currencies):
for currency in currencies:
if self.currencyList.findText(currency) == -1:
self.currencyList.addItem(currency)
self.currencyList.model().sort(0)
def check_check_state(self, i):
if not i.isCheckable(): # Skip data columns.
return
currency = i.text()
checked = i.checkState() == Qt.Checked
if currency in self._data_visible:
if not checked:
self._data_visible.remove(currency)
self.redraw()
else:
if checked:
self._data_visible.append(currency)
self.redraw()
def get_currency_color(self, currency):
if currency not in self._data_colors:
self._data_colors[currency] = next(BREWER12PAIRED)
return self._data_colors[currency]
def add_data_row(self, currency):
citem = QStandardItem()
citem.setText(currency)
citem.setForeground(QBrush(QColor(
self.get_currency_color(currency)
)))
citem.setColumnCount(2)
citem.setCheckable(True)
if currency in DEFAULT_DISPLAY_CURRENCIES:
citem.setCheckState(Qt.Checked)
vitem = QStandardItem()
vitem.setTextAlignment(Qt.AlignRight | Qt.AlignVCenter)
self.model.setColumnCount(2)
self.model.appendRow([citem, vitem])
self.model.sort(0)
return citem, vitem
def get_or_create_data_row(self, currency):
if currency not in self._data_items:
self._data_items[currency] = self.add_data_row(currency)
return self._data_items[currency]
def mouse_move_handler(self, pos):
pos = self.ax.getViewBox().mapSceneToView(pos)
self.line.setPos(pos.x())
self.update_data_viewer(int(pos.x()))
def update_data_row(self, currency, value):
citem, vitem = self.get_or_create_data_row(currency)
vitem.setText("%.4f" % value)
def update_data_viewer(self, d):
try:
data = self.data[d]
except IndexError: # Skip update if out of bounds.
return
if not data: # Skip update if we have no data.
return
for k, v in data.items():
self.update_data_row(k, v)
def change_base_currency(self, currency):
self.base_currency = currency
self.refresh_historic_rates()
def refresh_historic_rates(self):
if self.worker:
# If we have a current worker, send a kill signal
self.worker.signals.cancel.emit()
# Prefill our data store with None ('no data')
self.data = [None] * HISTORIC_DAYS_N
self.worker = UpdateWorker(self.base_currency)
# Handle callbacks with data and trigger refresh.
self.worker.signals.data.connect(self.result_data_callback)
self.worker.signals.finished.connect(self.refresh_finished)
self.worker.signals.progress.connect(self.progress_callback)
self.threadpool.start(self.worker)
def result_data_callback(self, n, rates):
self.data[n] = rates
# Refresh plot if we haven't for >1 second.
if (self._last_updated is None or
self._last_updated < datetime.now() - timedelta(seconds=1)
):
self.redraw()
self._last_updated = datetime.now()
def progress_callback(self, progress):
self.progress.setValue(progress)
def refresh_finished(self):
self.worker = False
self.redraw()
# Ensure all currencies we know about are in the dropdown list now.
self.update_currency_list(self._data_items.keys())
def redraw(self):
"""
Process data from store and prefer to draw.
:return:
"""
today = date.today()
plotd = defaultdict(list)
x_ticks = []
tick_step_size = HISTORIC_DAYS_N / 6
# Pre-process data into lists of x, y values
for n, data in enumerate(self.data):
if data:
for currency, v in data.items():
plotd[currency].append((-n, v))
when = today - timedelta(days=n)
if (n-tick_step_size//2) % tick_step_size == 0:
x_ticks.append((-n, when.strftime('%d-%m')))
# Update the plot
keys = sorted(plotd.keys())
y_min, y_max = sys.maxsize, 0
for currency in keys:
x, y = zip(*plotd[currency])
if currency in self._data_visible:
y_min = min(y_min, *y)
y_max = max(y_max, *y)
else:
x, y = [], []
if currency in self._data_lines:
self._data_lines[currency].setData(x, y)
else:
self._data_lines[currency] = self.ax.plot(
x, y, # Unpack a list of tuples into two lists, passed as individual args.
pen=pg.mkPen(
self.get_currency_color(currency),
width=2
)
)
self.ax.setLimits(yMin=y_min * 0.9, yMax=y_max * 1.1)
self.ax.getAxis('bottom').setTicks([x_ticks,[]])
if __name__ == '__main__':
app = QApplication([])
window = MainWindow()
app.exec_()