当前位置:
首页 > Python基础教程 >
-
Python3标准库:io文本、十进制和原始流I/O工具
作者:@小灰灰
回到顶部(go to top)
1. io文本、十进制和原始流I/O工具
io模块在解释器的内置open()之上实现了一些类来完成基于文件的输入和输出操作。这些类得到了适当的分解,从而可以针对不同的用途重新组合——例如,支持向一个网络套接字写Unicode数据。
1.1 内存中的流
StringIO提供了一种很便利的方式,可以使用文件API(如read()、write()等)处理内存中的文本。有些情况下,与其他一些字符串连接技术相比,使用StringIO构造大字符串可以提供更好的性能。内存中的流缓冲区对测试也很有用,写入磁盘上真正的文件并不会减慢测试套件的速度。
下面是使用StringIO缓冲区的一些标准例子。
- import io
- # Writing to a buffer
- output = io.StringIO()
- output.write('This goes into the buffer. ')
- print('And so does this.', file=output)
- # Retrieve the value written
- print(output.getvalue())
- output.close() # discard buffer memory
- # Initialize a read buffer
- input = io.StringIO('Inital value for read buffer')
- # Read from the buffer
- print(input.read())
这个例子使用了read(),不过也可以用readline()和readlines()方法。StringIO类还提供了一个seek()方法,读取文本时可以在缓冲区中跳转,如果使用一种前向解析算法,则这个方法对于回转很有用。
要处理原始字节而不是Unicode文本,可以使用BytesIO。
- import io
- # Writing to a buffer
- output = io.BytesIO()
- output.write('This goes into the buffer. '.encode('utf-8'))
- output.write('ÁÇÊ'.encode('utf-8'))
- # Retrieve the value written
- print(output.getvalue())
- output.close() # discard buffer memory
- # Initialize a read buffer
- input = io.BytesIO(b'Inital value for read buffer')
- # Read from the buffer
- print(input.read())
写入BytesIO实例的值一定是bytes而不是str。
1.2 为文本数据包装字节流
原始字节流(如套接字)可以被包装为一个层来处理串编码和解码,从而可以更容易地用于处理文本数据。TextIOWrapper类支持读写。write_through参数会禁用缓冲,并且立即将写至包装器的所有数据刷新输出到底层缓冲区。
- import io
- # Writing to a buffer
- output = io.BytesIO()
- wrapper = io.TextIOWrapper(
- output,
- encoding='utf-8',
- write_through=True,
- )
- wrapper.write('This goes into the buffer. ')
- wrapper.write('ÁÇÊ')
- # Retrieve the value written
- print(output.getvalue())
- output.close() # discard buffer memory
- # Initialize a read buffer
- input = io.BytesIO(
- b'Inital value for read buffer with unicode characters ' +
- 'ÁÇÊ'.encode('utf-8')
- )
- wrapper = io.TextIOWrapper(input, encoding='utf-8')
- # Read from the buffer
- print(wrapper.read())
这个例子使用了一个BytesIO实例作为流。对应bz2、http,server和subprocess的例子展示了如何对其他类型的类似文件的对象使用TextIOWrapper。
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式