import aiohttp import asyncio from fake_useragent import UserAgent from pyquery import PyQuery as pq import time ua = UserAgent(verify_ssl=False, path='D:/Pycharm/fake_useragent.json') lists = [] start = time.time() def ua_random(): headers = { 'use_agent' : ua.random } return headers async def scrape_text(url): async with aiohttp.ClientSession(headers=ua_random()) as session: async with session.get(url) as response: result = await response.text() await session.close() return result async def scrap_url(html): doc = pq(html) links = doc('.clearfix li a') for link in links.items(): lists.append('https://pic.netbian.com' + link.attr('href')) async def scrap_index(page): url = f'https://pic.netbian.com/4kmeinv/index_{page}.html' html = await scrape_text(url) await scrap_url(html) async def main(): scrap_index_tasks = [asyncio.ensure_future(scrap_index(page)) for page in range(2, 10)] await asyncio.gather(*scrap_index_tasks) print(lists) if __name__ == '__main__': loop = asyncio.get_event_loop() loop.run_until_complete(main()) print('总用时:', time.time()-start)
时间: 2024-04-27 11:25:23 浏览: 166
json fake_useragent fake_useragent
这段代码是一个使用异步IO库aiohttp和asyncio实现的爬虫程序,爬取了网站https://pic.netbian.com/4kmeinv/上的内容,将所有图片的链接保存到了一个名为lists的列表中。
具体来说,程序使用fake_useragent库生成一个随机的User-Agent头部,然后使用aiohttp库的ClientSession类和get方法请求网页,获取到响应后,使用pyquery库解析网页内容,获取所有图片链接,并将链接拼接成完整的URL,保存到lists列表中。程序使用asyncio.gather方法并发执行多个任务,提高了爬取的效率。
不过,需要注意的是,这段代码爬取的网站可能存在反爬机制,使用此代码做爬虫可能会导致IP被封禁。同时,爬取的内容可能存在版权问题,请务必遵守相关法律法规。
阅读全文