Skip to content
Snippets Groups Projects

Bootstrap repo

Merged Yoann Schneider requested to merge bootstrap into main
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
+ 17
0
# -*- coding: utf-8 -*-
from arkindex_worker.worker import ElementsWorker
class Demo(ElementsWorker):
def process_element(self, element):
print("Demo processing element", element)
def main():
Demo(
description="Fill base-worker cache with information about dataset and extract images"
).run()
if __name__ == "__main__":
main()
Loading