Office365-REST-Python-Client
Office365-REST-Python-Client copied to clipboard
excute_batch ignores DocumentSet.create
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}")