gpt4 book ai didi

python - 将命令行参数传递给 uwsgi 脚本

转载 作者:IT老高 更新时间:2023-10-28 20:39:37 25 4
gpt4 key购买 nike

我正在尝试将参数传递给示例 wsgi 应用程序,:

config_file = sys.argv[1]

def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return [b"Hello World %s" % config_file]

然后运行:

uwsgi --http :9090 --wsgi-file test_uwsgi.py  -???? config_file # argument for wsgi script

有什么聪明的方法可以实现吗?在 uwsgi 文档中找不到它。也许还有另一种方法可以为 wsgi 应用程序提供一些参数? (环境变量超出范围)

最佳答案

python 参数:

--pyargv "foo bar"

sys.argv
['uwsgi', 'foo', 'bar']

uwsgi 选项:

--set foo=bar

uwsgi.opt['foo']
'bar'

关于python - 将命令行参数传递给 uwsgi 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21685577/

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