1、错误原因 ps:来自chatgpt 这个错误是由于您尝试向数据库中的 'name' ...
fastapi程序用PyInstaller 打包报错: Error loading ASGI app. Could not import m
1、程序 仅有一个main.py 2、起初打包命令 pyinstaller --onefile mai...
线上405错误:AttributeError: 'Timestamp' object has no attribute 'translate
1、背景: 本地接口测试正常,线上报错。 2、代码 …… cur_time = datetime.n...
一次线上服务器500错误排查记录: TypeError: Object of type NAType is not JSON serial
查看服务器日志看到错误:TypeError: Object of type NAType is not JS...
mysql数据库断开连接报错处理:sqlalchemy.exc.OperationalError
当数据库断开连接时会出现两个错误: (pymysql.err.OperationalError)...
pymysql.err.OperationalError) (1205, 'Lock wait timeout exceeded; try
1、可能原因 MySQL的错误消息 "Lock wait timeout exceeded; t...
HTTP 503错误
1、概念 HTTP 503错误表示服务器当前无法处理请求,通常是由于服务器过载、维护或临时故障引起的。这个...
AttributeError: module 'logging' has no attribute 'config'
导入import logging.config,而非import logging...
TypeError: Index(...) must be called with a collection of some kind, '
原因: 如果你的数据只有一列,在指定column时,需要加个中括号 解决: df = pd.Da...
requests发送post请求遇到网络连接中断:ConnectionError
背景 项目需要的一个脚本程序,有一个功能是发送post请求获取数据。测试测的时候发现程序隔天停掉了,猜测是...