python使用tornado实现简单爬虫
作者:WangF0 时间:2022-07-07 12:03:08
本文实例为大家分享了python使用tornado实现简单爬虫的具体代码,供大家参考,具体内容如下
代码在官方文档的示例代码中有,但是作为一个tornado新手来说阅读起来还是有点困难的,于是我在代码中添加了注释,方便理解,代码如下:
# coding=utf-8
#!/usr/bin/env python
import time
from datetime import timedelta
try:
from HTMLParser import HTMLParser
from urlparse import urljoin, urldefrag
except ImportError:
from html.parser import HTMLParser
from urllib.parse import urljoin, urldefrag
from tornado import httpclient, gen, ioloop, queues
# 设置要爬取的网址
base_url = 'http://www.baidu.com'
# 设置worker数量
concurrency = 10
# 此代码会获取base_url下的所有其他url
@gen.coroutine
def get_links_from_url(url):
try:
# 通过异步向url发起请求
response = yield httpclient.AsyncHTTPClient().fetch(url)
print('fetched %s' % url)
# 响应如果是字节类型 进行解码
html = response.body if isinstance(response.body, str) \
else response.body.decode(errors='ignore')
# 构建url列表
urls = [urljoin(url, remove_fragment(new_url))
for new_url in get_links(html)]
except Exception as e:
print('Exception: %s %s' % (e, url))
# 报错返回空列表
raise gen.Return([])
# 返回url列表
raise gen.Return(urls)
def remove_fragment(url):
#去除锚点
pure_url, frag = urldefrag(url)
return pure_url
def get_links(html):
#从html页面里提取url
class URLSeeker(HTMLParser):
def __init__(self):
HTMLParser.__init__(self)
self.urls = []
def handle_starttag(self, tag, attrs):
href = dict(attrs).get('href')
if href and tag == 'a':
self.urls.append(href)
url_seeker = URLSeeker()
url_seeker.feed(html)
return url_seeker.urls
@gen.coroutine
def main():
# 创建队列
q = queues.Queue()
# 记录开始时间戳
start = time.time()
# 构建两个集合
fetching, fetched = set(), set()
@gen.coroutine
def fetch_url():
# 从队列中取出数据
current_url = yield q.get()
try:
# 如果取出的数据在队列中已经存在 返回
if current_url in fetching:
return
print('fetching %s' % current_url)
# 如果不存在添加到集合当中
fetching.add(current_url)
# 从新放入的链接中继续获取链接
urls = yield get_links_from_url(current_url)
# 将已经请求玩的url放入第二个集合
fetched.add(current_url)
for new_url in urls:
# Only follow links beneath the base URL
# 如果链接是以传入的url开始则放入队列
if new_url.startswith(base_url):
yield q.put(new_url)
finally:
# 队列内数据减一
q.task_done()
@gen.coroutine
def worker():
while True:
# 保证程序持续运行
yield fetch_url()
# 将第一个url放入队列
q.put(base_url)
# Start workers, then wait for the work queue to be empty.
for _ in range(concurrency):
# 启动对应数量的worker
worker()
# 等待队列数据处理完成
yield q.join(timeout=timedelta(seconds=300))
# 如果两个集合不相等抛出异常
assert fetching == fetched
# 打印执行时间
print('Done in %d seconds, fetched %s URLs.' % (
time.time() - start, len(fetched)))
if __name__ == '__main__':
io_loop = ioloop.IOLoop.current()
io_loop.run_sync(main)
来源:https://blog.csdn.net/wf134/article/details/79900407
标签:python,tornado,爬虫
0
投稿
猜你喜欢
Python调用C# Com dll组件实战教程
2023-09-05 10:46:06
Python切换pip安装源的方法详解
2023-04-29 22:06:36
表单相关特效整理
2013-06-29 15:42:26
vue-simple-uploader上传成功之后的response获取代码
2024-06-05 15:28:44
JavaScript中Webpack的使用教程
2024-04-10 10:59:32
Python pip配置国内源的方法
2021-02-18 14:53:55
python爬虫(入门教程、视频教程) <font color=red>原创</font>
2021-10-28 22:04:08
详解如何将本地项目上传到Github的方法步骤(图文)
2023-12-07 23:21:31
Pandas中Series的属性,方法,常用操作使用案例
2021-11-22 05:00:47
Python爬虫程序中使用生产者与消费者模式时进程过早退出的问题
2022-10-12 03:37:52
用python实现学生信息管理系统
2023-06-07 10:17:37
Python日志模块logging的使用方法总结
2023-05-10 03:28:45
还在手动盖楼抽奖?教你用Python实现自动评论盖楼抽奖(一)
2023-12-26 21:32:41
最简便的备份MySQL数据库的方法
2008-12-25 13:16:00
Python画图小案例之小雪人超详细源码注释
2021-09-21 11:49:44
sqlserver 数据库学习笔记
2011-12-01 08:15:06
利用OBJECT_DEFINITION函数来代码存档
2009-01-20 15:34:00
Pytorch训练过程出现nan的解决方式
2021-04-21 08:12:08
Python多路复用selector模块的基本使用
2021-12-17 08:43:25
简单好用的PHP分页类
2023-11-22 09:32:39