首页 > 编程 > Python > 正文

Python读写ini文件的方法

2020-01-04 18:08:02
字体:
来源:转载
供稿:网友

这篇文章主要介绍了Python读写ini文件的方法,实例分析了Python针对ini配置文件的读写及修改等操作技巧,需要的朋友可以参考下

本文实例讲述了Python读写ini文件的方法。分享给大家供大家参考。具体如下:

比如有一个文件update.ini,里面有这些内容:

 

 
  1. [ZIP] 
  2. EngineVersion=0 
  3. DATVersion=5127 
  4. FileName=dat-5127.zip 
  5. FilePath=/pub/antivirus/datfiles/4.x/ 
  6. FileSize=13481555 
  7. Checksum=6037,021E 
  8. MD5=aaeb519d3f276b810d46642d782d8921 

那就可以通过下面这些代码得到MD5的值,简单吧

 

 
  1. #!/usr/bin/env python 
  2. # -*- coding: utf-8 -*- 
  3. import ConfigParser 
  4. config = ConfigParser.ConfigParser() 
  5. config.readfp(open('update.ini')) 
  6. a = config.get("ZIP","MD5"
  7. print a 

写也很简单:

 

 
  1. import ConfigParser 
  2. config = ConfigParser.ConfigParser() 
  3. # set a number of parameters 
  4. config.add_section("book"
  5. config.set("book""title""the python standard library"
  6. config.set("book""author""fredrik lundh"
  7. config.add_section("ematter"
  8. config.set("ematter""pages", 250) 
  9. # write to file 
  10. config.write(open('1.ini'"w")) 

修改也不难(添加内容):

 

 
  1. #!/usr/bin/env python 
  2. # -*- coding: utf-8 -*- 
  3. import ConfigParser 
  4. config = ConfigParser.ConfigParser() 
  5. config.read('1.ini'
  6. a = config.add_section("md5"
  7. config.set("md5""value""1234"
  8. config.write(open('1.ini'"r+")) #可以把r+改成其他方式,看看结果:) 

修改内容:

 

 
  1. #!/usr/bin/env python 
  2. # -*- coding: utf-8 -*- 
  3. import ConfigParser 
  4. config = ConfigParser.ConfigParser() 
  5. config.read('1.ini'
  6. config.set("md5""value""kingsoft") #这样md5就从1234变成kingsoft了 
  7. config.write(open('1.ini'"r+")) 

删除部分就懒得写了,感兴趣的自己看文档:

remove_option(section, option)

Remove the specified option from the specified section. If the section does not exist, raise NoSectionError. If the option existed to be removed, return True; otherwise return False. New in version 1.6.

remove_section(section)

Remove the specified section from the configuration. If the section in fact existed, return True. Otherwise return False.

希望本文所述对大家的Python程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表