INNER CODE UNIT · Python
main
DeepLabCut/DeepLabCut · deeplabcut/cli.py:23
def main(ctx, verbose):
if ctx.invoked_subcommand is None:
click.echo("deeplabcut v0.0.")
click.echo(main.get_help(ctx))
##########################################################################
@main.command(context_settings=CONTEXT_SETTINGS)
@click.argument("project")
@click.argument("experimenter")
@click.argument("videos", nargs=-1, type=click.Path(exists=True, dir_okay=False))
@click.option(
"-d",
"--wd",
"working_directory",
type=click.Path(exists=True, file_okay=False, resolve_path=True),
default=Path.cwd(),
help="Directory to create project in. Default is cwd().",