-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
372 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
import argparse | ||
import logging | ||
|
||
from dvc.cli import completion | ||
from dvc.cli.command import CmdBaseNoRepo | ||
from dvc.cli.utils import append_doc_link, fix_subparsers | ||
from dvc.exceptions import DvcException | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class CmdArtifactsGet(CmdBaseNoRepo): | ||
def run(self): | ||
from dvc.repo.artifacts import Artifacts | ||
from dvc.scm import CloneError | ||
|
||
try: | ||
Artifacts.get( | ||
self.args.url, | ||
name=self.args.name, | ||
version=self.args.rev, | ||
stage=self.args.stage, | ||
force=self.args.force, | ||
config=self.args.config, | ||
out=self.args.out, | ||
) | ||
return 0 | ||
except CloneError: | ||
logger.exception("failed to get '%s'", self.args.name) | ||
return 1 | ||
except DvcException: | ||
logger.exception( | ||
"failed to get '%s' from '%s'", self.args.name, self.args.url | ||
) | ||
return 1 | ||
|
||
|
||
def add_parser(subparsers, parent_parser): | ||
ARTIFACTS_HELP = "DVC model registry artifact commands." | ||
|
||
artifacts_parser = subparsers.add_parser( | ||
"artifacts", | ||
parents=[parent_parser], | ||
description=append_doc_link(ARTIFACTS_HELP, "artifacts"), | ||
help=ARTIFACTS_HELP, | ||
formatter_class=argparse.RawDescriptionHelpFormatter, | ||
) | ||
artifacts_subparsers = artifacts_parser.add_subparsers( | ||
dest="cmd", | ||
help="Use `dvc artifacts CMD --help` to display command-specific help.", | ||
) | ||
fix_subparsers(artifacts_subparsers) | ||
|
||
ARTIFACTS_GET_HELP = "Download an artifact from a DVC project." | ||
get_parser = artifacts_subparsers.add_parser( | ||
"get", | ||
parents=[parent_parser], | ||
description=append_doc_link(ARTIFACTS_GET_HELP, "artifacts/get"), | ||
help=ARTIFACTS_HELP, | ||
formatter_class=argparse.RawDescriptionHelpFormatter, | ||
) | ||
get_parser.add_argument("url", help="Location of DVC repository to download from") | ||
get_parser.add_argument( | ||
"name", help="Name of artifact in the repository" | ||
).complete = completion.FILE | ||
get_parser.add_argument( | ||
"--rev", | ||
nargs="?", | ||
help="Artifact version", | ||
metavar="<version>", | ||
) | ||
get_parser.add_argument( | ||
"--stage", | ||
nargs="?", | ||
help="Artifact stage", | ||
metavar="<stage>", | ||
) | ||
get_parser.add_argument( | ||
"-o", | ||
"--out", | ||
nargs="?", | ||
help="Destination path to download artifact to", | ||
metavar="<path>", | ||
).complete = completion.DIR | ||
get_parser.add_argument( | ||
"-j", | ||
"--jobs", | ||
type=int, | ||
help=( | ||
"Number of jobs to run simultaneously. " | ||
"The default value is 4 * cpu_count(). " | ||
), | ||
metavar="<number>", | ||
) | ||
get_parser.add_argument( | ||
"-f", | ||
"--force", | ||
action="store_true", | ||
default=False, | ||
help="Override local file or folder if exists.", | ||
) | ||
get_parser.add_argument( | ||
"--config", | ||
type=str, | ||
help=( | ||
"Path to a config file that will be merged with the config " | ||
"in the target repository." | ||
), | ||
) | ||
get_parser.set_defaults(func=CmdArtifactsGet) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.