async def download(url):
    response = await aiohttp.request('GET', url)
    raw_html = await response.read()
    return raw_html
for url in urls:
    await download(url)
suppose I have the code above, will the url be downloaded one by one? or will they be downloaded parallelly?
