This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Display a Progress Bar while running tasks with asyncio | |
""" | |
import asyncio | |
import tqdm.asyncio | |
from tqdm.auto import tqdm | |
async def run_multiple_jobs_async(job_list): | |
tasks = [] |