We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ac08b commit c86905fCopy full SHA for c86905f
bin/lib/images_engine.py
@@ -139,6 +139,16 @@ def _create_domains_up_description():
139
progress = int(done * 100 / nb_domains)
140
print(f'{done}/{nb_domains} {progress}%')
141
142
+def _create_image_description():
143
+ total = Images.Images().get_nb()
144
+ done = 0
145
+ for image in Images.get_all_images_objects():
146
+ api_get_image_description(image.get_global_id())
147
+ done += 1
148
+ progress = int(done * 100 / total)
149
+ print(f'{done}/{total} {progress}%')
150
+
151
152
if __name__ == '__main__':
- _create_domains_up_description()
153
+ # _create_domains_up_description()
154
+ _create_image_description()
0 commit comments