import signal
import sys
from contextlib import asynccontextmanagerfrom fastapi import FastAPI
import uvicorn
from fastapi.staticfiles import StaticFilesfrom settings import settings
from routers.xxx import xxx_router
from common.logging import logger@asynccontextmanagerasyncdeflifespan(app: FastAPI):# Code to run on startuplogger.info("Starting up...")# You can initialize resources here (e.g., database connections)yield# Code to run on shutdownlogger.info("Shutting down...")# Clean up resources hereapp = FastAPI(lifespan=lifespan,debug=settings.debug,title="xxx平台",description='xxx',version='1.0.0',docs_url='/docs',redoc_url='/redoc',)app.mount("/static", StaticFiles(directory=settings.static_dir), name="static")app.include_router(xxx_router, prefix="/api/xxx", tags=["xxx"])@app.get("/")defread_root():return{"data":"welcome to xxx center"}defsignal_handler(sig, frame):print(f'Received Ctrl+C! {sig} exiting...')# 在这里执行任何必要的清理工作sys.exit()defrun_http():signal.signal(signal.SIGINT, signal_handler)signal.signal(signal.SIGTERM, signal_handler)uvicorn.run(app="main:app", host=settings.server_ip, port=settings.server_port,log_config="uvicorn_config.json",log_level=settings.log_level, workers=settings.workers)if __name__ =="__main__":run_http()
settings/settings.py
import json
import os
import sys# 获取可执行文件所在的目录路径ifgetattr(sys,'frozen',False):# 如果程序是被打包成了单一文件,这个条件是TrueBASE_DIR = os.path.dirname(sys.executable)else:# 如果程序是直接运行的.py文件,这个条件是TrueBASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))classBaseConfig(object):def__init__(self):self.config_path = self.get_config_path()self.config = self.get_config()@staticmethoddefget_config_path():config_path = os.path.join(BASE_DIR,'config.json')if os.path.exists(config_path):return config_pathprint(f'config file {config_path} not exists')defget_config(self):try:withopen(self.config_path,'r', encoding="utf-8")as f:return json.load(f)except FileNotFoundError:print(f'config file {self.config_path} not exists')except json.decoder.JSONDecodeError:print(f'config file {self.config_path} format error')classProjectConfig(BaseConfig):"""项目中的配置信息"""defget_server(self):"""后台服务配置信息"""try:return self.config["server"]["ip"], self.config["server"]["port"]except Exception as e:print(f'http server section not exists: {e}')defget_debug_mode(self):"""是否开启debug模式"""try:returnTrueif self.config.get("debug_mode")=="true"elseFalseexcept Exception as e:print(f'debug_mode section not exists: {e}')defget_workers(self):"""开启进程数"""try:return self.config["workers"]except Exception as e:print(f'process workers section not exists: {e}')defget_log(self):"""日志配置信息"""try:return self.config["logfile"]["level"], self.config["logfile"]["dir"], self.config["logfile"]["max_age"]except Exception as e:print(f'log file section not exists: {e}')defget_mysql(self):"""mysql数据库配置信息"""try:return self.config["mysql"]["default"]except Exception as e:print(f'mysql section not exists: {e}')defget_identify(self):"""识别服务配置信息"""try:return self.config["identify"]["ip"], self.config["identify"]["port"], self.config["identify"]["api_path"]except Exception as e:print(f'identify server section not exists: {e}')defget_white_list(self):"""请求白名单列表"""try:return self.config["white_list"]except Exception as e:print(f'white list section not exists: {e}')project_config = ProjectConfig()# 后台服务
server_ip, server_port = project_config.get_server()# 是否开启debug
debug = project_config.get_debug_mode()# 启动进程数
workers = project_config.get_workers()# 日志
log_level, log_dir, log_max_age = project_config.get_log()
log_dir = os.path.join(BASE_DIR, log_dir)ifnot os.path.exists(log_dir):os.makedirs(log_dir)# mysql数据库
mysql_url = project_config.get_mysql()# 识别服务
identify_ip, identify_port, identify_api_path = project_config.get_identify()# 访问白名单列表
white_list = project_config.get_white_list()# 访问静态文件系统目录
static_dir = os.path.join(BASE_DIR,'myfiles')ifnot os.path.exists(static_dir):os.makedirs(static_dir)
一、题目
1、题目描述 给你一个二维矩阵 matrix 和一个整数 k ,矩阵大小为 m x n 由非负整数组成。 矩阵中坐标 (a, b) 的 值 可由对所有满足 0 < i < a < m 且 0 < j < b < n 的元素 matrix[i][j](下标从 0 开始计数)执行…
command not found: wire command not found: wire command not found: wire go get github.com/google/wire/cmd/wirego install github.com/google/wire/cmd/wirelatest再次在 /bubble/cmd/bubble目录下执行wire
wire
wire: bubble/cmd/bubble: wrote /Users/zhengshijie/go…