Office365-REST-Python-Client icon indicating copy to clipboard operation
Office365-REST-Python-Client copied to clipboard

excute_batch ignores DocumentSet.create

Open DominicBoettger opened this issue 1 year ago • 0 comments

I tried to create DocumentSets in a batch but it failed as the execute_batch ignores the DocumentSet completely

`` for anlagennummer in anlagennummern: DocumentSet.create(self.ctx, server_doc_lib, str(int(anlagennummer))) try: self.ctx.execute_batch(3) print(f"Created {len(anlagennummern)} document sets") except Exception as e: print(f"Error creating document sets: {e}")

DominicBoettger avatar Jun 11 '24 13:06 DominicBoettger