MCPcopy
hub / github.com/treeverse/dvc / get

Method get

dvc/fs/dvc.py:492–510  ·  view source on GitHub ↗
(
        self,
        rpath,
        lpath,
        recursive=False,
        callback=DEFAULT_CALLBACK,
        maxdepth=None,
        batch_size=None,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

490 return info
491
492 def get(
493 self,
494 rpath,
495 lpath,
496 recursive=False,
497 callback=DEFAULT_CALLBACK,
498 maxdepth=None,
499 batch_size=None,
500 **kwargs,
501 ):
502 self._get(
503 rpath,
504 lpath,
505 recursive=recursive,
506 callback=callback,
507 maxdepth=maxdepth,
508 batch_size=batch_size,
509 **kwargs,
510 )
511
512 def _get( # noqa: C901, PLR0912, PLR0915
513 self,

Callers

nothing calls this directly

Calls 1

_getMethod · 0.95

Tested by

no test coverage detected