我正在使用aiohttp
异步下载一些图像文件。我的代码是:
async def save_message_images(self, message_data, channel):
async with aiohttp.ClientSession() as session:
image_links = []
for i, link in enumerate(message_data.get('image_links')):
async with session.get(link) as response:
if response.status == 200:
file_name = 'media/messages_images/' + str(channel.telegram_username) + '_' + \
str(message_data.get('message_id') + '_' + str(i)) + '.jpg'
file = open(file_name, mode='wb')
file.write(await response.read())
file.close()
image_links.append(file_name)
else:
raise MessageWebCrawler.RetrieveUrlException()
message_data['image_links'] = image_links
await session.close()
return message_data
我在while
块中运行了这段代码,但是经过一些迭代,aiohttp
被卡住了,不再起作用了。我在python 3.7.4
中使用aiohttp 3.5.4
和ubuntu 16
。有人可以帮我吗?