2 Star 4 Fork 3

felixchina/moneyprinterturbo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 389 Bytes
一键复制 编辑 原始数据 按行查看 历史
yyhhyyyyyy 提交于 2024-07-24 14:25 +08:00 . feat: support custom subtitle positioning
import uvicorn
from loguru import logger
from app.config import config
if __name__ == "__main__":
logger.info(
"start server, docs: http://127.0.0.1:" + str(config.listen_port) + "/docs"
)
uvicorn.run(
app="app.asgi:app",
host=config.listen_host,
port=config.listen_port,
reload=config.reload_debug,
log_level="warning",
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/felixchina2024/moneyprinterturbo.git
git@gitee.com:felixchina2024/moneyprinterturbo.git
felixchina2024
moneyprinterturbo
moneyprinterturbo
main

搜索帮助