记一次用python 的ConfigParser读取配置文件编码报错 ...... raise MissingSectionHeaderError(fpname, lineno, line)ConfigParser.MissingSectionHeaderError: File contains no section headers. ...... 参考自 https://my.oschina.net/u/4256213/blog/3911579,这位仁兄说的比较在理,确实是BOM的问题,遗憾的…
configparser模块提供对ini文件的增删改查方法. ini文件的数据格式: [name1] attribute1=value1 attribute2=value2 [name2] attribute1=value1 attribute2=value2 读取文件内容: import ConfigParser conf = ConfigParser.ConfigParser() conf.read('config.ini') # 文件路径 a = conf.get("name1"…
ConfigParser 是Python自带的模块, 用来读写配置文件, 用法非常简单. 配置文件的格式是: []包含的叫section,    section 下有option=value这样的键值 配置文件格式如下: [N1] name = Anne age = 28 [N2] name = Andy age = 32 我试过的可以支持的配置文件格式有ini  yaml  xml txt 代码如下:(python3中该模块更名为configparser) # coding: UTF-8 #兼…
configparser模块用来对配置文件进行操作 1.获取所有块 import configparser config = configparser.ConfigParser() config.read('xxxooo', encoding='utf-8') ret = config.sections() print(ret) 2.获取指定块下所有的键值对 import configparser config = configparser.ConfigParser() config.read(…
configparser模块 该模块适用于配置文件的格式与windows ini文件类似,可以包含一个或多个节(section),每个节可以有多个参数(键=值) 创建文件 import configparser config = configparser.ConfigParser() config[', 'Compression': 'yes', 'ForwardX11':'yes' } config['bitbucket.org'] = {'User':'hg'} config[','Forw…
python语言用来解析配置文件的模块是ConfigParser,python3中是configparser模块,我在使用中发现write方法在将配置项重新写入文 件时,配置文件中的空行和注释行都会被去掉,虽然这个并不影响使用,但配置文件的可读性无疑还是变差了,为此特地对ConfigParser模块进 行了一点改动,使其保留注释项和空行. 代码很简单.思路就是在读配置文件的时候碰到注释行或换行就缓存起来,然后在写入的时候从缓存中取出就可以了. 以python2为例,上代码: 1.修改 RawCo…
http://www.2cto.com/kf/201108/100384.html #!/usr/bin/python # -*- coding:utf-8 -*- import ConfigParser config = ConfigParser.ConfigParser() config.read("flashfxp.ini") sections = config.sections() print sections options = config.options("Cm…
1.1shelve模块 shelve 模块比pickle模块简单,只有一个open函数,返回类似字典对象,可读可写:key必须为字符串, 而值可以是python所支持的数据类型. shelve模块主要用来存储一个简单的数据, shelve最重要的函数是open,在调用它的时候,使用文件名作为参数,它会返回一个架子(shelf)对象,可以用它来存储类容. f = shelve.open(r"shelve_test.txt") # aa = {"stu1":{"…
python 模块configparser   配置文件模块 import configparser    config = configparser.ConfigParser() config["DEFAULT"] = {'ServerAliveInterval': '45',            'Compression': 'yes',            'CompressionLevel': '9'}    config['bitbucket.org'] = {'User…
一.加密模块 1.hashlib模块:加密 ①有解密的加密方式 ②无解密的加密方式:碰撞检查 -- 1)不同数据加密后的结果一定不一致 -- 2)相同数据的加密结果一定是一致的 import hashlib user_map = {} def lock(msg): cipher = hashlib.md5(msg.encode('utf-8')) return cipher.hexdigest() def regisrer(): print('注册页面') user = input('user:…