Skip to content

Instantly share code, notes, and snippets.

View Crazzy626's full-sized avatar

Crazzy626 Crazzy626

View GitHub Profile
@Crazzy626
Crazzy626 / run_multiple_jobs_async.py
Created January 13, 2022 23:04
Progress bar with asyncio and tqdm
"""
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 = []