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