gpt4 book ai didi

python - 如何导出 flask restplus swagger json?

转载 作者:行者123 更新时间:2023-12-01 01:37:15 34 4
gpt4 key购买 nike

我正在尝试将我的 flask restplus json格式导出到文本文件.txt我检查这个文档 https://flask-restplus.readthedocs.io/en/0.8.0/export.html

No handlers could be found for logger "flask_restplus.api"
{u'error': u'Unable to render schema'}

但是我收到上面的错误,我做错了什么吗?或者我应该设置一些东西吗?

我的代码很简单

from flask import json
from my_appication import api
print api.__schema__

最佳答案

在另一个地方找到了这个,但我认为我也值得在这里拥有它。

import os
import json
from my_appication import api
from my_appication import app

app.config["SERVER_NAME"] = "localhost"
app.app_context().__enter__()
print(json.dumps(api.__schema__, indent=2))

关于python - 如何导出 flask restplus swagger json?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52280712/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com