python标准库学习9

简介:

fileinput 模块允许你循环一个或多个文本文件的内容

使用 fileinput 模块循环一个文本文件

import  fileinput
import  sys
 
for  line in  fileinput. input ( "samples/sample.txt" ):
     sys.stdout.write( "-> " )
     sys.stdout.write(line)
 
- > We will perhaps eventually be writing only small
- > modules which are identified by name as they are
- > used to build larger ones, so that devices like
- > indentation, rather than delimiters, might become
- > feasible for  expressing local structure in  the
- > source language.
- >      - -  Donald E. Knuth, December 1974

  你也可以使用 fileinput 模块获得当前行的元信息 (meta information). 其中包括 isfirstline , filename , lineno

使用 fileinput 模块处理多个文本文件

import  fileinput
import  glob
import  string, sys
 
for  line in  fileinput. input (glob.glob( "samples/*.txt" )):
     if  fileinput.isfirstline(): # first in a file?
         sys.stderr.write( "-- reading %s --\n"  %  fileinput.filename())
     sys.stdout.write( str (fileinput.lineno()) +  " "  +  string.upper(line))
 
- -  reading samples\sample.txt - -
1  WE WILL PERHAPS EVENTUALLY BE WRITING ONLY SMALL
2  MODULES WHICH ARE IDENTIFIED BY NAME AS THEY ARE
3  USED TO BUILD LARGER ONES, SO THAT DEVICES LIKE
4  INDENTATION, RATHER THAN DELIMITERS, MIGHT BECOME
5  FEASIBLE FOR EXPRESSING LOCAL STRUCTURE IN THE
6  SOURCE LANGUAGE.
7     - -  DONALD E. KNUTH, DECEMBER 1974

  文本文件的替换操作很简单. 只需要把 inplace 关键字参数设置为 1 , 传递给 input 函数, 该模块会帮你做好一切.

使用 fileinput 模块将 CRLF 改为 LF

import  fileinput, sys
 
for  line in  fileinput. input (inplace = 1 ):
     # convert Windows/DOS text files to Unix files
     if  line[ - 2 :] = =  "\r\n" :
         line =  line[: - 2 ] +  "\n"
     sys.stdout.write(line)

  shutil 实用模块包含了一些用于复制文件和文件夹的函数.

使用 shutil 复制文件

import  shutil
import  os
 
for  file  in  os.listdir( "." ):
     if  os.path.splitext( file )[ 1 ] = =  ".py" :
         print  file
         shutil.copy( file , os.path.join( "backup" , file ))
 
aifc - example - 1.py
anydbm - example - 1.py
array - example - 1.py
...

  copytree 函数用于复制整个目录树 (与 cp -r 相同), 而 rmtree 函数用于删除整个目录树 (与 rm -r )

使用 shutil 模块复制/删除目录树

import  shutil
import  os
 
SOURCE =  "samples"
BACKUP =  "samples-bak"
 
# create a backup directory
shutil.copytree(SOURCE, BACKUP)
 
print  os.listdir(BACKUP)
 
# remove it
shutil.rmtree(BACKUP)
 
print  os.listdir(BACKUP)
 
[ 'sample.wav' , 'sample.jpg' , 'sample.au' , 'sample.msg' , 'sample.tgz' ,
...
Traceback (most recent call last):
  File  "shutil-example-2.py" , line 17 , in  ?
    print  os.listdir(BACKUP)
os.error: No such file  or  directory

  tempfile 模块允许你快速地创建名称唯一的临时文件供使用.

使用 tempfile 模块创建临时文件

import  tempfile
import  os
 
tempfile =  tempfile.mktemp()
 
print  "tempfile" , "=>" , tempfile
 
file  =  open (tempfile, "w+b" )
file .write( "*"  *  1000 )
file .seek( 0 )
print  len ( file .read()), "bytes"
file .close()
 
try :
     # must remove file when done
     os.remove(tempfile)
except  OSError:
     pass
 
tempfile = > C:\TEMP\~ 160 - 1
1000  bytes

  TemporaryFile 函数会自动挑选合适的文件名, 并打开文件而且它会确保该文件在关闭的时候会被删除. (在 Unix 下, 你可以删除一个已打开的文件, 这 时文件关闭时它会被自动删除. 在其他平台上, 这通过一个特殊的封装类实现.)

使用 tempfile 模块打开临时文件

import  tempfile
 
file  =  tempfile.TemporaryFile()
 
for  i in  range ( 100 ):
     file .write( "*"  *  100 )
 
file .close() # removes the file!

   StringIO 模块的使用. 它实现了一个工作在内存的文件对象 (内存文件). 在大多需要标准文件对象的地方都可以使用它来替换.

使用 StringIO 模块从内存文件读入内容

import  StringIO
 
MESSAGE =  "That man is depriving a village somewhere of a computer scientist."
 
file  =  StringIO.StringIO(MESSAGE)
 
print  file .read()
 
That man is  depriving a village somewhere of a computer scientist.

  StringIO 类实现了内建文件对象的所有方法, 此外还有 getvalue 方法用来返回它内部的字符串值

 使用 StringIO 模块向内存文件写入内容

import  StringIO
 
file  =  StringIO.StringIO()
file .write( "This man is no ordinary man. " )
file .write( "This is Mr. F. G. Superman." )
 
print  file .getvalue()
 
This man is  no ordinary man. This is  Mr. F. G. Superman.

  

使用 StringIO 模块捕获输出

import  StringIO
import  string, sys
 
stdout =  sys.stdout
 
sys.stdout =  file  =  StringIO.StringIO()
 
print  """
According to Gbaya folktales, trickery and guile
are the best ways to defeat the python, king of
snakes, which was hatched from a dragon at the
world's start. -- National Geographic, May 1997
"""
 
sys.stdout =  stdout
 
print  string.upper( file .getvalue())
 
ACCORDING TO GBAYA FOLKTALES, TRICKERY AND GUILE
ARE THE BEST WAYS TO DEFEAT THE PYTHON, KING OF
SNAKES, WHICH WAS HATCHED FROM A DRAGON AT THE
WORLD'S START. - -  NATIONAL GEOGRAPHIC, MAY 1997

  cStringIO 是一个可选的模块, 是 StringIO 的更快速实现. 它的工作方式和 StringIO 基本相同, 但是它不可以被继承

使用 cStringIO 模块

import  cStringIO
 
MESSAGE =  "That man is depriving a village somewhere of a computer scientist."
 
file  =  cStringIO.StringIO(MESSAGE)
 
print  file .read()
 
That man is  depriving a village somewhere of a computer scientist.

  为了让你的代码尽可能快, 但同时保证兼容低版本的 Python ,你可以使用一个小技巧在 cStringIO 不可用时启用 StringIO 模块,

 后退至 StringIO

try :
     import  cStringIO
     StringIO =  cStringIO
except  ImportError:
     import  StringIO
 
print  StringIO
 
<module  'StringIO'  (built - in )>

  mmap 模块提供了操作系统内存映射函数的接口,  映射区域的行为和字符串对象类似, 但数据是直接从文件读取的.

 使用 mmap 模块

import  mmap
import  os
 
filename =  "samples/sample.txt"
 
file  =  open (filename, "r+" )
size =  os.path.getsize(filename)
 
data =  mmap.mmap( file .fileno(), size)
 
# basics
print  data
print  len (data), size
 
# use slicing to read from the file
# 使用切片操作读取文件
print  repr (data[: 10 ]), repr (data[: 10 ])
 
# or use the standard file interface
# 或使用标准的文件接口
print  repr (data.read( 10 )), repr (data.read( 10 ))
 
<mmap object  at 008A2A10 >
302  302
'We will pe'  'We will pe'
'We will pe'  'rhaps even'

  在 Windows 下, 这个文件必须以既可读又可写的模式打开( `r+` , `w+` , 或 `a+` ), 否则 mmap 调用会失败.

对映射区域使用字符串方法和正则表达式

mport mmap
import  os, string, re
 
def  mapfile(filename):
     file  =  open (filename, "r+" )
     size =  os.path.getsize(filename)
     return  mmap.mmap( file .fileno(), size)
 
data =  mapfile( "samples/sample.txt" )
 
# search
index =  data.find( "small" )
print  index, repr (data[index - 5 :index + 15 ])
 
# regular expressions work too!
m =  re.search( "small" , data)
print  m.start(), m.group()
 
43  'only small\015\012modules '
43  small

  


  


==============================================================================
本文转自被遗忘的博客园博客,原文链接:http://www.cnblogs.com/rollenholt/archive/2011/11/27/2264946.html,如需转载请自行联系原作者
相关文章
|
20天前
|
调度 开发者 Python
Python中的异步编程:理解asyncio库
在Python的世界里,异步编程是一种高效处理I/O密集型任务的方法。本文将深入探讨Python的asyncio库,它是实现异步编程的核心。我们将从asyncio的基本概念出发,逐步解析事件循环、协程、任务和期货的概念,并通过实例展示如何使用asyncio来编写异步代码。不同于传统的同步编程,异步编程能够让程序在等待I/O操作完成时释放资源去处理其他任务,从而提高程序的整体效率和响应速度。
|
24天前
|
数据采集 存储 数据挖掘
Python数据分析:Pandas库的高效数据处理技巧
【10月更文挑战第27天】在数据分析领域,Python的Pandas库因其强大的数据处理能力而备受青睐。本文介绍了Pandas在数据导入、清洗、转换、聚合、时间序列分析和数据合并等方面的高效技巧,帮助数据分析师快速处理复杂数据集,提高工作效率。
55 0
|
10天前
|
XML 存储 数据库
Python中的xmltodict库
xmltodict是Python中用于处理XML数据的强大库,可将XML数据与Python字典相互转换,适用于Web服务、配置文件读取及数据转换等场景。通过`parse`和`unparse`函数,轻松实现XML与字典间的转换,支持复杂结构和属性处理,并能有效管理错误。此外,还提供了实战案例,展示如何从XML配置文件中读取数据库连接信息并使用。
Python中的xmltodict库
|
17天前
|
数据库 Python
异步编程不再难!Python asyncio库实战,让你的代码流畅如丝!
在编程中,随着应用复杂度的提升,对并发和异步处理的需求日益增长。Python的asyncio库通过async和await关键字,简化了异步编程,使其变得流畅高效。本文将通过实战示例,介绍异步编程的基本概念、如何使用asyncio编写异步代码以及处理多个异步任务的方法,帮助你掌握异步编程技巧,提高代码性能。
51 4
|
17天前
|
API 数据处理 Python
探秘Python并发新世界:asyncio库,让你的代码并发更优雅!
在Python编程中,随着网络应用和数据处理需求的增长,并发编程变得愈发重要。asyncio库作为Python 3.4及以上版本的标准库,以其简洁的API和强大的异步编程能力,成为提升性能和优化资源利用的关键工具。本文介绍了asyncio的基本概念、异步函数的定义与使用、并发控制和资源管理等核心功能,通过具体示例展示了如何高效地编写并发代码。
26 2
|
22天前
|
数据采集 JSON 测试技术
Python爬虫神器requests库的使用
在现代编程中,网络请求是必不可少的部分。本文详细介绍 Python 的 requests 库,一个功能强大且易用的 HTTP 请求库。内容涵盖安装、基本功能(如发送 GET 和 POST 请求、设置请求头、处理响应)、高级功能(如会话管理和文件上传)以及实际应用场景。通过本文,你将全面掌握 requests 库的使用方法。🚀🌟
42 7
|
23天前
|
机器学习/深度学习 数据采集 算法
Python机器学习:Scikit-learn库的高效使用技巧
【10月更文挑战第28天】Scikit-learn 是 Python 中最受欢迎的机器学习库之一,以其简洁的 API、丰富的算法和良好的文档支持而受到开发者喜爱。本文介绍了 Scikit-learn 的高效使用技巧,包括数据预处理(如使用 Pipeline 和 ColumnTransformer)、模型选择与评估(如交叉验证和 GridSearchCV)以及模型持久化(如使用 joblib)。通过这些技巧,你可以在机器学习项目中事半功倍。
33 3
|
25天前
|
存储 数据挖掘 数据处理
Python数据分析:Pandas库的高效数据处理技巧
【10月更文挑战第26天】Python 是数据分析领域的热门语言,Pandas 库以其高效的数据处理功能成为数据科学家的利器。本文介绍 Pandas 在数据读取、筛选、分组、转换和合并等方面的高效技巧,并通过示例代码展示其实际应用。
31 2
|
16天前
|
数据采集 数据可视化 数据挖掘
利用Python进行数据分析:Pandas库实战指南
利用Python进行数据分析:Pandas库实战指南
|
22天前
|
文字识别 自然语言处理 API
Python中的文字识别利器:pytesseract库
`pytesseract` 是一个基于 Google Tesseract-OCR 引擎的 Python 库,能够从图像中提取文字,支持多种语言,易于使用且兼容性强。本文介绍了 `pytesseract` 的安装、基本功能、高级特性和实际应用场景,帮助读者快速掌握 OCR 技术。
39 0
下一篇
无影云桌面