06 2022 档案
摘要:背景,表格创建时,直接把表格清空,防止历史数据进行干扰新的数据写入 import openpyxl # 保存Excel def saveExcel(codes): sheet_method(['Sheet2']) data = openpyxl.load_workbook("./source_fil
阅读全文
摘要:使用 gunicorn -w 4 -b 0.0.0.0:8080 main:app 运行时,报错 TypeError: __call__() missing 1 required positional argument: 'send' from fastapi import FastAPI app
阅读全文
摘要:python 使用uvicorn运行时报错module 'asyncio' has no attribute 'run' 很大可能是python的版本太低了 因为python3.7 及以后才支持run方法 或者是看一下你的项目文件里是不是命名了一个asyncio.py的文件,和运行的文件冲突了
阅读全文
摘要:进行fastApi开发时,发现源码swagger静态资源访问不到,可能是网址出现了问题宕机了,我们可以有以下几种方式进行处理 源码的请求位置fastapi.openapi.docs.py get_swagger_ui_html https://cdn.jsdelivr.net/npm/swagger
阅读全文
摘要:详细代码 # -*- ecoding: utf-8 -*- # @ModuleName: test002 # @Function: # @Author: darling # @Time: 2022-06-01 13:46 import os import re import sys import t
阅读全文