python的Popen多行交互
作者:互联网
看到自动化测试的一个例子,RSpec中通过IO.popen进行命令行程序的测试(涉及交互),
然后在Python中,Popen的用法有点小的区别,查了一些资料,有些内容整理下,记个笔记:
- python3中目前用subprocess库
- Popen,可设置stdin,stdout为PIPE
- Popen.communicate()是用于一次性通信的辅助函数
- 多行的交互式的通信,用write和readline,用的时候注意读写阻塞,按照write->flush->read的顺序,示例代码:
proc.stdin.write(b'2+2\n') proc.stdin.flush() print(proc.stdout.readline())
参考:
- Multiple inputs and outputs in python subprocess communicate
- Interacting with a long-running child process in Python
扩展:
因为用于自动化测试,不用考虑非阻塞的情况了,还是Ruby的语法糖甜。
标签:多行,python,stdin,Popen,subprocess,write,flush,proc 来源: https://www.cnblogs.com/mstx/p/14911808.html