随笔分类 -  python模块第三方

摘要:基本 from robot.api import SuiteVisitor class TestStatusChecker(SuiteVisitor): def __init__(self, *args): pass def visit_test(self, test): if 'PASS' in 阅读全文
posted @ 2021-07-02 11:03 该显示昵称已被使用了 阅读(159) 评论(0) 推荐(0)
摘要:# pip3 install ping3 from ping3 import ping ping_ok = lambda ip: False if ping(dest_addr=ip) is None else True print(ping_ok('192.168.11.1')) 阅读全文
posted @ 2020-10-19 21:28 该显示昵称已被使用了 阅读(208) 评论(0) 推荐(0)