1. 首页
  2. 数据库
  3. 其它
  4. python使用rabbitmq实现网络爬虫示例

python使用rabbitmq实现网络爬虫示例

上传者: 2020-12-31 04:26:48上传 PDF文件 36.33KB 热度 21次
编写tasks.py复制代码 代码如下:from celery import Celeryfrom tornado.httpclient import HTTPClientapp = Celery(‘tasks’)app.config_from_object(‘celeryconfig’)@app.taskdef get_html(url): http_client = HTTPClient() try: response = http_client.fetch(url,follow_redirects=True) return response.bod
用户评论