经过一番迭代后,使用aiohttp下载图像陷入困境

时间:2019-07-11 08:45:31

标签: python python-3.7 aiohttp asyncio

我正在使用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.4ubuntu 16。有人可以帮我吗?

0 个答案:

没有答案