python直pyspider入门

时间:2026-02-13 11:53:03

1、WebUI 界面

python直pyspider入门

2、入门demo,具体介绍见下图

from pyspider.libs.base_handler import * 

 class Handler(BaseHandler):    

crawl_config = {    }    

@every(minutes=24 * 60)    

def on_start(self):        

self.crawl('http://scrapy.org/', callback=self.index_page)   

 @config(age=10 * 24 * 60 * 60)    

def index_page(self, response):       

 for each in response.doc('a[href^="http"]').items():           

 self.crawl(each.attr.href, callback=self.detail_page)    

def detail_page(self, response):        

return {   

         "url": response.url,      

         "title": response.doc('title').text(),     

   }

python直pyspider入门

3、开始运行

1.保存你的脚本

2.回到仪表板找到你的项目。

3.改变status为DEBUG。

4.点击run按钮。

python直pyspider入门

© 2026 长短途
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com