doraemon的python 单例模式和日志操作(我的笔记整合起来就是一份完成的python学习资料)...

### 7.11 单例模式

- 无论实例化多少次,永远用的都是第一次实例化出来的对象

```python
class Foo:
    pass

#多例,每实例化一次就会创建一个新的对象
obj1 = Foo()
obj2 = Foo()
#单例,无论实例化多少次,都是用的第一次创建的那个对象
```

#### 7.11.1单例模式标准

```python
class Singleton(object):
    instance = None
    def __new__(cls,*args,**kwargs):
        if not cls.instance:
            cls.instance= object.__new__(cls)
        return cls.instance
    
obj1 = Singleton()
obj2 = Singleton()

    
```

文件的连接池

```python
class Filehelper(object):
    instance = None
    def __init__(self,path)
    self.file_object = open(path,mode='r',encoding='utf-8')
    
    def __new__(cls,*args,**kwargs):
        if not cls.instance:
            cls.instance = object.__new__(cla)
        return cls.instance
    
obj1 = Filehelper('x')
obj2 = Filehelper('x')
```

通过模块导入的特性也可以实现单例模式:

```python
#jd.py
class Foo:
    pass

obj = Foo()

```

```python
#app.py
import jd #加载jd.py,在加载最后会实例化一个Foo对象并赋值给obj
print(jd.obj)
```

### 7.12 日志

日志的处理本质

```python
file_handler1 = logging.FileHandler('x2.log', 'a', encoding='utf-8')
fmt1 = logging.Formatter(fmt="%(asctime)s - %(name)s - %(levelname)s -%(module)s:  %(message)s")
file_handler1.setFormatter(fmt1)


logger = logging.Logger('xxxxxx', level=logging.ERROR)
logger.addHandler(file_handler1)
# logger.addHandler(file_handler2)



logger.error('你好')
```

基本格式

```python
logging.basicConfig(
    filename='wf.log',
    format='%(asctime)s - %(name)s - %(levelname)s -%(module)s:  %(message)s',
    datefmt='%Y-%m-%d %H:%M:%S %p',
    level=logging.ERROR
)
#缺点是只能对一个文件进行操作(公司里不使用),推荐使用下面的的推荐方法
```



推荐处理日志方法

```python
import logging

file_handler = logging.FileHandler(filename='x1.log',mode='a',encoding='utf-8')
logging.basicConfig(
format='%(asctime)s-%(name)s-%(levelname)s-%(module)s:%(message)s'
    datefmt = '%Y-%m-%d %H:%M:%S %p'
    handlers = [file_handler,],
    level=logging.ERROR
)   
logging.error('你好')
```

推荐处理日志方式+日志分割

```python
import time
import logging
for logging import handlers
file_handler = handlers.TimeRotatingFileHandler(filename ='x2.log',when='s',interval=5,encoding='utf-8')
#这里的s是指以秒分割的基本单位,5是指每隔5秒分割一次
logging.basicConfig(
format='%(asctime)s-%(name)s-%(levelname)s-%(module)s: %(message)s'
    datefmt='%Y-%m-%d %H:%M:%S %p'
    handlers=[file_handler,],
    level=logging.ERROR
)
for i in range(1,1000):
    time.sleep(1)
    logging.error(str(i))
```

注意事项:

```python
#在应用日志时候,如果想要保留异常的堆栈信息(其实就是报在第几行出去,出错原因是啥,就是pycharm的报错样式)
import logging
import requests

logging.basicConfig(
    filename='wf.log',
    format='%(asctime)s - %(name)s - %(levelname)s -%(module)s:  %(message)s',
    datefmt='%Y-%m-%d %H:%M:%S %p',
    level=logging.ERROR
)

try:
    requsts.get('http://www.xx.com')
except Exception as e:
    msg = str(e)#调用e.__str__方法
    logging.error(msg,exc_info=True)
#转化成字符串后,加入exc_info=True即可
```

 

转载于:https://www.cnblogs.com/doraemon548542/p/11284608.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值