planet-launcher/planet/web.py

21 lines
450 B
Python
Raw Normal View History

2022-03-24 01:20:58 +00:00
from urllib.request import Request, urlopen
import requests
def get_versions() -> str:
return str(
urlopen(
Request(
"https://gist.github.com/leha-code/3e8fea40346536b451e45fc1728ed250/raw/versions.json"
)
).read()
)
def check_internet() -> bool:
try:
requests.head("http://www.google.com/")
return True
except requests.ConnectionError:
return False