(cc_list: list[str],
base_url: str,
verbose: bool,
concur_req: int)
| 106 | return counter |
| 107 | |
| 108 | def download_many(cc_list: list[str], |
| 109 | base_url: str, |
| 110 | verbose: bool, |
| 111 | concur_req: int) -> Counter[DownloadStatus]: |
| 112 | coro = supervisor(cc_list, base_url, verbose, concur_req) |
| 113 | counts = asyncio.run(coro) # <14> |
| 114 | |
| 115 | return counts |
| 116 | |
| 117 | if __name__ == '__main__': |
| 118 | main(download_many, DEFAULT_CONCUR_REQ, MAX_CONCUR_REQ) |
nothing calls this directly
no test coverage detected