mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
13 lines
269 B
Python
13 lines
269 B
Python
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
|