You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Enables on-the-fly compression format conversion during download. Supported formats: `bz2`, `gz`, `xz`. Downloaded files will be automatically decompressed and recompressed to the target format. Example: `--convert-to gz` converts all downloaded compressed files to gzip format.
179
179
-`--convert-from`
180
180
- Optional filter to specify which source compression format should be converted. Use with `--convert-to` to convert only files with a specific compression format. Example: `--convert-to gz --convert-from bz2` converts only `.bz2` files to `.gz`, leaving other formats unchanged.
181
+
-`--validate-checksum`
182
+
- Validates the checksums of downloaded files against the checksums provided by the Databus. If a checksum does not match, an error is raised and the file is deleted.
181
183
182
184
**Help and further information on download command:**
183
185
```bash
@@ -205,9 +207,9 @@ Options:
205
207
databus
206
208
--all-versions When downloading artifacts, download all
207
209
versions instead of only the latest
208
-
--authurl TEXT Keycloak token endpoint URL [default:
209
-
https://auth.dbpedia.org/realms/dbpedia/protocol
210
-
/openid-connect/token]
210
+
--authurl TEXT Keycloak token endpoint URL [default: https://a
211
+
uth.dbpedia.org/realms/dbpedia/protocol/openid-
212
+
connect/token]
211
213
--clientid TEXT Client ID for token exchange [default: vault-
212
214
token-exchange]
213
215
--convert-to [bz2|gz|xz] Target compression format for on-the-fly
@@ -216,6 +218,7 @@ Options:
216
218
--convert-from [bz2|gz|xz] Source compression format to convert from
217
219
(optional filter). Only files with this
218
220
compression will be converted.
221
+
--validate-checksum Validate checksums of downloaded files
219
222
--help Show this message and exit.
220
223
```
221
224
@@ -318,9 +321,15 @@ Options:
318
321
--version-id TEXT Target databus version/dataset identifier of the form <h
0 commit comments