码迷,mamicode.com
首页 > 编程语言 > 详细

Python之configparser配置文件的读取

时间:2019-04-25 00:55:27      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:getconf   .config   ase   color   filename   print   pat   配置   root   

配置文件名

config.ini

文件内容:

[linux]
ip:10.0.13.26
port:22
username:root
password:W2ynE6b58wheeFho

[mysql]
ip:10.0.13.26
port:22
username:root
password:W2ynE6b58wheeFho

 调用文件名

tryConfigparser.py

文件内容

#!/user/bin/env python
#coding:utf-8
#Author:shenqiang

import os
import configparser

‘‘‘拿到文件的路径‘‘‘
def base_path(filename = None):
    return os.path.join(os.path.dirname(__file__),filename)

def getConfigparser(Linux = linux):
    ‘‘‘实例化对象‘‘‘
    config = configparser.ConfigParser()
    ‘‘‘读取文件内容‘‘‘
    config.read(base_path(config.ini))
    
    ip = config.get(Linux,ip)
    port = config.get(Linux,port)
    username = config.get(Linux,username)
    password = config.get(Linux,password)
    return [ip,port,username,password]

for i in range(len(getConfigparser())):
    print(getConfigparser()[i])

 

Python之configparser配置文件的读取

标签:getconf   .config   ase   color   filename   print   pat   配置   root   

原文地址:https://www.cnblogs.com/shen-qiang/p/10765722.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!