python中的简单流重定向。

redirect-streams的Python项目详细描述


Package Documentation

说明

此项目提供python上下文管理器来帮助重定向多个 输出到缓冲区的形式(捕获输出)。

安装

$ pip install redirect-streams

基本用法

此项目最常见的用途是重定向stdout

fromioimportBytesIO,SEEK_SET,TextIOWrapperfromosimportsystemfromsysimportstdoutfromredirect_streamsimportredirect_stdoutwithTextIOWrapper(BytesIO(),stdout.encoding)asbuffer:withredirect_stdout(buffer):print('this will be saved in the buffer')# code below won't work with stdlib's redirect_stdoutsystem('this will be saved in the buffer')buffer.seek(SEEK_SET)saved=buffer.read()print(saved)

有关其他上下文管理器和更多详细信息,请参阅 到documentation

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java Android Action_Edit Intent无法像以前一样调用App Gallery来编辑图片   确保JRE兼容性的java适当程序(32或64位)   java JSONArray。for循环中的add(JSONObject)正在替换for循环中的旧值,数组由循环中的最后一个值组成   java需要帮助创建一个返回数组的方法,该数组的元素是另一个数组的平方   使用SmbFile w/groovy XmlSluper()创建xml。解析()Java   检查大小后的java ArrayIndexOutOfBoundsException   乘法表中的第k个最小元素   java 401 on请求,其中指定了'permitAll()'   java如何附加ORC文件   java hibernate类模型   java IDEA没有看到由自定义注释处理器生成的方法   Servlet中未声明java SerialVersionId   java linkedlist到达列表末尾时   java如何正确对齐EditText光标?   java 6编译器1.6上的eclipse重写方法错误   java如何在基于Jersey的RESTful Web服务中读取post数据   java如何在活动中正确使用接口?   Java的JIT编译器的工作速度有多快?