(req_input, semaphore, pbar)
| 524 | } |
| 525 | |
| 526 | async def limited_request_func_per_ip(req_input, semaphore, pbar): |
| 527 | async with semaphore: |
| 528 | return await request_func(request_func_input=req_input, pbar=pbar) |
| 529 | |
| 530 | tasks = [] |
| 531 | for i, ip in enumerate(ip_list): |