(cc_list: list[str],
base_url: str,
verbose: bool,
concur_req: int)
| 91 | return counter |
| 92 | |
| 93 | def download_many(cc_list: list[str], |
| 94 | base_url: str, |
| 95 | verbose: bool, |
| 96 | concur_req: int) -> Counter[DownloadStatus]: |
| 97 | coro = supervisor(cc_list, base_url, verbose, concur_req) |
| 98 | counts = asyncio.run(coro) # <14> |
| 99 | |
| 100 | return counts |
| 101 | |
| 102 | if __name__ == '__main__': |
| 103 | main(download_many, DEFAULT_CONCUR_REQ, MAX_CONCUR_REQ) |
nothing calls this directly
no test coverage detected