mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-10 00:44:16 +02:00
[ui] feature: themes
This commit is contained in:
@@ -1,12 +1,20 @@
|
||||
import http.client as http_client
|
||||
|
||||
|
||||
def is_available() -> bool:
|
||||
conn = http_client.HTTPConnection("www.google.com", timeout=5)
|
||||
try:
|
||||
conn.request("HEAD", "/")
|
||||
conn.close()
|
||||
return True
|
||||
except:
|
||||
conn.close()
|
||||
return False
|
||||
class InternetChecker:
|
||||
|
||||
def __init__(self, offline: bool):
|
||||
self.offline = offline
|
||||
|
||||
def is_available(self) -> bool:
|
||||
if self.offline:
|
||||
return False
|
||||
|
||||
conn = http_client.HTTPConnection("www.google.com", timeout=5)
|
||||
try:
|
||||
conn.request("HEAD", "/")
|
||||
conn.close()
|
||||
return True
|
||||
except:
|
||||
conn.close()
|
||||
return False
|
||||
|
||||
Reference in New Issue
Block a user