2020-06-29 17:54:47 +03:00
|
|
|
|
from typing import List, Dict, Any, Optional, Sequence
|
2020-06-21 14:44:00 +03:00
|
|
|
|
import typer
|
|
|
|
|
import srsly
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
from wasabi import msg
|
2020-06-22 01:30:05 +03:00
|
|
|
|
import subprocess
|
2020-06-22 01:15:06 +03:00
|
|
|
|
import os
|
|
|
|
|
import re
|
2020-06-22 15:53:31 +03:00
|
|
|
|
import shutil
|
2020-06-25 13:26:53 +03:00
|
|
|
|
import sys
|
2020-06-28 17:25:53 +03:00
|
|
|
|
import requests
|
|
|
|
|
import tqdm
|
2020-06-21 14:44:00 +03:00
|
|
|
|
|
2020-06-27 14:02:10 +03:00
|
|
|
|
from ._app import app, Arg, Opt, COMMAND, NAME
|
2020-06-21 14:44:00 +03:00
|
|
|
|
from .. import about
|
|
|
|
|
from ..schemas import ProjectConfigSchema, validate
|
2020-06-22 15:53:31 +03:00
|
|
|
|
from ..util import ensure_path, run_command, make_tempdir, working_dir
|
2020-06-30 21:35:51 +03:00
|
|
|
|
from ..util import get_hash, get_checksum, split_command
|
2020-06-21 22:35:01 +03:00
|
|
|
|
|
2020-06-21 14:44:00 +03:00
|
|
|
|
|
|
|
|
|
CONFIG_FILE = "project.yml"
|
2020-06-27 14:02:10 +03:00
|
|
|
|
DVC_CONFIG = "dvc.yaml"
|
2020-06-29 21:07:21 +03:00
|
|
|
|
DVC_DIR = ".dvc"
|
2020-06-22 15:53:31 +03:00
|
|
|
|
DIRS = [
|
|
|
|
|
"assets",
|
|
|
|
|
"metas",
|
|
|
|
|
"configs",
|
|
|
|
|
"packages",
|
|
|
|
|
"metrics",
|
|
|
|
|
"scripts",
|
|
|
|
|
"notebooks",
|
|
|
|
|
"training",
|
|
|
|
|
"corpus",
|
|
|
|
|
]
|
2020-06-22 01:15:06 +03:00
|
|
|
|
CACHES = [
|
|
|
|
|
Path.home() / ".torch",
|
|
|
|
|
Path.home() / ".caches" / "torch",
|
|
|
|
|
os.environ.get("TORCH_HOME"),
|
|
|
|
|
Path.home() / ".keras",
|
|
|
|
|
]
|
2020-06-27 14:02:10 +03:00
|
|
|
|
DVC_CONFIG_COMMENT = """# This file is auto-generated by spaCy based on your project.yml. Do not edit
|
|
|
|
|
# it directly and edit the project.yml instead and re-run the project."""
|
2020-06-28 16:45:19 +03:00
|
|
|
|
CLI_HELP = f"""Command-line interface for spaCy projects and working with project
|
|
|
|
|
templates. You'd typically start by cloning a project template to a local
|
|
|
|
|
directory and fetching its assets like datasets etc. See the project's
|
|
|
|
|
{CONFIG_FILE} for the available commands. Under the hood, spaCy uses DVC (Data
|
|
|
|
|
Version Control) to manage input and output files and to ensure steps are only
|
|
|
|
|
re-run if their inputs change.
|
|
|
|
|
"""
|
2020-06-27 14:02:10 +03:00
|
|
|
|
|
2020-06-29 21:11:34 +03:00
|
|
|
|
project_cli = typer.Typer(help=CLI_HELP, no_args_is_help=True)
|
2020-06-21 14:44:00 +03:00
|
|
|
|
|
|
|
|
|
|
2020-06-22 01:15:06 +03:00
|
|
|
|
@project_cli.callback(invoke_without_command=True)
|
2020-06-27 14:02:10 +03:00
|
|
|
|
def callback(ctx: typer.Context):
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""This runs before every project command and ensures DVC is installed."""
|
|
|
|
|
ensure_dvc()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
################
|
|
|
|
|
# CLI COMMANDS #
|
|
|
|
|
################
|
2020-06-22 01:15:06 +03:00
|
|
|
|
|
|
|
|
|
|
2020-06-21 14:44:00 +03:00
|
|
|
|
@project_cli.command("clone")
|
2020-06-21 22:35:01 +03:00
|
|
|
|
def project_clone_cli(
|
2020-06-21 14:44:00 +03:00
|
|
|
|
# fmt: off
|
|
|
|
|
name: str = Arg(..., help="The name of the template to fetch"),
|
2020-06-22 15:53:31 +03:00
|
|
|
|
dest: Path = Arg(Path.cwd(), help="Where to download and work. Defaults to current working directory.", exists=False),
|
2020-06-21 14:44:00 +03:00
|
|
|
|
repo: str = Opt(about.__projects__, "--repo", "-r", help="The repository to look in."),
|
2020-06-27 14:02:10 +03:00
|
|
|
|
git: bool = Opt(False, "--git", "-G", help="Initialize project as a Git repo"),
|
2020-06-27 15:15:41 +03:00
|
|
|
|
no_init: bool = Opt(False, "--no-init", "-NI", help="Don't initialize the project with DVC"),
|
2020-06-21 14:44:00 +03:00
|
|
|
|
# fmt: on
|
|
|
|
|
):
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Clone a project template from a repository. Calls into "git" and will
|
|
|
|
|
only download the files from the given subdirectory. The GitHub repo
|
|
|
|
|
defaults to the official spaCy template repo, but can be customized
|
|
|
|
|
(including using a private repo). Setting the --git flag will also
|
|
|
|
|
initialize the project directory as a Git repo. If the project is intended
|
|
|
|
|
to be a Git repo, it should be initialized with Git first, before
|
|
|
|
|
initializing DVC (Data Version Control). This allows DVC to integrate with
|
|
|
|
|
Git.
|
|
|
|
|
"""
|
2020-06-29 18:46:08 +03:00
|
|
|
|
if dest == Path.cwd():
|
|
|
|
|
dest = dest / name
|
2020-06-28 16:08:35 +03:00
|
|
|
|
project_clone(name, dest, repo=repo, git=git, no_init=no_init)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@project_cli.command("init")
|
|
|
|
|
def project_init_cli(
|
2020-06-30 21:36:30 +03:00
|
|
|
|
# fmt: off
|
2020-06-30 16:39:24 +03:00
|
|
|
|
path: Path = Arg(Path.cwd(), help="Path to cloned project. Defaults to current working directory.", exists=True, file_okay=False),
|
2020-06-28 16:08:35 +03:00
|
|
|
|
git: bool = Opt(False, "--git", "-G", help="Initialize project as a Git repo"),
|
2020-06-29 21:07:21 +03:00
|
|
|
|
force: bool = Opt(False, "--force", "-F", help="Force initiziation"),
|
2020-06-30 21:36:30 +03:00
|
|
|
|
# fmt: on
|
2020-06-28 16:08:35 +03:00
|
|
|
|
):
|
|
|
|
|
"""Initialize a project directory with DVC and optionally Git. This should
|
|
|
|
|
typically be taken care of automatically when you run the "project clone"
|
|
|
|
|
command, but you can also run it separately. If the project is intended to
|
|
|
|
|
be a Git repo, it should be initialized with Git first, before initializing
|
|
|
|
|
DVC. This allows DVC to integrate with Git.
|
|
|
|
|
"""
|
2020-06-29 21:07:21 +03:00
|
|
|
|
project_init(path, git=git, force=force, silent=True)
|
2020-06-28 16:08:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@project_cli.command("assets")
|
|
|
|
|
def project_assets_cli(
|
|
|
|
|
# fmt: off
|
2020-06-30 16:39:24 +03:00
|
|
|
|
project_dir: Path = Arg(Path.cwd(), help="Path to cloned project. Defaults to current working directory.", exists=True, file_okay=False),
|
2020-06-28 16:08:35 +03:00
|
|
|
|
# fmt: on
|
|
|
|
|
):
|
2020-06-28 16:45:19 +03:00
|
|
|
|
"""Use DVC (Data Version Control) to fetch project assets. Assets are
|
2020-06-28 16:08:35 +03:00
|
|
|
|
defined in the "assets" section of the project config. If possible, DVC
|
|
|
|
|
will try to track the files so you can pull changes from upstream. It will
|
2020-06-29 17:32:25 +03:00
|
|
|
|
also try and store the checksum so the assets are versioned. If the file
|
2020-06-28 17:25:53 +03:00
|
|
|
|
can't be tracked or checked, it will be downloaded without DVC. If a checksum
|
2020-06-28 16:08:35 +03:00
|
|
|
|
is provided in the project config, the file is only downloaded if no local
|
|
|
|
|
file with the same checksum exists.
|
|
|
|
|
"""
|
|
|
|
|
project_assets(project_dir)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@project_cli.command(
|
|
|
|
|
"run-all",
|
|
|
|
|
context_settings={"allow_extra_args": True, "ignore_unknown_options": True},
|
|
|
|
|
)
|
|
|
|
|
def project_run_all_cli(
|
|
|
|
|
# fmt: off
|
|
|
|
|
ctx: typer.Context,
|
2020-06-30 16:39:24 +03:00
|
|
|
|
project_dir: Path = Arg(Path.cwd(), help="Location of project directory. Defaults to current working directory.", exists=True, file_okay=False),
|
2020-06-28 16:08:35 +03:00
|
|
|
|
show_help: bool = Opt(False, "--help", help="Show help message and available subcommands")
|
|
|
|
|
# fmt: on
|
|
|
|
|
):
|
|
|
|
|
"""Run all commands defined in the project. This command will use DVC and
|
|
|
|
|
the defined outputs and dependencies in the project config to determine
|
|
|
|
|
which steps need to be re-run and where to start. This means you're only
|
|
|
|
|
re-generating data if the inputs have changed.
|
|
|
|
|
|
|
|
|
|
This command calls into "dvc repro" and all additional arguments are passed
|
|
|
|
|
to the "dvc repro" command: https://dvc.org/doc/command-reference/repro
|
|
|
|
|
"""
|
|
|
|
|
if show_help:
|
|
|
|
|
print_run_help(project_dir)
|
|
|
|
|
else:
|
|
|
|
|
project_run_all(project_dir, *ctx.args)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@project_cli.command(
|
|
|
|
|
"run", context_settings={"allow_extra_args": True, "ignore_unknown_options": True},
|
|
|
|
|
)
|
|
|
|
|
def project_run_cli(
|
|
|
|
|
# fmt: off
|
|
|
|
|
ctx: typer.Context,
|
|
|
|
|
subcommand: str = Arg(None, help="Name of command defined in project config"),
|
2020-06-30 17:04:53 +03:00
|
|
|
|
project_dir: Path = Arg(Path.cwd(), help="Location of project directory. Defaults to current working directory.", exists=True, file_okay=False),
|
2020-06-28 16:08:35 +03:00
|
|
|
|
show_help: bool = Opt(False, "--help", help="Show help message and available subcommands")
|
|
|
|
|
# fmt: on
|
|
|
|
|
):
|
|
|
|
|
"""Run a named script defined in the project config. If the command is
|
|
|
|
|
part of the default pipeline defined in the "run" section, DVC is used to
|
|
|
|
|
determine whether the step should re-run if its inputs have changed, or
|
|
|
|
|
whether everything is up to date. If the script is not part of the default
|
|
|
|
|
pipeline, it will be called separately without DVC.
|
|
|
|
|
|
|
|
|
|
If DVC is used, the command calls into "dvc repro" and all additional
|
|
|
|
|
arguments are passed to the "dvc repro" command:
|
|
|
|
|
https://dvc.org/doc/command-reference/repro
|
|
|
|
|
"""
|
|
|
|
|
if show_help or not subcommand:
|
|
|
|
|
print_run_help(project_dir, subcommand)
|
|
|
|
|
else:
|
|
|
|
|
project_run(project_dir, subcommand, *ctx.args)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@project_cli.command("exec", hidden=True)
|
|
|
|
|
def project_exec_cli(
|
|
|
|
|
# fmt: off
|
|
|
|
|
subcommand: str = Arg(..., help="Name of command defined in project config"),
|
2020-06-30 17:04:53 +03:00
|
|
|
|
project_dir: Path = Arg(Path.cwd(), help="Location of project directory. Defaults to current working directory.", exists=True, file_okay=False),
|
2020-06-28 16:08:35 +03:00
|
|
|
|
# fmt: on
|
|
|
|
|
):
|
|
|
|
|
"""Execute a command defined in the project config. This CLI command is
|
|
|
|
|
only called internally in auto-generated DVC pipelines, as a shortcut for
|
|
|
|
|
multi-step commands in the project config. You typically shouldn't have to
|
|
|
|
|
call it yourself. To run a command, call "run" or "run-all".
|
|
|
|
|
"""
|
|
|
|
|
project_exec(project_dir, subcommand)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@project_cli.command("update-dvc")
|
|
|
|
|
def project_update_dvc_cli(
|
|
|
|
|
# fmt: off
|
2020-06-30 16:39:24 +03:00
|
|
|
|
project_dir: Path = Arg(Path.cwd(), help="Location of project directory. Defaults to current working directory.", exists=True, file_okay=False),
|
2020-06-28 16:08:35 +03:00
|
|
|
|
verbose: bool = Opt(False, "--verbose", "-V", help="Print more info"),
|
|
|
|
|
force: bool = Opt(False, "--force", "-F", help="Force update DVC config"),
|
|
|
|
|
# fmt: on
|
|
|
|
|
):
|
|
|
|
|
"""Update the auto-generated DVC config file. Uses the steps defined in the
|
|
|
|
|
"run" section of the project config. This typically happens automatically
|
|
|
|
|
when running a command, but can also be triggered manually if needed.
|
|
|
|
|
"""
|
|
|
|
|
config = load_project_config(project_dir)
|
|
|
|
|
updated = update_dvc_config(project_dir, config, verbose=verbose, force=force)
|
|
|
|
|
if updated:
|
|
|
|
|
msg.good(f"Updated DVC config from {CONFIG_FILE}")
|
|
|
|
|
else:
|
|
|
|
|
msg.info(f"No changes found in {CONFIG_FILE}, no update needed")
|
|
|
|
|
|
|
|
|
|
|
2020-06-30 12:23:35 +03:00
|
|
|
|
app.add_typer(project_cli, name="project")
|
2020-06-28 16:08:35 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#################
|
|
|
|
|
# CLI FUNCTIONS #
|
|
|
|
|
#################
|
2020-06-22 01:15:06 +03:00
|
|
|
|
|
|
|
|
|
|
2020-06-22 15:53:31 +03:00
|
|
|
|
def project_clone(
|
2020-06-27 14:02:10 +03:00
|
|
|
|
name: str,
|
|
|
|
|
dest: Path,
|
|
|
|
|
*,
|
|
|
|
|
repo: str = about.__projects__,
|
|
|
|
|
git: bool = False,
|
2020-06-27 15:15:41 +03:00
|
|
|
|
no_init: bool = False,
|
2020-06-22 15:53:31 +03:00
|
|
|
|
) -> None:
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Clone a project template from a repository.
|
|
|
|
|
|
|
|
|
|
name (str): Name of subdirectory to clone.
|
|
|
|
|
dest (Path): Destination path of cloned project.
|
|
|
|
|
repo (str): URL of Git repo containing project templates.
|
|
|
|
|
git (bool): Initialize project as Git repo. Should be set to True if project
|
|
|
|
|
is intended as a repo, since it will allow DVC to integrate with Git.
|
|
|
|
|
no_init (bool): Don't initialize DVC and Git automatically. If True, the
|
|
|
|
|
"init" command or "git init" and "dvc init" need to be run manually.
|
|
|
|
|
"""
|
2020-06-22 01:15:06 +03:00
|
|
|
|
dest = ensure_path(dest)
|
2020-06-28 16:08:35 +03:00
|
|
|
|
check_clone(name, dest, repo)
|
|
|
|
|
project_dir = dest.resolve()
|
|
|
|
|
# We're using Git and sparse checkout to only clone the files we need
|
2020-06-22 15:53:31 +03:00
|
|
|
|
with make_tempdir() as tmp_dir:
|
2020-06-28 16:08:35 +03:00
|
|
|
|
cmd = f"git clone {repo} {tmp_dir} --no-checkout --depth 1 --config core.sparseCheckout=true"
|
2020-06-29 18:45:47 +03:00
|
|
|
|
try:
|
2020-06-30 14:17:26 +03:00
|
|
|
|
run_command(cmd)
|
|
|
|
|
except SystemExit:
|
2020-06-30 22:53:40 +03:00
|
|
|
|
err = f"Could not clone the repo '{repo}' into the temp dir '{tmp_dir}'."
|
2020-06-30 14:17:26 +03:00
|
|
|
|
msg.fail(err)
|
2020-06-28 16:08:35 +03:00
|
|
|
|
with (tmp_dir / ".git" / "info" / "sparse-checkout").open("w") as f:
|
|
|
|
|
f.write(name)
|
2020-06-30 22:53:40 +03:00
|
|
|
|
try:
|
|
|
|
|
run_command(["git", "-C", str(tmp_dir), "fetch"])
|
|
|
|
|
run_command(["git", "-C", str(tmp_dir), "checkout"])
|
|
|
|
|
except SystemExit:
|
2020-06-30 22:56:17 +03:00
|
|
|
|
err = f"Could not clone '{name}' in the repo '{repo}'."
|
2020-06-30 22:53:40 +03:00
|
|
|
|
msg.fail(err)
|
2020-06-28 16:08:35 +03:00
|
|
|
|
shutil.move(str(tmp_dir / Path(name).name), str(project_dir))
|
2020-06-29 19:37:42 +03:00
|
|
|
|
msg.good(f"Cloned project '{name}' from {repo} into {project_dir}")
|
2020-06-22 15:53:31 +03:00
|
|
|
|
for sub_dir in DIRS:
|
2020-06-28 16:08:35 +03:00
|
|
|
|
dir_path = project_dir / sub_dir
|
2020-06-22 15:53:31 +03:00
|
|
|
|
if not dir_path.exists():
|
|
|
|
|
dir_path.mkdir(parents=True)
|
2020-06-27 15:15:41 +03:00
|
|
|
|
if not no_init:
|
2020-06-29 21:07:21 +03:00
|
|
|
|
project_init(project_dir, git=git, force=True, silent=True)
|
2020-06-27 16:03:21 +03:00
|
|
|
|
msg.good(f"Your project is now ready!", dest)
|
2020-06-28 16:08:35 +03:00
|
|
|
|
print(f"To fetch the assets, run:\n{COMMAND} project assets {dest}")
|
2020-06-27 15:15:41 +03:00
|
|
|
|
|
|
|
|
|
|
2020-06-27 15:40:28 +03:00
|
|
|
|
def project_init(
|
2020-06-28 16:08:35 +03:00
|
|
|
|
project_dir: Path,
|
|
|
|
|
*,
|
|
|
|
|
git: bool = False,
|
2020-06-29 21:07:21 +03:00
|
|
|
|
force: bool = False,
|
2020-06-28 16:08:35 +03:00
|
|
|
|
silent: bool = False,
|
|
|
|
|
analytics: bool = False,
|
2020-06-27 15:40:28 +03:00
|
|
|
|
):
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Initialize a project as a DVC and (optionally) as a Git repo.
|
|
|
|
|
|
|
|
|
|
project_dir (Path): Path to project directory.
|
|
|
|
|
git (bool): Also call "git init" to initialize directory as a Git repo.
|
|
|
|
|
silent (bool): Don't print any output (via DVC).
|
|
|
|
|
analytics (bool): Opt-in to DVC analytics (defaults to False).
|
|
|
|
|
"""
|
2020-06-30 14:29:45 +03:00
|
|
|
|
with working_dir(project_dir) as cwd:
|
2020-06-29 21:07:21 +03:00
|
|
|
|
if git:
|
|
|
|
|
run_command(["git", "init"])
|
2020-06-27 14:02:10 +03:00
|
|
|
|
init_cmd = ["dvc", "init"]
|
2020-06-27 15:40:28 +03:00
|
|
|
|
if silent:
|
|
|
|
|
init_cmd.append("--quiet")
|
2020-06-27 14:02:10 +03:00
|
|
|
|
if not git:
|
|
|
|
|
init_cmd.append("--no-scm")
|
2020-06-29 21:07:21 +03:00
|
|
|
|
if force:
|
|
|
|
|
init_cmd.append("--force")
|
2020-06-27 14:02:10 +03:00
|
|
|
|
run_command(init_cmd)
|
2020-06-28 16:08:35 +03:00
|
|
|
|
# We don't want to have analytics on by default – our users should
|
|
|
|
|
# opt-in explicitly. If they want it, they can always enable it.
|
2020-06-27 15:40:28 +03:00
|
|
|
|
if not analytics:
|
|
|
|
|
run_command(["dvc", "config", "core.analytics", "false"])
|
2020-06-29 21:07:21 +03:00
|
|
|
|
# Remove unused and confusing plot templates from .dvc directory
|
|
|
|
|
# TODO: maybe we shouldn't do this, but it's otherwise super confusing
|
|
|
|
|
# once you commit your changes via Git and it creates a bunch of files
|
|
|
|
|
# that have no purpose
|
2020-06-30 14:17:26 +03:00
|
|
|
|
plots_dir = cwd / DVC_DIR / "plots"
|
2020-06-29 21:07:21 +03:00
|
|
|
|
if plots_dir.exists():
|
|
|
|
|
shutil.rmtree(str(plots_dir))
|
2020-06-30 14:17:26 +03:00
|
|
|
|
config = load_project_config(cwd)
|
|
|
|
|
setup_check_dvc(cwd, config)
|
2020-06-22 01:15:06 +03:00
|
|
|
|
|
|
|
|
|
|
2020-06-28 16:08:35 +03:00
|
|
|
|
def project_assets(project_dir: Path) -> None:
|
|
|
|
|
"""Fetch assets for a project using DVC if possible.
|
2020-06-22 01:15:06 +03:00
|
|
|
|
|
2020-06-28 16:08:35 +03:00
|
|
|
|
project_dir (Path): Path to project directory.
|
|
|
|
|
"""
|
|
|
|
|
project_path = ensure_path(project_dir)
|
2020-06-22 01:15:06 +03:00
|
|
|
|
config = load_project_config(project_path)
|
2020-06-28 13:24:59 +03:00
|
|
|
|
setup_check_dvc(project_path, config)
|
2020-06-22 01:15:06 +03:00
|
|
|
|
assets = config.get("assets", {})
|
|
|
|
|
if not assets:
|
|
|
|
|
msg.warn(f"No assets specified in {CONFIG_FILE}", exits=0)
|
2020-06-27 14:02:10 +03:00
|
|
|
|
msg.info(f"Fetching {len(assets)} asset(s)")
|
2020-06-22 01:15:06 +03:00
|
|
|
|
variables = config.get("variables", {})
|
2020-06-29 17:55:24 +03:00
|
|
|
|
fetched_assets = []
|
2020-06-22 01:15:06 +03:00
|
|
|
|
for asset in assets:
|
|
|
|
|
url = asset["url"].format(**variables)
|
|
|
|
|
dest = asset["dest"].format(**variables)
|
2020-06-29 17:55:24 +03:00
|
|
|
|
fetched_path = fetch_asset(project_path, url, dest, asset.get("checksum"))
|
|
|
|
|
if fetched_path:
|
|
|
|
|
fetched_assets.append(str(fetched_path))
|
|
|
|
|
if fetched_assets:
|
|
|
|
|
with working_dir(project_path):
|
|
|
|
|
run_command(["dvc", "add", *fetched_assets, "--external"])
|
2020-06-27 15:15:41 +03:00
|
|
|
|
|
|
|
|
|
|
2020-06-27 22:13:06 +03:00
|
|
|
|
def fetch_asset(
|
|
|
|
|
project_path: Path, url: str, dest: Path, checksum: Optional[str] = None
|
2020-06-29 17:55:24 +03:00
|
|
|
|
) -> Optional[Path]:
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Fetch an asset from a given URL or path. Will try to import the file
|
|
|
|
|
using DVC's import-url if possible (fully tracked and versioned) and falls
|
|
|
|
|
back to get-url (versioned) and a non-DVC download if necessary. If a
|
|
|
|
|
checksum is provided and a local file exists, it's only re-downloaded if the
|
|
|
|
|
checksum doesn't match.
|
|
|
|
|
|
|
|
|
|
project_path (Path): Path to project directory.
|
|
|
|
|
url (str): URL or path to asset.
|
|
|
|
|
checksum (Optional[str]): Optional expected checksum of local file.
|
2020-06-29 17:55:24 +03:00
|
|
|
|
RETURNS (Optional[Path]): The path to the fetched asset or None if fetching
|
|
|
|
|
the asset failed.
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""
|
|
|
|
|
url = convert_asset_url(url)
|
2020-06-28 13:40:11 +03:00
|
|
|
|
dest_path = (project_path / dest).resolve()
|
2020-06-27 15:15:41 +03:00
|
|
|
|
if dest_path.exists() and checksum:
|
|
|
|
|
# If there's already a file, check for checksum
|
2020-06-28 14:07:31 +03:00
|
|
|
|
# TODO: add support for caches (dvc import-url with local path)
|
2020-06-27 15:15:41 +03:00
|
|
|
|
if checksum == get_checksum(dest_path):
|
|
|
|
|
msg.good(f"Skipping download with matching checksum: {dest}")
|
2020-06-29 17:55:24 +03:00
|
|
|
|
return dest_path
|
2020-06-27 15:15:41 +03:00
|
|
|
|
with working_dir(project_path):
|
|
|
|
|
try:
|
2020-06-28 14:07:31 +03:00
|
|
|
|
# If these fail, we don't want to output an error or info message.
|
|
|
|
|
# Try with tracking the source first, then just downloading with
|
|
|
|
|
# DVC, then a regular non-DVC download.
|
2020-06-28 16:08:35 +03:00
|
|
|
|
try:
|
|
|
|
|
dvc_cmd = ["dvc", "import-url", url, str(dest_path)]
|
|
|
|
|
print(subprocess.check_output(dvc_cmd, stderr=subprocess.DEVNULL))
|
|
|
|
|
except subprocess.CalledProcessError:
|
|
|
|
|
dvc_cmd = ["dvc", "get-url", url, str(dest_path)]
|
|
|
|
|
print(subprocess.check_output(dvc_cmd, stderr=subprocess.DEVNULL))
|
2020-06-27 15:15:41 +03:00
|
|
|
|
except subprocess.CalledProcessError:
|
2020-06-28 17:25:53 +03:00
|
|
|
|
try:
|
|
|
|
|
download_file(url, dest_path)
|
|
|
|
|
except requests.exceptions.HTTPError as e:
|
|
|
|
|
msg.fail(f"Download failed: {dest}", e)
|
2020-06-29 17:55:24 +03:00
|
|
|
|
return None
|
2020-06-28 14:07:31 +03:00
|
|
|
|
if checksum and checksum != get_checksum(dest_path):
|
|
|
|
|
msg.warn(f"Checksum doesn't match value defined in {CONFIG_FILE}: {dest}")
|
2020-06-27 15:15:41 +03:00
|
|
|
|
msg.good(f"Fetched asset {dest}")
|
2020-06-29 17:55:24 +03:00
|
|
|
|
return dest_path
|
2020-06-27 14:02:10 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def project_run_all(project_dir: Path, *dvc_args) -> None:
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Run all commands defined in the project using DVC.
|
|
|
|
|
|
|
|
|
|
project_dir (Path): Path to project directory.
|
|
|
|
|
*dvc_args: Other arguments passed to "dvc repro".
|
|
|
|
|
"""
|
2020-06-27 14:02:10 +03:00
|
|
|
|
config = load_project_config(project_dir)
|
2020-06-28 13:24:59 +03:00
|
|
|
|
setup_check_dvc(project_dir, config)
|
2020-06-27 14:02:10 +03:00
|
|
|
|
dvc_cmd = ["dvc", "repro", *dvc_args]
|
2020-06-27 15:15:41 +03:00
|
|
|
|
with working_dir(project_dir):
|
|
|
|
|
run_command(dvc_cmd)
|
2020-06-27 14:02:10 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def print_run_help(project_dir: Path, subcommand: Optional[str] = None) -> None:
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Simulate a CLI help prompt using the info available in the project config.
|
|
|
|
|
|
|
|
|
|
project_dir (Path): The project directory.
|
|
|
|
|
subcommand (Optional[str]): The subcommand or None. If a subcommand is
|
|
|
|
|
provided, the subcommand help is shown. Otherwise, the top-level help
|
|
|
|
|
and a list of available commands is printed.
|
|
|
|
|
"""
|
2020-06-22 15:53:31 +03:00
|
|
|
|
config = load_project_config(project_dir)
|
2020-06-28 16:08:35 +03:00
|
|
|
|
setup_check_dvc(project_dir, config)
|
2020-06-22 15:53:31 +03:00
|
|
|
|
config_commands = config.get("commands", [])
|
|
|
|
|
commands = {cmd["name"]: cmd for cmd in config_commands}
|
|
|
|
|
if subcommand:
|
2020-06-29 17:54:47 +03:00
|
|
|
|
validate_subcommand(commands.keys(), subcommand)
|
2020-06-30 18:28:09 +03:00
|
|
|
|
print(f"Usage: {COMMAND} project run {subcommand} {project_dir}")
|
2020-06-22 15:53:31 +03:00
|
|
|
|
help_text = commands[subcommand].get("help")
|
|
|
|
|
if help_text:
|
|
|
|
|
msg.text(f"\n{help_text}\n")
|
|
|
|
|
else:
|
|
|
|
|
print(f"\nAvailable commands in {CONFIG_FILE}")
|
2020-06-30 18:28:09 +03:00
|
|
|
|
print(f"Usage: {COMMAND} project run [COMMAND] {project_dir}")
|
2020-06-22 15:53:31 +03:00
|
|
|
|
msg.table([(cmd["name"], cmd.get("help", "")) for cmd in config_commands])
|
2020-06-28 16:08:35 +03:00
|
|
|
|
msg.text("Run all commands defined in the 'run' block of the project config:")
|
|
|
|
|
print(f"{COMMAND} project run-all {project_dir}")
|
2020-06-21 22:35:01 +03:00
|
|
|
|
|
|
|
|
|
|
2020-06-27 14:02:10 +03:00
|
|
|
|
def project_run(project_dir: Path, subcommand: str, *dvc_args) -> None:
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Run a named script defined in the project config. If the script is part
|
|
|
|
|
of the default pipeline (defined in the "run" section), DVC is used to
|
|
|
|
|
execute the command, so it can determine whether to rerun it. It then
|
|
|
|
|
calls into "exec" to execute it.
|
|
|
|
|
|
|
|
|
|
project_dir (Path): Path to project directory.
|
|
|
|
|
subcommand (str): Name of command to run.
|
|
|
|
|
*dvc_args: Other arguments passed to "dvc repro".
|
|
|
|
|
"""
|
2020-06-21 14:44:00 +03:00
|
|
|
|
config = load_project_config(project_dir)
|
2020-06-28 13:24:59 +03:00
|
|
|
|
setup_check_dvc(project_dir, config)
|
2020-06-21 14:44:00 +03:00
|
|
|
|
config_commands = config.get("commands", [])
|
|
|
|
|
variables = config.get("variables", {})
|
|
|
|
|
commands = {cmd["name"]: cmd for cmd in config_commands}
|
2020-06-29 17:54:47 +03:00
|
|
|
|
validate_subcommand(commands.keys(), subcommand)
|
2020-06-27 14:02:10 +03:00
|
|
|
|
if subcommand in config.get("run", []):
|
|
|
|
|
# This is one of the pipeline commands tracked in DVC
|
|
|
|
|
dvc_cmd = ["dvc", "repro", subcommand, *dvc_args]
|
2020-06-28 16:33:53 +03:00
|
|
|
|
with working_dir(project_dir):
|
|
|
|
|
run_command(dvc_cmd)
|
2020-06-27 14:02:10 +03:00
|
|
|
|
else:
|
2020-06-27 21:57:26 +03:00
|
|
|
|
cmd = commands[subcommand]
|
|
|
|
|
# Deps in non-DVC commands aren't tracked, but if they're defined,
|
|
|
|
|
# make sure they exist before running the command
|
|
|
|
|
for dep in cmd.get("deps", []):
|
|
|
|
|
if not (project_dir / dep).exists():
|
|
|
|
|
err = f"Missing dependency specified by command '{subcommand}': {dep}"
|
|
|
|
|
msg.fail(err, exits=1)
|
2020-06-27 14:02:10 +03:00
|
|
|
|
with working_dir(project_dir):
|
2020-06-27 21:57:26 +03:00
|
|
|
|
run_commands(cmd["script"], variables)
|
2020-06-21 14:44:00 +03:00
|
|
|
|
|
|
|
|
|
|
2020-06-27 14:02:10 +03:00
|
|
|
|
def project_exec(project_dir: Path, subcommand: str):
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Execute a command defined in the project config.
|
|
|
|
|
|
|
|
|
|
project_dir (Path): Path to project directory.
|
|
|
|
|
subcommand (str): Name of command to run.
|
|
|
|
|
"""
|
2020-06-27 14:02:10 +03:00
|
|
|
|
config = load_project_config(project_dir)
|
|
|
|
|
config_commands = config.get("commands", [])
|
|
|
|
|
variables = config.get("variables", {})
|
|
|
|
|
commands = {cmd["name"]: cmd for cmd in config_commands}
|
|
|
|
|
with working_dir(project_dir):
|
|
|
|
|
run_commands(commands[subcommand]["script"], variables)
|
|
|
|
|
|
|
|
|
|
|
2020-06-28 16:08:35 +03:00
|
|
|
|
###########
|
|
|
|
|
# HELPERS #
|
|
|
|
|
###########
|
2020-06-21 22:35:01 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def load_project_config(path: Path) -> Dict[str, Any]:
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Load the project config file from a directory and validate it.
|
|
|
|
|
|
|
|
|
|
path (Path): The path to the project directory.
|
|
|
|
|
RETURNS (Dict[str, Any]): The loaded project config.
|
|
|
|
|
"""
|
2020-06-21 22:35:01 +03:00
|
|
|
|
config_path = path / CONFIG_FILE
|
|
|
|
|
if not config_path.exists():
|
|
|
|
|
msg.fail("Can't find project config", config_path, exits=1)
|
2020-06-29 17:54:47 +03:00
|
|
|
|
invalid_err = f"Invalid project config in {CONFIG_FILE}"
|
|
|
|
|
try:
|
|
|
|
|
config = srsly.read_yaml(config_path)
|
|
|
|
|
except ValueError as e:
|
|
|
|
|
msg.fail(invalid_err, e, exits=1)
|
2020-06-21 22:35:01 +03:00
|
|
|
|
errors = validate(ProjectConfigSchema, config)
|
|
|
|
|
if errors:
|
2020-06-29 17:54:47 +03:00
|
|
|
|
msg.fail(invalid_err, "\n".join(errors), exits=1)
|
2020-06-21 22:35:01 +03:00
|
|
|
|
return config
|
|
|
|
|
|
|
|
|
|
|
2020-06-27 14:02:10 +03:00
|
|
|
|
def update_dvc_config(
|
|
|
|
|
path: Path,
|
|
|
|
|
config: Dict[str, Any],
|
|
|
|
|
verbose: bool = False,
|
|
|
|
|
silent: bool = False,
|
|
|
|
|
force: bool = False,
|
|
|
|
|
) -> bool:
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Re-run the DVC commands in dry mode and update dvc.yaml file in the
|
|
|
|
|
project directory. The file is auto-generated based on the config. The
|
|
|
|
|
first line of the auto-generated file specifies the hash of the config
|
|
|
|
|
dict, so if any of the config values change, the DVC config is regenerated.
|
|
|
|
|
|
|
|
|
|
path (Path): The path to the project directory.
|
|
|
|
|
config (Dict[str, Any]): The loaded project config.
|
|
|
|
|
verbose (bool): Whether to print additional info (via DVC).
|
|
|
|
|
silent (bool): Don't output anything (via DVC).
|
|
|
|
|
force (bool): Force update, even if hashes match.
|
|
|
|
|
RETURNS (bool): Whether the DVC config file was updated.
|
2020-06-27 14:02:10 +03:00
|
|
|
|
"""
|
|
|
|
|
config_hash = get_hash(config)
|
2020-06-28 14:17:19 +03:00
|
|
|
|
path = path.resolve()
|
2020-06-27 14:02:10 +03:00
|
|
|
|
dvc_config_path = path / DVC_CONFIG
|
|
|
|
|
if dvc_config_path.exists():
|
2020-06-29 19:37:42 +03:00
|
|
|
|
# Check if the file was generated using the current config, if not, redo
|
2020-06-27 14:02:10 +03:00
|
|
|
|
with dvc_config_path.open("r", encoding="utf8") as f:
|
|
|
|
|
ref_hash = f.readline().strip().replace("# ", "")
|
|
|
|
|
if ref_hash == config_hash and not force:
|
|
|
|
|
return False # Nothing has changed in project config, don't need to update
|
|
|
|
|
dvc_config_path.unlink()
|
|
|
|
|
variables = config.get("variables", {})
|
|
|
|
|
commands = []
|
|
|
|
|
# We only want to include commands that are part of the main list of "run"
|
|
|
|
|
# commands in project.yml and should be run in sequence
|
|
|
|
|
config_commands = {cmd["name"]: cmd for cmd in config.get("commands", [])}
|
|
|
|
|
for name in config.get("run", []):
|
2020-06-29 17:54:47 +03:00
|
|
|
|
validate_subcommand(config_commands.keys(), name)
|
2020-06-27 14:02:10 +03:00
|
|
|
|
command = config_commands[name]
|
|
|
|
|
deps = command.get("deps", [])
|
|
|
|
|
outputs = command.get("outputs", [])
|
|
|
|
|
outputs_no_cache = command.get("outputs_no_cache", [])
|
|
|
|
|
if not deps and not outputs and not outputs_no_cache:
|
|
|
|
|
continue
|
2020-06-30 19:51:20 +03:00
|
|
|
|
# Default to the working dir as the project path since dvc.yaml is auto-generated
|
2020-06-27 14:02:10 +03:00
|
|
|
|
# and we don't want arbitrary paths in there
|
2020-06-30 19:51:20 +03:00
|
|
|
|
project_cmd = ["python", "-m", NAME, "project", "exec", name]
|
2020-06-27 14:02:10 +03:00
|
|
|
|
deps_cmd = [c for cl in [["-d", p] for p in deps] for c in cl]
|
|
|
|
|
outputs_cmd = [c for cl in [["-o", p] for p in outputs] for c in cl]
|
|
|
|
|
outputs_nc_cmd = [c for cl in [["-O", p] for p in outputs_no_cache] for c in cl]
|
|
|
|
|
dvc_cmd = ["dvc", "run", "-n", name, "-w", str(path), "--no-exec"]
|
|
|
|
|
if verbose:
|
|
|
|
|
dvc_cmd.append("--verbose")
|
|
|
|
|
if silent:
|
|
|
|
|
dvc_cmd.append("--quiet")
|
|
|
|
|
full_cmd = [*dvc_cmd, *deps_cmd, *outputs_cmd, *outputs_nc_cmd, *project_cmd]
|
|
|
|
|
commands.append(" ".join(full_cmd))
|
2020-06-27 15:15:41 +03:00
|
|
|
|
with working_dir(path):
|
|
|
|
|
run_commands(commands, variables, silent=True)
|
2020-06-27 14:02:10 +03:00
|
|
|
|
with dvc_config_path.open("r+", encoding="utf8") as f:
|
|
|
|
|
content = f.read()
|
|
|
|
|
f.seek(0, 0)
|
|
|
|
|
f.write(f"# {config_hash}\n{DVC_CONFIG_COMMENT}\n{content}")
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
2020-06-28 16:08:35 +03:00
|
|
|
|
def ensure_dvc() -> None:
|
|
|
|
|
"""Ensure that the "dvc" command is available and show an error if not."""
|
|
|
|
|
try:
|
|
|
|
|
subprocess.run(["dvc", "--version"], stdout=subprocess.DEVNULL)
|
|
|
|
|
except Exception:
|
|
|
|
|
msg.fail(
|
|
|
|
|
"spaCy projects require DVC (Data Version Control) and the 'dvc' command",
|
|
|
|
|
"You can install the Python package from pip (pip install dvc) or "
|
|
|
|
|
"conda (conda install -c conda-forge dvc). For more details, see the "
|
|
|
|
|
"documentation: https://dvc.org/doc/install",
|
|
|
|
|
exits=1,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def setup_check_dvc(project_dir: Path, config: Dict[str, Any]) -> None:
|
|
|
|
|
"""Check that the project is set up correctly with DVC and update its
|
|
|
|
|
config if needed. Will raise an error if the project is not an initialized
|
|
|
|
|
DVC project.
|
|
|
|
|
|
|
|
|
|
project_dir (Path): The path to the project directory.
|
|
|
|
|
config (Dict[str, Any]): The loaded project config.
|
|
|
|
|
"""
|
|
|
|
|
if not project_dir.exists():
|
|
|
|
|
msg.fail(f"Can't find project directory: {project_dir}")
|
|
|
|
|
if not (project_dir / ".dvc").exists():
|
|
|
|
|
msg.fail(
|
|
|
|
|
"Project not initialized as a DVC project.",
|
|
|
|
|
f"Make sure that the project template was cloned correctly. To "
|
|
|
|
|
f"initialize the project directory manually, you can run: "
|
|
|
|
|
f"{COMMAND} project init {project_dir}",
|
|
|
|
|
exits=1,
|
|
|
|
|
)
|
2020-06-28 13:24:59 +03:00
|
|
|
|
with msg.loading("Updating DVC config..."):
|
2020-06-28 16:08:35 +03:00
|
|
|
|
updated = update_dvc_config(project_dir, config, silent=True)
|
2020-06-28 13:24:59 +03:00
|
|
|
|
if updated:
|
|
|
|
|
msg.good(f"Updated DVC config from changed {CONFIG_FILE}")
|
|
|
|
|
|
|
|
|
|
|
2020-06-27 14:02:10 +03:00
|
|
|
|
def run_commands(
|
|
|
|
|
commands: List[str] = tuple(), variables: Dict[str, str] = {}, silent: bool = False
|
|
|
|
|
) -> None:
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""Run a sequence of commands in a subprocess, in order.
|
|
|
|
|
|
2020-06-30 21:35:51 +03:00
|
|
|
|
commands (List[str]): The string commands.
|
2020-06-28 16:08:35 +03:00
|
|
|
|
variables (Dict[str, str]): Dictionary of variable names, mapped to their
|
|
|
|
|
values. Will be used to substitute format string variables in the
|
|
|
|
|
commands.
|
2020-06-29 17:32:25 +03:00
|
|
|
|
silent (bool): Don't print the commands.
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"""
|
2020-06-21 22:35:01 +03:00
|
|
|
|
for command in commands:
|
|
|
|
|
# Substitute variables, e.g. "./{NAME}.json"
|
|
|
|
|
command = command.format(**variables)
|
2020-06-30 21:35:51 +03:00
|
|
|
|
command = split_command(command)
|
2020-06-30 14:17:26 +03:00
|
|
|
|
# Not sure if this is needed or a good idea. Motivation: users may often
|
|
|
|
|
# use commands in their config that reference "python" and we want to
|
|
|
|
|
# make sure that it's always executing the same Python that spaCy is
|
|
|
|
|
# executed with and the pip in the same env, not some other Python/pip.
|
|
|
|
|
# Also ensures cross-compatibility if user 1 writes "python3" (because
|
|
|
|
|
# that's how it's set up on their system), and user 2 without the
|
|
|
|
|
# shortcut tries to re-run the command.
|
2020-06-29 21:30:42 +03:00
|
|
|
|
if len(command) and command[0] in ("python", "python3"):
|
2020-06-25 13:26:53 +03:00
|
|
|
|
command[0] = sys.executable
|
2020-06-29 21:30:42 +03:00
|
|
|
|
elif len(command) and command[0] in ("pip", "pip3"):
|
2020-06-28 13:24:59 +03:00
|
|
|
|
command = [sys.executable, "-m", "pip", *command[1:]]
|
2020-06-27 14:02:10 +03:00
|
|
|
|
if not silent:
|
2020-06-30 22:33:41 +03:00
|
|
|
|
print(f"Running command: {' '.join(command)}")
|
2020-06-25 13:26:53 +03:00
|
|
|
|
run_command(command)
|
2020-06-22 01:15:06 +03:00
|
|
|
|
|
|
|
|
|
|
2020-06-28 16:08:35 +03:00
|
|
|
|
def convert_asset_url(url: str) -> str:
|
|
|
|
|
"""Check and convert the asset URL if needed.
|
|
|
|
|
|
|
|
|
|
url (str): The asset URL.
|
|
|
|
|
RETURNS (str): The converted URL.
|
|
|
|
|
"""
|
2020-06-22 01:15:06 +03:00
|
|
|
|
# If the asset URL is a regular GitHub URL it's likely a mistake
|
|
|
|
|
if re.match("(http(s?)):\/\/github.com", url):
|
2020-06-28 16:08:35 +03:00
|
|
|
|
converted = url.replace("github.com", "raw.githubusercontent.com")
|
|
|
|
|
converted = re.sub(r"/(tree|blob)/", "/", converted)
|
2020-06-22 01:15:06 +03:00
|
|
|
|
msg.warn(
|
|
|
|
|
"Downloading from a regular GitHub URL. This will only download "
|
2020-06-28 16:08:35 +03:00
|
|
|
|
"the source of the page, not the actual file. Converting the URL "
|
|
|
|
|
"to a raw URL.",
|
|
|
|
|
converted,
|
2020-06-22 01:15:06 +03:00
|
|
|
|
)
|
2020-06-28 16:08:35 +03:00
|
|
|
|
return converted
|
|
|
|
|
return url
|
|
|
|
|
|
2020-06-22 15:53:31 +03:00
|
|
|
|
|
2020-06-28 16:08:35 +03:00
|
|
|
|
def check_clone(name: str, dest: Path, repo: str) -> None:
|
|
|
|
|
"""Check and validate that the destination path can be used to clone. Will
|
|
|
|
|
check that Git is available and that the destination path is suitable.
|
2020-06-22 15:53:31 +03:00
|
|
|
|
|
2020-06-28 16:08:35 +03:00
|
|
|
|
name (str): Name of the directory to clone from the repo.
|
|
|
|
|
dest (Path): Local destination of cloned directory.
|
|
|
|
|
repo (str): URL of the repo to clone from.
|
|
|
|
|
"""
|
|
|
|
|
try:
|
|
|
|
|
subprocess.run(["git", "--version"], stdout=subprocess.DEVNULL)
|
|
|
|
|
except Exception:
|
|
|
|
|
msg.fail(
|
|
|
|
|
f"Cloning spaCy project templates requires Git and the 'git' command. ",
|
|
|
|
|
f"To clone a project without Git, copy the files from the '{name}' "
|
|
|
|
|
f"directory in the {repo} to {dest} manually and then run:",
|
|
|
|
|
f"{COMMAND} project init {dest}",
|
|
|
|
|
exits=1,
|
|
|
|
|
)
|
2020-06-22 15:53:31 +03:00
|
|
|
|
if not dest:
|
|
|
|
|
msg.fail(f"Not a valid directory to clone project: {dest}", exits=1)
|
|
|
|
|
if dest.exists():
|
|
|
|
|
# Directory already exists (not allowed, clone needs to create it)
|
|
|
|
|
msg.fail(f"Can't clone project, directory already exists: {dest}", exits=1)
|
|
|
|
|
if not dest.parent.exists():
|
|
|
|
|
# We're not creating parents, parent dir should exist
|
|
|
|
|
msg.fail(
|
|
|
|
|
f"Can't clone project, parent directory doesn't exist: {dest.parent}",
|
|
|
|
|
exits=1,
|
|
|
|
|
)
|
2020-06-28 17:25:53 +03:00
|
|
|
|
|
|
|
|
|
|
2020-06-29 17:54:47 +03:00
|
|
|
|
def validate_subcommand(commands: Sequence[str], subcommand: str) -> None:
|
|
|
|
|
"""Check that a subcommand is valid and defined. Raises an error otherwise.
|
|
|
|
|
|
|
|
|
|
commands (Sequence[str]): The available commands.
|
|
|
|
|
subcommand (str): The subcommand.
|
|
|
|
|
"""
|
|
|
|
|
if subcommand not in commands:
|
|
|
|
|
msg.fail(
|
|
|
|
|
f"Can't find command '{subcommand}' in {CONFIG_FILE}. "
|
|
|
|
|
f"Available commands: {', '.join(commands)}",
|
|
|
|
|
exits=1,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2020-06-28 17:25:53 +03:00
|
|
|
|
def download_file(url: str, dest: Path, chunk_size: int = 1024) -> None:
|
|
|
|
|
"""Download a file using requests.
|
|
|
|
|
|
|
|
|
|
url (str): The URL of the file.
|
|
|
|
|
dest (Path): The destination path.
|
|
|
|
|
chunk_size (int): The size of chunks to read/write.
|
|
|
|
|
"""
|
|
|
|
|
response = requests.get(url, stream=True)
|
|
|
|
|
response.raise_for_status()
|
|
|
|
|
total = int(response.headers.get("content-length", 0))
|
|
|
|
|
progress_settings = {
|
|
|
|
|
"total": total,
|
|
|
|
|
"unit": "iB",
|
|
|
|
|
"unit_scale": True,
|
|
|
|
|
"unit_divisor": chunk_size,
|
|
|
|
|
"leave": False,
|
|
|
|
|
}
|
|
|
|
|
with dest.open("wb") as f, tqdm.tqdm(**progress_settings) as bar:
|
|
|
|
|
for data in response.iter_content(chunk_size=chunk_size):
|
|
|
|
|
size = f.write(data)
|
|
|
|
|
bar.update(size)
|