Nils
02/06/2023, 1:28 PMRuntimeError: Tasks cannot be run outside of a flow
? The parse
function is a task.
with ThreadPoolExecutor() as executor
res = [executor.submit(parse, root, n) for n in range(0, table_count, 5)]
data = [r.result() for r in as_completed(res)]
ale
02/06/2023, 2:21 PM:
after with ThreadPoolExecutor() as executor