python中Pexpect的工作流程
本文教程操作環(huán)境:windows7系統(tǒng)、Python3.9.1,DELLG3電腦。
1、工作流程步驟
(1)用spawn來(lái)執(zhí)行一個(gè)程序;
(2)用expect方法來(lái)等待指定的關(guān)鍵字,這個(gè)關(guān)鍵字是被執(zhí)行的程序打印到標(biāo)準(zhǔn)輸出上面的;
(3)當(dāng)發(fā)現(xiàn)這個(gè)關(guān)鍵字以后,使用send/sendline方法發(fā)送字符串給這個(gè)程序。
2、實(shí)例
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):
通過(guò)spawn()方法用來(lái)執(zhí)行一個(gè)程序,返回程序的操作句柄,后續(xù)就可以通過(guò)操作句柄來(lái)與這個(gè)程序進(jìn)行交互了。
以上就是python中Pexpect工作流程的介紹,希望能對(duì)大家有所幫助。更多Python學(xué)習(xí)教程請(qǐng)關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。