1. 程式人生 > 程式設計 >python讀取ini配置檔案過程示範

python讀取ini配置檔案過程示範

這篇文章主要介紹了python讀取ini配置檔案過程示範,文中通過示例程式碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

安裝

pip install configparser

1 配置檔案 config.ini:

[MysqlDB]
user=root
passwd=123456
sport=3306
db_name=my_db
charset=utf-8


獲取引數:

import configparser
config = configparser.ConfigParser()  
config.read('config.ini')
host=config['MysqlDB']['host']
host=config.get('MysqlDB','host') (str格式)
sport=cfg.getint('MysqlDB','sport') (int格式)

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。