码迷,mamicode.com
首页 >  
搜索关键字:configparser    ( 485个结果
configparser 练习
[kaixin]xxx = 333name = hahheh = 0[erick]age = 123555xxx = ooo555name = hah555 1 import configparser 2 3 con = configparser.ConfigParser() 4 con.read(... ...
分类:其他好文   时间:2017-02-20 10:44:39    阅读次数:138
python中常用的内建模块
【datetime】 【random】随机数 生成随机数代码如下: os sys shutil json&picle shelve xml处理 yaml处理 configParser subprocess logging模块 re正则表达式 collections base64 struct has ...
分类:编程语言   时间:2017-02-09 23:47:05    阅读次数:194
利用python3.5 构建流媒体后台音视频切换的服务端程序
#!/usr/bin/env python3.5.0 # -*- coding:utf8 -*- import os,sys,socket,hashlib,time,select,threading,configparser import pymssql rootdir =os.path.abspa... ...
分类:编程语言   时间:2017-01-13 09:59:17    阅读次数:289
python ConfigParser 模块
工作中的一个小脚本目的:用于修改配置文件setting.ini,新增一个新的配置项importConfigParser cf=ConfigParser.ConfigParser() filepath=‘setting.ini‘ cf.read(filepath) foriincf.sections(): cf.set(i,‘user‘,‘test‘) withopen(filepath,‘wb‘)asconfigfile: cf.write(conf..
分类:编程语言   时间:2017-01-11 14:43:26    阅读次数:256
configparser
configparser configparser模块是python中用来处理类似于windows的ini格式文件, 一个ini文件的格式 ...
分类:其他好文   时间:2017-01-09 12:29:57    阅读次数:151
Python常用模块学习
1.模块介绍 2.time & datetime模块 3.random 4.os 5.sys 6.shutil 7.json&pickle 8.shelve 9.xml处理 10.yaml处理 11.configparser 12.hashlib 13.subprocess 14.logging模块 ...
分类:编程语言   时间:2017-01-05 18:31:51    阅读次数:356
Day5 - Python基础5 常用模块学习
Python 之路 Day5 - 常用模块学习 本节大纲: 模块介绍 time &datetime模块 random os sys shutil json & picle shelve xml处理 yaml处理 configparser hashlib subprocess logging模块 re ...
分类:编程语言   时间:2016-12-26 14:07:51    阅读次数:355
python ConfigParser 模块
ConfigParser的函数方法 读取配置文件 写入配置文件 配置文件 代码 ...
分类:编程语言   时间:2016-12-24 19:33:14    阅读次数:184
python模块(shelve,xml,configparser,hashlib,logging)
1.1shelve模块 shelve 模块比pickle模块简单,只有一个open函数,返回类似字典对象,可读可写:key必须为字符串, 而值可以是python所支持的数据类型。 shelve模块主要用来存储一个简单的数据, shelve最重要的函数是open,在调用它的时候,使用文件名作为参数,它 ...
分类:编程语言   时间:2016-12-16 10:03:30    阅读次数:259
Python模块之: configobj(转)
原来也有写过一篇文章Python模块之: ConfigParser 用来解析INI文件,但是在使用过程中存在一些问题。比如:1,不能区分大小写。2,重新写入的ini文件不能保留原有INI文件的注释。3,重新写入的ini文件不能保持原有的顺序。4,不支持嵌套。5,不支持格式校验。我本来是想扩展Conf ...
分类:编程语言   时间:2016-12-15 18:08:32    阅读次数:160
485条   上一页 1 ... 34 35 36 37 38 ... 49 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!