爬虫

作者: 一笔春秋 | 来源:发表于2017-12-28 18:44 被阅读9次

    1、Scrapy 

    安装Scrapy:

    sudo pip install virtualenv

    virtualenv scrapyenv

    cd scrapyenv

    source bin/activate

    pip install Scrapy

    文档:https://docs.scrapy.org/en/latest/intro/tutorial.html

    2、使用urllib2和正则表达式实现

    import urllib2  

    import re

    response = urllib2.urlopen('http://www.baidu.com/')  

    html = response.read() 

     print(re.match('dev', html).span())

    相关文章

      网友评论

          本文标题:爬虫

          本文链接:https://www.haomeiwen.com/subject/zbyvgxtx.html