mirror of
https://github.com/clearml/clearml
synced 2025-06-26 18:16:07 +00:00
Add version to clearml-data list command
This commit is contained in:
parent
f99a5d03f6
commit
0fba023fc4
@ -553,12 +553,12 @@ def ds_search(args):
|
|||||||
+ str(id_col_len)
|
+ str(id_col_len)
|
||||||
+ "}"
|
+ "}"
|
||||||
)
|
)
|
||||||
print(formatting.format("project", "name", "tags", "created", "id"))
|
print(formatting.format("project", "name", "version", "tags", "created", "id"))
|
||||||
print("-" * len(formatting.format("-", "-", "-", "-", "-")))
|
print("-" * len(formatting.format("-", "-", "-", "-", "-")))
|
||||||
for d in datasets:
|
for d in datasets:
|
||||||
print(
|
print(
|
||||||
formatting.format(
|
formatting.format(
|
||||||
d["project"], d["name"], str(d["tags"] or [])[1:-1], str(d["created"]).split(".")[0], d["id"]
|
d["project"], d["name"], d["version"], str(d["tags"] or [])[1:-1], str(d["created"]).split(".")[0], d["id"]
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
return 0
|
return 0
|
||||||
|
Loading…
Reference in New Issue
Block a user