-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.py
70 lines (49 loc) · 2.22 KB
/
update.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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'update.ui'
#
# Created by: PyQt5 UI code generator 5.13.2
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
import sql_work
class update_Dialog(object):
def setupUi(self, Dialog):
Dialog.setObjectName("Dialog")
Dialog.resize(491, 201)
Dialog.setModal(False)
self.pushButton = QtWidgets.QPushButton(Dialog)
self.pushButton.setGeometry(QtCore.QRect(190, 110, 121, 28))
self.pushButton.setObjectName("pushButton")
self.label = QtWidgets.QLabel(Dialog)
self.label.setGeometry(QtCore.QRect(70, 50, 361, 21))
self.label.setObjectName("label")
self.retranslateUi(Dialog)
QtCore.QMetaObject.connectSlotsByName(Dialog)
#display server connetction status in window
self.label.setText('ابتدا از اتصال به اینترنت مطمئن شوید')
self.pushButton.clicked.connect(self.update_database)
def update_database(self):
self.label.setText('در حال ارسال لطفا منتظر بمانید ...')
import google_sheet
try:
sql_work.clear_tabel()
sql_work.fill_database(google_sheet.fetch_data())
except:
self.label.setText('خطا در دریافت اطلاعات')
print('error in updating')
else:
self.label.setText(' بروز رسانی انجام گرفت. لطفا یک مرتبه از برنامه خارج شده و مجدد وارد شوید')
print('database up to date')
def retranslateUi(self, Dialog):
_translate = QtCore.QCoreApplication.translate
Dialog.setWindowTitle(_translate("Dialog", "بروز رسانی"))
self.pushButton.setText(_translate("Dialog", "بروز رسانی"))
self.label.setText(_translate("Dialog", "ابتدا از اتصال به اینترنت مطمئن شوید"))
if __name__ == "__main__":
import sys
app = QtWidgets.QApplication(sys.argv)
Dialog = QtWidgets.QDialog()
ui = update_Dialog()
ui.setupUi(Dialog)
Dialog.show()
sys.exit(app.exec_())