强大的 Python 任务自动化工具
invoke 是从著名的远程部署工具 Fabric 中分离出来的,它与 paramiko 一起是 Fabric 的两大最核心的基础组件。
文档:
PyPI: https://www.ctyun.cn/portal/link.html?target=https%3A%2F%2Fpypi.org%2Fproject%2Finvoke%2F
文档:https://www.ctyun.cn/portal/link.html?target=http%3A%2F%2Fdocs.pyinvoke.org%2F
Github: https://www.ctyun.cn/portal/link.html?target=https%3A%2F%2Fgithub.com%2Fpyinvoke%2Finvoke
安装
pip install invoke
代码实例
tasks.py
# -*- coding: utf-8 -*- from invoke import task @task def hello(c): print("Hello world!") @task def greet(c, name): c.run(f"echo hi {name}")
运行
$ inv -l $ inv hello $ inv greet -n Tom
参考
强大的 Python 任务自动化工具!invoke 十分钟入门指南