python - yaml

介绍

简介

yaml是一个专门用来写配置文件的语言

实例

【analysisyaml.py】
#/usr/bin/env python3
# -*- coding:utf-8 -*-
import yaml
import os
LocalPath = os.path.abspath(os.path.dirname(__file__))
configPath = os.path.join(LocalPath,'config.yaml')
with open(configPath,'rt',encoding='utf-8') as cfg:
    config = yaml.safe_load(cfg.read())
print(type(config))
print(config)

【config.yaml】
---
version: 1
disable_existing_loggers: False
formatters:
    simple:
        format: '%(asctime)s %(levelname)-8s %(message)s'

handlers:
    console:
        class: logging.StreamHandler
        level: DEBUG
        formatter: simple
        stream: ext://sys.stdout

    info_file_handler:
        class: logging.handlers.RotatingFileHandler
        level: INFO
        formatter: simple
        filename: iaasagent.log
        maxBytes: 10485760 # 10MB
        backupCount: 1
        encoding: utf8

    error_file_handler:
        class: logging.handlers.RotatingFileHandler
        level: ERROR
        formatter: simple
        filename: iaasagent.log
        maxBytes: 10485760 # 10MB
        backupCount: 0
        encoding: utf8

loggers:
    my_module:
        level: ERROR
        handlers: [console]
        propagate: no

root:
    level: INFO
    handlers: [info_file_handler, error_file_handler]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值