导语:
本文主要介绍了关于python中Pexpect的工作流程的相关知识,包括python流程控制,以及工作流程中的管理工作流程的是这些编程知识,希望对大家有参考作用。
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
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() 方法用于执行程序,返回程序的操作句柄,然后就可以通过操作句柄与程序进行交互了。
以上就是python中Pexpect工作流程
的介绍,希望能对大家有所帮助。
更多Python学习指路:
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python vim 模块的功能接口01/01
- ♥ python运行文件位于哪个文件夹中?09/21
- ♥ python编程语言有什么用09/08
- ♥ python文件以什么结尾12/12
- ♥ 如何在 python 中使用 scipy.special 模块?09/18
- ♥ Python小白福利之枚举函数12/14
内容反馈