1、工作流程步骤
(1)用spawn来执行一个程序;
(2)用expect方法来等待指定的关键字,这个关键字是被执行的程序打印到标准输出上面的;
(3)当发现这个关键字以后,使用send/sendline方法发送字符串给这个程序。
2、实例
spawn类
class spawn(SpawnBase):
'''This is the main class interface for Pexpect. Use this class to start
and control child applications. '''
# This is purely informational now - changing it has no effect
use_native_pty_fork = use_native_pty_fork
def __init__(self, command, args=[], timeout=30, maxread=2000,
searchwindowsize=None, logfile=None, cwd=None, env=None,
ignore_sighup=False, echo=True, preexec_fn=None,
encoding=None, codec_errors='strict', dimensions=None,
use_poll=False):
通过spawn()方法用来执行一个程序,返回程序的操作句柄,后续就可以通过操作句柄来与这个程序进行交互了。
知识点扩展:
Pexpect的基本工作流程,基本可以分为以下三个步骤:
首先用spawn来执行一个程序;到此这篇关于python中Pexpect的工作流程实例讲解的文章就介绍到这了,更多相关python中Pexpect的工作流程内容请搜索软件开发网以前的文章或继续浏览下面的相关文章希望大家以后多多支持软件开发网!
您可能感兴趣的文章:python基于pexpect库自动获取日志信息Python pexpect模块及shell脚本except原理解析python之pexpect实现自动交互的例子使用python的pexpect模块,实现远程免密登录的示例python pexpect ssh 远程登录服务器的方法对Python Pexpect 模块的使用说明详解Python Pexpect库的简单使用方法