python 使用中遇到的问题,记录及解决方法
Posted Ray_lei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用中遇到的问题,记录及解决方法相关的知识,希望对你有一定的参考价值。
1、读取configparser 配置文件报错 :
提示:
ConfigParser.MissingSectionHeaderError when parsing rsyncd config file with global options
解决方法:
cfg = configparser.ConfigParser()
with open(file,‘r‘) as fp:
cfg.read_file(itertools.chain([‘[global]‘], fp), source=file)
# config.read(file,encoding=‘utf-8‘)
gw_sip = cfg.get(‘test_sip_endpoint‘,‘gw_sip‘)
以上是关于python 使用中遇到的问题,记录及解决方法的主要内容,如果未能解决你的问题,请参考以下文章
mac 安装 python mysqlclient 遇到的问题及解决方法
mac 安装 python mysqlclient 遇到的问题及解决方法