import click @click.command() @click.argument('filename', type=click.Path(exists=True, readable=True), nargs=1) def main(filename): ... main ...
確定! 回上一頁