Python模块04/包/logging日志
内容大纲
1.包
2.logging日志
1.包
什么是包?
文件夹下具有__init__.py文件就是一个包
# import bake
# bake.api.policy.func()
# import bake.api.policy
# bake.api.policy.func()
# import bake.api.policy as p
# import bake.db.models as s
# p.func()
# s.foo()
# from bake.api.policy import func
# func()
# from bake.api import *
# www.ww()
# from bake.cmd import *
# manage.get()
# from bake.db import models
# models.foo()
# from ss.bake import *
# db.models.foo()
# api.policy.func()
# cmd.manage.get()
# import ss
# ss.bake.api.policy.func()
# import sys
# print(sys.path)
# from ss.bake import *
# import www
# www.ww()
# api.www.ww()
# print(sys.path)
# 两种:
# 绝对路径导入:
# from ss.bake.api.policy import func
# func()
# 相对路径导入:
# from .. api.www import ww
# ww()
# 注意点:
# 1.使用相对路径必须在最外层包的同级进行导入
# 2.python2中import包,如果包没有__init__.py就报错,python3 import包,包里没有__init__.py不会报错
# from ss.bake.cmd.manage import get
# get()
# from ss import *
# manage.get()
# policy.func()
# from ss import *
# # print(locals())
# c = bake.db.models
# c.foo()
2.logging日志
# logging -- 日志
# import logging
# logging.debug('我是调试')
# logging.info('我是信息')
# logging.warning('我是警告')
# logging.error('我是错误')
# logging.critical('我是危险')
# 默认是从warning开始记录
# import logging
# logging.basicConfig(level=logging.DEBUG,
# format='%(asctime)s %(filename)s [line:%(lineno)d] %(levelname)s %(message)s',
# datefmt='%Y-%m-%d %H:%M:%S',
# filename='test.log',
# filemode='w')
# dic = {"key":123}
# logging.debug(dic)
# num = 100
# logging.info(f"用户当前余额:{num - 50}")
# try:
# num = int(input("请输入数字:"))
# except Exception as e:
# logging.warning("int将字符串转换报错了")
# print("12334")
# logging.error('我是错误')
# logging.critical('我是危险')
import logging
logger = logging.getLogger()
# 创建一个logger
fh = logging.FileHandler('test.log',mode="a",encoding='utf-8') # 文件
ch = logging.StreamHandler() # 屏幕
formatter = logging.Formatter('%(asctime)s - %(name)s - %(filename)s - [line:%(lineno)d] - %(levelname)s - %(message)s')
# 将屏幕和文件都是用以上格式
logger.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')
3.今日总结
# 1.包
# import 包.包.包
# from 包.包.包 import 模块
# 路径:
# 绝对:从最外层的包开始导入
# 相对:从当前(.)开始导入或者父级(..)导入
# 使用相对路径的时候必须在包的外层且同级
# from 包 import *
# 需要在__init__.py做操作
# python2: import 文件夹(没有__init__.py)报错
# python3: import 文件夹(没有__init__.py)不报错
# 包:自己一定要多练练
# 2.日志:
# 记住怎么使用就好了
# 自己定义日志开始
# import logging
# logger = logging.getLogger()
# # 创建一个logger
# fh = logging.FileHandler('test.log',mode="a",encoding='utf-8') # 文件
# ch = logging.StreamHandler() # 屏幕
# formatter = logging.Formatter('%(asctime)s - %(name)s - %(filename)s - [line:%(lineno)d] - %(levelname)s - %(message)s')
# # 将屏幕和文件都是用以上格式
# logger.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')