网站防火墙 *{margin:0;padding:0;color:#444} body{font-size:14px;font-family:”宋体”} .main{width:600px;margin:10% auto;} .title{background: #20a53a;color: #fff;font-size: 16px;height: 40px;line-height: 40px;padding-left: 20px;} .content{background-color:#f3f7f9; height:280px;border:1px dashed #c6d9b6;padding:20px} .t1{border-bottom: 1px dashed #c6d9b6;color: #ff4000;font-weight: bold; margin: 0 0 20px; padding-bottom: 18px;} .t2{margin-bottom:8px; font-weight:bold} ol{margin:0 0 20px 22px;padding:0;} ol li{line-height:30px} 网站防火墙 您的请求带有不合法参数,已被网站管理员设置拦截! 可能原因: 您提交的内容包含危险的攻击请求 如何解决: 检查提交内容; 如网站托管,请联系空间提供商; 普通网站访客,请联系网站管理员;

文章目录

  • run() 和 Popen() 介绍
  • run() 和 Popen() 用法
  • 分享一波

  • 提示:以下仅为本人个人观点,仅供参考,不足之处欢迎评论,共勉

    run() 和 Popen() 介绍

    subprocess 的 run() 和 Popen() 都是子进程管理的方法, 启动新的子进程并执行外部命令的方法.

    Popen : 更底层、更灵活的接口。创建一个新的进程并根据给定的参数执行命令,不会因等待这个命令执行完成而阻塞别的子进程的执行。这使得你可以在子进程执行的同时,主进程可以继续执行其他任务,提供了异步执行的能力

    特点:

  • 非阻塞式命令
  • 提供了更多的参数,可以实时读取输出、向子进程发送数据或在子进程执行期间做其他事情
  • 适合需要与子进程进行复杂交互或需要细粒度控制的场景
  • run : 作为一个简单的接口来替代许多常见情况下的 Popen 调用, run()会执行给定的命令,等待命令完成

    特点:

  • 阻塞式命令:需要等待命令执行完
  • 自动处理标准输入、输出和错误流
  • run() 和 Popen() 用法

    run() 方法:

    1. 单一执行命令:
      [command]: 字符串、字符串参数列表
    import subprocess
    subprocess.run([command])
    # ex:
    command = 'ls'
    subprocess.run([command])
    
    1. 设置超时时间:
      使用timeout参数来设置命令超时时间,如果命令执行时间超时,将杀死子进程,并弹出 TimeoutExpired 异常,单位:秒
    import subprocess
    
    command = 'adb shell top'
    try:
        res = subprocess.run(command, timeout=5)
    except TimeoutError as e:
        print(e)
        # 触发异常则会报 subprocess.TimeoutExpired: Command 'adb shell top' timed out after 5.0 seconds
    
    1. 状态码参数操作
      设置check参数获取状态码(布尔值),如果该参数设置为 True,并且进程退出状态码不是 0,则弹 出 CalledProcessError 异常
      returncode 获取状态码的值
    command = 'adb shell top -n 1 -d 1'
    res = subprocess.run(command, check=True)
    try:
        if res.returncode == 0:
            print(res.returncode)
    except CalledProcessError  as e:
        print(e)
    

    Popen() 方法:

    1. 标准输入 、输出、错误:
      参数stdin 表示标准输入
      参数stdout 表示标准输出:默认输出的值是二进制数据,可对输出值进行处理
      参数stderr 表示标准错误句柄
    import subprocess
    
    command = 'adb devices'
    p = subprocess.Popen(command, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.PIPE)  # PIPE: 连接到它们的输入/输出/错误管道,并获取它们的返回码
    out, err = p.communicate() # 和子进程交互,发送和读取数据
    res = out.decode('utf-8')  # 将二进制码格式为 UTF-8 字符串
    print(res)
    print(err.decode('utf-8'))
    
    1. 使用 poll() 方法检查子进程是否结束:
      结束返回 returncode , 否则返回None
    command = 'adb devices'
    p = subprocess.Popen(command, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
    out, err = p.communicate()  # 和子进程交互,发送和读取数据
    res = out.decode('utf-8')
    if p.poll() is None:
        print("Process is still running")
    else:
        print(res)
    
    1. terminate() 方法使用:
      停止子进程,
    command = 'adb devices'
    p = subprocess.Popen(command, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
    p.terminate()  # 停止子进程,后面将不会执行到,导致程序结果没有后续的输出值
    out, err = p.communicate()
    res = out.decode('utf-8')
    print(res)
    
    1. wait(timeout) 方法:
      等待子进程终止,可以通过timeout参数设置超时时长,如果超过时长子进程如果没有执行结束,将会抛出异常 TimeoutExpired
    command = 'adb devices'
    p = subprocess.Popen(command, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.PIPE)
    out, err = p.communicate()
    res = out.decode('utf-8')
    p.wait(timeout=5)
    print(res)
    

    分享一波

    1. 通过传递命令列表批量执行子进程:
    def shell(commands=None):
        if commands is None:
            commands = []
        # 进入shell中# 进入shell中
        cmd = f''
        p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
        # 在打开当前shell窗口执行列表命令
        for command in commands:
            p.stdin.write(command.encode())
            p.stdin.write(b'\n')
            p.stdin.flush()
    

    作者:黄小莫

    物联沃分享整理
    物联沃-IOTWORD物联网 » 网站防火墙 *{margin:0;padding:0;color:#444} body{font-size:14px;font-family:”宋体”} .main{width:600px;margin:10% auto;} .title{background: #20a53a;color: #fff;font-size: 16px;height: 40px;line-height: 40px;padding-left: 20px;} .content{background-color:#f3f7f9; height:280px;border:1px dashed #c6d9b6;padding:20px} .t1{border-bottom: 1px dashed #c6d9b6;color: #ff4000;font-weight: bold; margin: 0 0 20px; padding-bottom: 18px;} .t2{margin-bottom:8px; font-weight:bold} ol{margin:0 0 20px 22px;padding:0;} ol li{line-height:30px} 网站防火墙 您的请求带有不合法参数,已被网站管理员设置拦截! 可能原因: 您提交的内容包含危险的攻击请求 如何解决: 检查提交内容; 如网站托管,请联系空间提供商; 普通网站访客,请联系网站管理员;

    发表回复