# 增加 自动检测网络是否连接成功功能 2023.05 import os import time import socket def getNet(): time.sleep(30) os.system('sudo echo -e "at^ndisdup=1,1\r\n" > /dev/ttyUSB1') time.sleep(60) os.system('sudo ./home/pi/bcm2835-1.71/SPI/run | python3 ./home/pi/bcm2835-1.71/SPI/socket-connect.py') def isNetOK(testserver): s = socket.socket() s.settimeout(3) try: status = s.connect_ex(testserver) if status == 0: s.close() return True else: return False except Exception as e: return False def isNetChainOK(testserver=('www.baidu.com', 443)): isOK = isNetOK(testserver) return isOK def main(): chinanet = isNetChainOK() if chinanet is False: print("疑似存在网络异常") getNet() else: print("网络正常") if __name__ == '__main__': while 1: main()网络正常后增加运行其他文件下的py文件
时间: 2023-12-06 22:42:30 浏览: 112
代码检测网络连接是否正常
可以在`main()`函数中,在网络正常的情况下,调用其他Python文件中的函数或方法。例如:
```python
import other_module
def main():
chinanet = isNetChainOK()
if chinanet is False:
print("疑似存在网络异常")
getNet()
else:
print("网络正常")
# 调用其他Python文件中的函数或方法
other_module.some_function()
```
其中`other_module`是你想要调用的其他Python文件的模块名,`some_function()`是该文件中的某个函数或方法。需要注意的是,该文件必须在Python解释器的搜索路径中(可以在命令行中运行`python -c "import sys; print(sys.path)"`查看搜索路径)。如果该文件不在搜索路径中,可以使用`sys.path.append()`方法将其添加到搜索路径中。
阅读全文