我想废弃这个网站:Meetic.fr,meetic.com 的法语版本。
目标是在authentication后知道有多少人连接(显示在页面顶部)。
这是蜘蛛:([kobeddl,stack123456]是真正的登录,如果你想尝试一些东西)
from scrapy.spider import BaseSpider
from scrapy.selector import HtmlXPathSelector
from scrapy.http import FormRequest, Request
from meetic.items import MeeticItem
class MeeticSpider(BaseSpider):
name = "meetic"
allowed_domains = ["meetic.fr"]
start_urls = ["http://www.meetic.fr/"]
def parse(self, response):
print 'TEST1'
return [FormRequest.from_response(response, formdata={'log': 'kobeddl', 'pwd': 'stack123456'}, callback=self.after_login)]
def after_login(self, response):
# check login succeed before going on
if "authentication failed" in response.body:
self.log("Login failed", level=log.ERROR)
print 'TEST2'
return
# We've successfully authenticated, let's have some fun!
else:
print 'TEST3'
return Request(url="http://www.meetic.fr/scheduler.php?url=", callback=self.parse_tastypage)
def parse_tastypage(self, response):
hxs = HtmlXPathSelector(response)
item = MeeticItem()
item['nb'] = hxs.select('/html/body/div/div/div/div/div/div/ul/li[2]/a/div/span').extract()
print 'TEST4'
return item
这是命令提示符中的结果:
编辑:如您所见,只有第一个打印语句TEST1
有效。我是python和scrapy的新手,所以原因可能很愚蠢。
我认为我的蜘蛛有一个错误,在这里:if "authentication failed" in response.body:
我在另一个蜘蛛中发现了这个错误,但我不知道如何将它调整到这个蜘蛛。
我还在设置文件中更改了用户代理
USER_AGENT = 'Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20100101 Firefox/7.7'
提前致谢