CSS教程

【学习打卡】第3天 Scrapy打造搜索引擎 Scrapy安装与配置、xpath基础语法、xpath提取元素、css选择器

本文主要是介绍【学习打卡】第3天 Scrapy打造搜索引擎 Scrapy安装与配置、xpath基础语法、xpath提取元素、css选择器,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

课程名称:Scrapy打造搜索引擎(分布式爬虫)


课程章节:Scrapy爬取知名技术文章网站


主讲老师:bobby


课程内容:

今天学习的内容包括:Scrapy安装与配置、xpath基础语法、xpath提取元素、css选择器


课程收获:


Scrapy安装与配置:

    

    1.scrapy安装出错?

    https://www.lfd.uci.edu/~gohlke/pythonlibs/

    进入该网址下载出错的包,然后手动本地安装

    

         

        1.容易出错的包Lxml

             https://img1.sycdn.imooc.com/62ef855a00013bbc07271027.jpg

        2.易错twisted包

             https://img4.sycdn.imooc.com/62ef8565000198ea08361275.jpg

        3.易错scrapy包

             https://img1.sycdn.imooc.com/62ef856f00016ca407740466.jpg

        4.易错PyWin32包

             https://img4.sycdn.imooc.com/62ef857900010d0708381274.jpg

     

     

    2.如何本地安装

    注:最后手动安装scrapy,因为scrapy依赖其他几个包

    pip install -i https://pypi.douban.com/simple lxml-4.7.1-cp37-cp37m-win_amd64.whl

         https://img1.sycdn.imooc.com/62ef85a1000117f217350950.jpg

     

     

    3.创建scrapy项目

        1.scrapy创建项目命令:scrapy startproject ArticleSpider

            https://img1.sycdn.imooc.com/62ef85b00001fbc113790799.jpg

        2.PyCharm打开scrapy创建项目

            https://img2.sycdn.imooc.com/62ef85c30001edde15710983.jpg

        3.创建自定义spider

        命令:scrapy genspider jobbole(名称(随便)) news.cnblogs.com(需要爬取的网站子域名)

            https://img4.sycdn.imooc.com/62ef85d500012fa413790799.jpg

            https://img1.sycdn.imooc.com/62ef85e600010e8215990885.jpg

            

from scrapy.cmdline import execute

import sys
import os

if __name__ == '__main__':
    """
        为什么使用__file__,而不使用sys.path.append("E:/Crawler_Project/ArticleSpider")
        原因:如果当前项目不在该路径下面或者部署到服务器上面,则会找不到该路径报错
        
        1.__file__ 当前文件路径——E:/Crawler_Project/ArticleSpider/main.py
        2.os.path.dirname(__file__)——E:/Crawler_Project/ArticleSpider
        3.os.path.abspath(__file__)——E:/Crawler_Project/ArticleSpider/main.py(原因:可能有些版本python使用file会输出main.py) 
    """
    sys.path.append(os.path.dirname(os.path.abspath(__file__)))
    # sys.path.append()将一个目录放至python搜索目录中
    # os.path.dirname()获取文件路径的文件夹路径——E:/Crawler_Project/ArticleSpider

    execute(["scrapy", "crawl", "jobbole"])

            





xpath:

    https://img1.sycdn.imooc.com/62ef86170001607414400733.jpg

 https://img1.sycdn.imooc.com/62ef8620000184a815490696.jpghttps://img1.sycdn.imooc.com/62ef862b0001ebce15240740.jpg




CSS选择器

    https://img3.sycdn.imooc.com/62ef86640001e8bc13340739.jpg    

            https://img4.sycdn.imooc.com/62ef86830001ff3014760551.jpg

这篇关于【学习打卡】第3天 Scrapy打造搜索引擎 Scrapy安装与配置、xpath基础语法、xpath提取元素、css选择器的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!