1. python-fire
python-fire 是一个三方库,可以将任何 Python 对象变成一个命令行接口。
使用前先 pip install fire 下。...command, main
@command
def push(repository, all=False, dry_run=False, force=False, thin=False):...:param -n, --dry-run: Dry run.
:param -f, --force: Force updates....All: {1}, dry run: {2}, force: {3}, thin: {4}'
.format(repository, all, dry_run, force, thin...-n, --dry-run Dry run.
-f, --force Force updates.
--thin Use thin pack.