# -*- encoding:utf8 -*- """ logger_mail.py ~~~~~~~~~~~~~~ 分析每天的错误日志,发送邮件通知 =====================================B """ import sys import ConfigParser #... ...
分类:
其他好文 时间:
2017-06-07 11:13:58
阅读次数:
121
shutil模块 shutil模块提供了大量的文件的高级操作。特别针对文件拷贝和删除,主要功能为目录和文件操作以及压缩操作。对单个文件的操作也可参见os模块。 shutil.copyfileobj(fsrc, fdst[, length]) shutil.copyfileobj(fsrc, fdst ...
分类:
编程语言 时间:
2017-06-06 23:30:09
阅读次数:
298
yaml模块: python可以处理yaml文件,yaml文件安装的方法为:$ pip3 install pyyaml configparser模块,用来处理文件的模块,可以实现文件的增删改查 configparser用于处理特定格式的文件,其本质上是利用open来操作文件 下面来看看configa ...
分类:
其他好文 时间:
2017-05-29 21:43:54
阅读次数:
203
本机:python3.5 1.需要安装configerparser 【py2是 ConfigParser】 2.编写代码 运行前 运行后 ...
分类:
编程语言 时间:
2017-05-22 21:30:23
阅读次数:
280
ConfigParser模块: 创建配置文件: 查看: 修改,添加,删除: ...
分类:
编程语言 时间:
2017-05-21 23:23:12
阅读次数:
201
https://wiki.python.org/moin/ConfigParserExamples 1 错误一 nicodeEncodeError: 'ascii' codec can't encode characters in position 0-2: ordinal not in range ...
分类:
编程语言 时间:
2017-05-21 14:43:51
阅读次数:
231
Python标准库系列之configparser模块ThismoduleprovidestheConfigParserclasswhichimplementsabasicconfigurationlanguagewhichprovidesastructuresimilartowhat’sfoundinMicrosoftWindowsINIfiles.YoucanusethistowritePythonprogramswhichcanbecustomizedbyenduserseasily.c..
分类:
编程语言 时间:
2017-05-15 14:09:04
阅读次数:
98
C:\Python27\Lib\ConfigParser.py: 会将配置文件中的选项名改为小写 为了保持配置项名称的大小写格式,重写: ...
分类:
编程语言 时间:
2017-05-15 13:11:44
阅读次数:
290
pip3 install mysql 1、错误1 原因:在 Python 3.x 版本后,ConfigParser.py 已经更名为 configparser.py 所以出错! 解决,将模块cp一份为ConfigParser.py 2、 find / -name mysql_config 没有 你需 ...
分类:
数据库 时间:
2017-05-10 00:20:49
阅读次数:
173
用于生成和修改常见配置文档,当前模块的名称在 python 3.x 版本中变更为 configparser。 来看一个好多软件的常见文档格式如下 1 2 3 4 5 6 7 8 9 10 11 12 [DEFAULT] ServerAliveInterval = 45 Compression = y ...
分类:
编程语言 时间:
2017-05-04 14:42:25
阅读次数:
233