14 # https://github.com/afilipovich/gglsbl |
14 # https://github.com/afilipovich/gglsbl |
15 # |
15 # |
16 |
16 |
17 import os |
17 import os |
18 |
18 |
19 from PyQt5.QtCore import ( |
19 from PyQt6.QtCore import ( |
20 QObject, QByteArray, QCryptographicHash, QCoreApplication, QEventLoop |
20 QObject, QByteArray, QCryptographicHash, QCoreApplication, QEventLoop |
21 ) |
21 ) |
22 from PyQt5.QtSql import QSql, QSqlDatabase, QSqlQuery |
22 from PyQt6.QtSql import QSql, QSqlDatabase, QSqlQuery |
23 |
23 |
24 from .SafeBrowsingThreatList import ThreatList |
24 from .SafeBrowsingThreatList import ThreatList |
25 |
25 |
26 |
26 |
27 class SafeBrowsingCache(QObject): |
27 class SafeBrowsingCache(QObject): |