16 lines
504 B
Python
16 lines
504 B
Python
# pip install fastapi uvicorn
|
|
|
|
from fastapi import FastAPI
|
|
import uvicorn
|
|
from Routes.BigScreen import router as bigscreen_router
|
|
|
|
# 创建 FastAPI 应用实例
|
|
app = FastAPI(title="云南教育决策研究服务系统", description="云南省教育数据分析和可视化平台")
|
|
|
|
# 包含大屏展示路由
|
|
app.include_router(bigscreen_router)
|
|
|
|
# 主程序入口
|
|
if __name__ == "__main__":
|
|
# 启动 FastAPI 应用,监听 8100 端口
|
|
uvicorn.run(app, host="0.0.0.0", port=8100) |