PyMOTW: StringIO and cStringIO
优质
小牛编辑
123浏览
2023-12-01
- 模块:StringIO 和 cStringIO
- 目的: 类似于file操作的文本缓冲区API
- python版本:StringIO: 1.4+, cStringIO: 1.5+
描述
类StringIO提供了一个在内存中方便处理文本的类文件(读, 写等操作)API. 他有两个独立的实现, 一个是用c实现的cStringIO模块, 速度较快, 另一个是StringIO模块, 他用python实现的以增强其可移植性. 使用cStringIO来处理大字符串可以提高运行性能,优于其他字符串串联技术.
例子
这里是一个好的, 标准的, 简单的. 使用StringIO缓冲的例子:
#!/usr/bin/env python """ Simple examples with StringIO module """ # Find the best implementation available on this platform try: from cStringIO import StringIO except: from StringIO import StringIO # Writing to a buffer output = StringIO() output.write('This goes into the buffer. ') print >>output, 'And so does this.' # Retrieve the value written print output.getvalue() output.close() # discard buffer memory # Initialize a read buffer input = StringIO('Inital value for read buffer') # Read from the buffer print input.read()
这个例子中使用了 read() , 但当然, 函数 readline() 和 readlines() 也都是可用的.类StringIO提供 seek() 函数, 因此在读取数据时可以任意跳到某个点上, 这也当你使用某些前看解析算法可以回头读取.
现实世界中, StringIO的应用包括一个网络应用程序栈, 栈的各个部分都可以增加文本到响应response对象中, 或者测试由程序某段输出(典型是写入到文件)的数据.
我们想在创建的工程应用中包括一个shell脚本接口, 他是以多个命令行程序的形式. 这些程序中的某些是负责从数据库中取数据, 然后将这些数据转储到控制台(可以是现实给用户, 也可以是文本中, 这样就可以作为另一个命令的输入). 这些命令他们共享了一组格式化插件以便产生一个对象的多种文本表示(XML, bash语法, 人可读的, 等等).
因为格式化可以将输出数据标准化后写到标准输出, 如果没有StringIO模块, 所得的测试结果可能会有些奇怪. 而使用了StringIO来拦截格式化的输出, 这样以便我们用一个简单的方式来收集内存中的输出数据, 来对预期的结果做比较.