一些自己踩到的坑
1:root.first_diagnosis_time.astimezone(TZ), "%Y-%m-%d %H:%m" 像这种分钟就会不准确,要用大写。
2: 数据硬盘满了,redis就会连接不上报错。
3:不能在全局变量里定义时间。
4:orm在去重操作时要先排序 如 order_by('_id').distinct('_id')
5:导入本地配置文件
try:
from .local_settings import *
except Exception as e:
print(e)
finally:
print(DATABASES)