当前位置: 首页 > 图灵资讯 > 行业资讯> python中Pexpect的工作流程

python中Pexpect的工作流程

来源:图灵python
时间: 2024-08-27 13:58:49

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。

1、工作流程步骤

(1)使用spawn执行程序;

(2)使用expect方法等待指定的关键字,这个关键字是打印在标准输出上的执行程序;

(3)发现关键字后,使用send/sendline将字符串发送给程序。

2、实例

spawn类

classspawn(SpawnBase):
'''ThisisthemainclassinterfaceforPexpect.Usethisclasstostart
andcontrolchildapplications.'''

#Thisispurelyinformationalnow-changingithasnoeffect
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()方法执行程序,返回程序的操作句柄,然后通过操作句柄与程序进行交互。

以上是Python中Pexpect的工作流程希望对大家有所帮助。更多Python学习指导:python基础教程