1 Star 0 Fork 0

fanyangchu/PythonCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
check_internet_con.py 642 Bytes
一键复制 编辑 原始数据 按行查看 历史
CodeLongAndProsper90 提交于 2019-10-19 10:41 . Add custom url support
from sys import argv
try:
# For Python 3.0 and later
from urllib.error import URLError
from urllib.request import urlopen
except ImportError:
# Fall back to Python 2's urllib2
from urllib2 import URLError, urlopen
def checkInternetConnectivity():
try:
url = argv[1]
if 'https://' or 'http://' not in url:
url = 'https://' + url
except:
url = 'https://google.com'
try:
urlopen(url, timeout=2)
print("Connection to \""+ url + "\" is working")
except URLError as E:
print("Connection error:%s" % E.reason)
checkInternetConnectivity()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fanych/pythoncode.git
git@gitee.com:fanych/pythoncode.git
fanych
pythoncode
PythonCode
master

搜索帮助