gpt4 book ai didi

python - 用于织物的独立 fabfile?

转载 作者:太空狗 更新时间:2023-10-29 20:34:12 30 4
gpt4 key购买 nike

是否可以使 fabfile 独立?
我不太喜欢运行外部工具“fab”。如果我设法获得独立的 fabfile,我可以从 (Eclipse/Pydev) IDE 中运行该文件,轻松调试它,使用项目配置和路径等。
为什么这不起作用:

from fabric.api import run

def host_type():
run('uname -s')

if __name__ == '__main__':
host_type()

最佳答案

我最终找到了解决方案(而且真的很简单!)。
在我的 fabfile 中,我添加了:

from fabric.main import main

if __name__ == '__main__':
import sys
sys.argv = ['fab', '-f', __file__, 'update_server']
main()

我希望这对人们有帮助...

关于python - 用于织物的独立 fabfile?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3278880/

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