本文介绍了Python中的Fabric API直接调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我记得可以在py脚本中直接调用Fabric API但忘了从哪里开始有人提供线索吗?
i remember fabric API can be called directly in py scriptbut forgot where to startanybody give a clue?
推荐答案
是的,您可以调用它,例如:
Yes, you can call it, for example:
from fabric.api import run
from fabric.tasks import execute
def do_something():
run("echo $RANDOM")
if __name__ == "__main__":
execute(do_something, hosts=["username@host"])
这篇关于Python中的Fabric API直接调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!