1. 程式人生 > >configparser模組,logging模組

configparser模組,logging模組

configparser模組

該模組適用於配置檔案的格式與windows ini檔案類似,可以包含一個或多個節(section),每個節可以有多個引數(鍵=值)。

建立檔案
使用下面的Python檔案就可以建立一個與之對應的.ini檔案

import configparser

config = configparser.ConfigParser()

config["DEFAULT"] = {'ServerAliveInterval': '45',
                      'Compression': 'yes',
                     'CompressionLevel': '9',
                     'ForwardX11': 'yes'
                     }

config['bitbucket.org'] = {'User':'hg'}

config['topsecret.server.com'] = {'Host Port':'50022','ForwardX11':'no'}

with open('example.ini', 'w') as configfile:

   config.write(configfile)

生成的文件內容:

[DEFAULT]
compression = yes
forwardx11 = yes
compressionlevel = 9
serveraliveinterval = 45
 
[bitbucket.org]
user = hg
 
[topsecret.server.com]
forwardx11 = no
host port = 50022

查詢檔案

import configparser

config = configparser.ConfigParser()

#---------------------------查詢檔案內容,基於字典的形式

print(config.sections())        #  檢視所有的節,但是預設不顯示defaul節[]

config.read('example.ini')
print(config.sections())        #  ['bitbucket.org', 'topsecret.server.com']
print('bytebong.com' in config)  # False
print('bitbucket.org' in config)  # 驗證某個節是否在檔案中  True

print(config['bitbucket.org']["user"])  # 檢視某個節下面的某個配置的值hg

print(config['DEFAULT']['Compression']) #yes 看是否有default的節

print(config['topsecret.server.com']['ForwardX11'])  #no

print(config['bitbucket.org'])          # 判斷是否可迭代 <Section: bitbucket.org>
#
for key in config['bitbucket.org']:     # 注意,有default會預設default的鍵
    print(key)

print(config.options('bitbucket.org'))  # 同for迴圈,找到'bitbucket.org'下所有鍵

print(config.items('bitbucket.org'))    #找到'bitbucket.org'下所有鍵值對

print(config.get('bitbucket.org','compression')) # yes       get方法Section下的key對應的value

增刪改操作

import configparser

config = configparser.ConfigParser()

config.read('example.ini')

config.add_section('yuan')



config.remove_section('bitbucket.org')
config.remove_option('topsecret.server.com',"forwardx11")


config.set('topsecret.server.com','k1','11111')
config.set('yuan','k2','22222')

config.write(open('new2.ini', "w"))

注意:

#section 可以直接操作它的物件來獲取所有的資訊
#option 可以通過找到的節點檢視多有的項
Configparser_write

class Configparser:
    def __init__(self,section,option):
        self.section = section
        self.option = option
    def write(self,f):
        f.write(self.section,self.option)


f = open('test','w')
config = Configparser('a','b')
config.write(f)

logging模組

log稱為日誌,日誌給我們在內部操作的時候提供很多便利,給使用者提供更多的資訊,在程式使用的過程中自己除錯需要看的資訊幫助程式設計師排查程式的問題,logging模組 不會自動幫你新增日誌的內容,你自己想列印什麼 你就寫什麼

logging分為兩種模式:

(1) 簡單配置

簡單配置 配置格式 basicCondfig
問題:編碼問題,不能同時輸出到檔案和螢幕
(2)配置logger物件

logger物件配置

高可定製化

首先創造logger物件

創造檔案控制代碼 螢幕控制代碼

創造格式

使用檔案控制代碼和螢幕控制代碼 繫結格式

logger物件和控制代碼關聯

logger.setLevel

使用的時候 logger.debug
函式式簡單配置

import logging  
logging.debug('debug message')  
logging.info('info message')  
logging.warning('warning message')  
logging.error('error message')  
logging.critical('critical message') 

logging.debug(‘debug message’) # debug 除錯模式 級別最低
logging.info(‘info message’) # info 顯示正常資訊
logging.warning(‘warning message’) # warning 顯示警告資訊
logging.error(‘error message’) # error 顯示錯誤資訊
logging.critical(‘critical message’) # critical 顯示嚴重錯誤資訊

預設情況下Python的logging模組將日誌列印到了標準輸出中,且只顯示了大於等於WARNING級別的日誌,這說明預設的日誌級別設定為WARNING(日誌級別等級CRITICAL > ERROR > WARNING > INFO > DEBUG),預設的日誌格式為日誌級別:Logger名稱:使用者輸出訊息。

logging模組提供5中日誌級別,從低到高一次:debug info warning error critical

靈活配置日誌級別,日誌格式,輸出位置:
靈活配置:

import logging  
logging.basicConfig(level=logging.DEBUG,  
                    format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s',  
                    datefmt='%a, %d %b %Y %H:%M:%S',  
                    filename='/tmp/test.log',  
                    filemode='w')  
  
logging.debug('debug message')  
logging.info('info message')  
logging.warning('warning message')  
logging.error('error message')  
logging.critical('critical message')

配置引數

logging.basicConfig()函式中可通過具體引數來更改logging模組預設行為,可用引數有:
filename:用指定的檔名建立FiledHandler,這樣日誌會被儲存在指定的檔案中。
filemode:檔案開啟方式,在指定了filename時使用這個引數,預設值為“a”還可指定為“w”。
format:指定handler使用的日誌顯示格式。
datefmt:指定日期時間格式。
level:設定rootlogger(後邊會講解具體概念)的日誌級別
stream:用指定的stream建立StreamHandler。可以指定輸出到sys.stderr,sys.stdout或者檔案(f=open(‘test.log’,’w’)),預設為sys.stderr。若同時列出了filename和stream兩個引數,則stream引數會被忽略。
format引數中可能用到的格式化串:
%(name)s Logger的名字
%(levelno)s 數字形式的日誌級別
%(levelname)s 文字形式的日誌級別
%(pathname)s 呼叫日誌輸出函式的模組的完整路徑名,可能沒有
%(filename)s 呼叫日誌輸出函式的模組的檔名
%(module)s 呼叫日誌輸出函式的模組名
%(funcName)s 呼叫日誌輸出函式的函式名
%(lineno)d 呼叫日誌輸出函式的語句所在的程式碼行
%(created)f 當前時間,用UNIX標準的表示時間的浮 點數表示
%(relativeCreated)d 輸出日誌資訊時的,自Logger建立以 來的毫秒數
%(asctime)s 字串形式的當前時間。預設格式是 “2003-07-08 16:49:45,896”。逗號後面的是毫秒
%(thread)d 執行緒ID。可能沒有
%(threadName)s 執行緒名。可能沒有
%(process)d 程序ID。可能沒有
%(message)s使用者輸出的訊息

logger物件配置

import logging

logger = logging.getLogger()
# 建立一個handler,用於寫入日誌檔案
fh = logging.FileHandler('test.log',encoding='utf-8') 

# 再建立一個handler,用於輸出到控制檯 
ch = logging.StreamHandler() 
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
fh.setLevel(logging.DEBUG)

fh.setFormatter(formatter) 
ch.setFormatter(formatter) 
logger.addHandler(fh) #logger物件可以新增多個fh和ch物件 
logger.addHandler(ch) 

logger.debug('logger debug message') 
logger.info('logger info message') 
logger.warning('logger warning message') 
logger.error('logger error message') 
logger.critical('logger critical message')

logging庫提供了多個元件:Logger、Handler、Filter、Formatter。Logger物件提供應用程式可直接使用的介面,Handler傳送日誌到適當的目的地,Filter提供了過濾日誌資訊的方法,Formatter指定日誌顯示格式。另外,可以通過:logger.setLevel(logging.Debug)設定級別,當然,也可以通過

fh.setLevel(logging.Debug)單對檔案流設定某個級別。