python使用scrapy解析js示例
from selenium import selenium
class myspider(crawlspider):
name = 'cnbeta'
allowed_domains = ['cnbeta.com']
start_urls = ['//www.jb51.net']
rules = (
# extract links matching 'category.php' (but not matching 'subsection.php')
# and follow links from them (since no callback means follow=true by default).
rule(sgmllinkextractor(allow=('/articles/.*\.htm', )),
callback='parse_page', follow=true),
# extract links matching 'item.php' and parse them with the spider's method parse_item
)
def __init__(self):
crawlspider.__init__(self)
self.verificationerrors = []
self.selenium = selenium("localhost", 4444, "*firefox", "//www.jb51.net")
self.selenium.start()
def __del__(self):
self.selenium.stop()
print self.verificationerrors
crawlspider.__del__(self)
def parse_page(self, response):
self.log('hi, this is an item page! %s' % response.url)
sel = selector(response)
from webproxy.items import webproxyitem
sel = self.selenium
sel.open(response.url)
sel.wait_for_page_to_load("30000")
import time
time.sleep(2.5)
推荐阅读
-
Python使用Pickle库实现读写序列操作示例
-
python使用pdfminer解析pdf文件的方法示例
-
Python 使用PIL numpy 实现拼接图片的示例
-
Python使用Windows API创建窗口示例【基于win32gui模块】
-
使用70行Python代码实现一个递归下降解析器的教程
-
使用Python的Scrapy框架编写web爬虫的简单示例
-
Angular外部使用js调用Angular控制器中的函数方法或变量用法示例
-
python解析模块(ConfigParser)使用方法
-
python使用PIL给图片添加文字生成海报示例
-
Python单元测试unittest的具体使用示例