您好, 欢迎来到 !    登录 | 注册 | | 设为首页 | 收藏本站

Python实现在线程里运行scrapy的方法

5b51 2022/1/14 8:17:52 python 字数 3389 阅读 358 来源 www.jb51.cc/python

本文实例讲述了Python实现在线程里运行scrapy的方法。分享给大家供大家参考。具体如下:

概述

本文实例讲述了Python实现在线程里运行scrapy的方法分享给大家供大家参考。具体如下:@H_502_1@

如果你希望在一个写好的程序里调用scrapy,就可以通过下面的代码,让scrapy运行在一个线程里。@H_502_1@

"""
Code to run Scrapy crawler in a thread - works on Scrapy 0.8
"""
import threading,Queue
from twisted.internet import reactor
from scrapy.xlib.pydispatch import dispatcher
from scrapy.core.manager import scrapymanager
from scrapy.core.engine import scrapyengine
from scrapy.core import signals
class CrawlerThread(threading.Thread):
  def __init__(self):
    threading.Thread.__init__(self)
    self.running = False
  def run(self):
    self.running = True
    scrapymanager.configure(control_reactor=False)
    scrapymanager.start()
    reactor.run(installSignalHandlers=False)
  def crawl(self,*args):
    if not self.running:
      raise RuntimeError("CrawlerThread not running")
    self._call_and_block_until_signal(signals.spider_closed,\
      scrapymanager.crawl,*args)
  def stop(self):
    reactor.callFromThread(scrapyengine.stop)
  def _call_and_block_until_signal(self,signal,f,*a,**kw):
    q = Queue.Queue()
    def unblock():
      q.put(None)
    dispatcher.connect(unblock,signal=signal)
    reactor.callFromThread(f,**kw)
    q.get()
# Usage example below:
 
import os
os.environ.setdefault('SCRAPY_SETTINGS_MODULE','myproject.settings')
from scrapy.xlib.pydispatch import dispatcher
from scrapy.core import signals
from scrapy.conf import settings
from scrapy.crawler import CrawlerThread
settings.overrides['LOG_ENABLED'] = False # avoid log noise
def item_passed(item):
  print "Just scraped item:",item
dispatcher.connect(item_passed,signal=signals.item_passed)
crawler = CrawlerThread()
print "Starting crawler thread..."
crawler.start()
print "Crawling somedomain.com...."
crawler.crawl('somedomain.com) # blocking call
print "Crawling anotherdomain.com..."
crawler.crawl('anotherdomain.com') # blocking call
print "Stopping crawler thread..."
crawler.stop()

希望本文所述对大家的Python程序设计有所帮助。@H_502_1@

总结

以上是编程之家为你收集整理的Python实现在线程里运行scrapy的方法全部内容,希望文章能够帮你解决Python实现在线程里运行scrapy的方法所遇到的程序开发问题。


如果您也喜欢它,动动您的小指点个赞吧

除非注明,文章均由 laddyq.com 整理发布,欢迎转载。

转载请注明:
链接:http://laddyq.com
来源:laddyq.com
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。


联系我
置顶