files
A CLI how-to guide. SDK power-users can refer to our full SDK docs generated from our source code here
Lists all the files in a RemoteDataset
. The default list has 3 columns: filename, status and URL.
$ darwin dataset files cars
ferrari-laferrari.jpg review https://darwin.v7labs.com/workview?dataset=312&image=34
peugeut.jpg complete https://darwin.v7labs.com/workview?dataset=312&image=2
opel.jpg annotate https://darwin.v7labs.com/workview?dataset=312&image=3
mercedez.jpeg new https://darwin.v7labs.com/workview?dataset=312&image=37
Positional arguments:
dataset
: The name of theRemoteDataset
.
Optional arguments:
--only-filenames
: Only show filenames, omitting the rest of the columns.--status STATUS
: List of statuses to filter by. Status should be separated by commas. The list of available statuses is:annotate, archived, complete, new, review
.--path PATH
: List only files underPATH
. This is useful if your dataset has a directory structure.--sort-by SORT_BY
: Sort remotely fetched files by the given direction. Defaults to 'updated_at:desc'.
Updated 4 months ago