-
We have many files source controlled via DVC. I want to be able to use some of these files outside DVC; i.e. I want to be to access these files directly so I can use more efficient tools like to download them. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
DVC provides Note that this only works for individual files, so you cannot pass a directory path, and expect to get a list of urls to the files inside that directory. |
Beta Was this translation helpful? Give feedback.
DVC provides
dvc.api.get_url()
, which you can use to get the URL to the storage location of a data file or directory tracked in a DVC project.Note that this only works for individual files, so you cannot pass a directory path, and expect to get a list of urls to the files inside that directory.