@@ -217,7 +217,8 @@ def load_data(self, ids, *, data_release=None, data_structure='INDIVIDUAL', retr
217
217
the Datalink items tags will not be checked.
218
218
format : str, optional, default 'votable'
219
219
loading format. Other available formats are 'csv', 'ecsv','votable_plain', 'json' and 'fits'
220
- dump_to_file: boolean, optional, default False
220
+ dump_to_file: boolean, optional, default False.
221
+ If it is true, a compressed directory named "datalink_output.zip" with all the DataLink files is made
221
222
overwrite_output_file : boolean, optional, default False
222
223
To overwrite the output_file if it already exists.
223
224
verbose : bool, optional, default 'False'
@@ -241,6 +242,8 @@ def load_data(self, ids, *, data_release=None, data_structure='INDIVIDUAL', retr
241
242
output_file = 'datalink_output.zip'
242
243
output_file_specified = True
243
244
output_file = os .path .abspath (output_file )
245
+ print (f"DataLink products are stored inside the { output_file } file" )
246
+
244
247
if not overwrite_output_file and os .path .exists (output_file ):
245
248
print (f"{ output_file } file already exists and will be overwritten" )
246
249
0 commit comments