This commit is contained in:
emdee
2022-11-17 15:26:55 +00:00
parent 1b8b26eafc
commit 1e5618060a
64 changed files with 290 additions and 204 deletions

View File

@ -1,8 +1,11 @@
# -*- mode: python; indent-tabs-mode: nil; py-indent-offset: 4; coding: utf-8 -*-
import json
import urllib.request
from PyQt5 import QtCore, QtNetwork
import utils.util as util
from PyQt5 import QtNetwork, QtCore
try:
import requests
except ImportError:
@ -10,6 +13,7 @@ except ImportError:
global LOG
import logging
LOG = logging.getLogger('app.'+__name__)
class ToxDns: