码迷,mamicode.com
首页 > 其他好文 > 详细

day35 爬虫简述

时间:2017-10-16 11:11:44      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:git   list   执行   分析   请求头   requests   tree   tor   响应   

爬虫概要

  • - pip3 install requests
  • - pip3 install beautifulsoup4

 

  • 基本爬虫:
  1. - Python实现浏览器行为,requests
  1. - beautifulsoup4,对Html内容进行分析
  1. - Http相关知识:
    • - cookie
    • csrf
    • 请求头

  性能相关:

    - 线程池

    - 进程池

    - 异步非阻塞,

      - (异步=回调,非阻塞=不等待)遇到IO请求不等待,继续执行其他任务,如果IO请求响应内容回来了,自动回调执行某个函数

      - 协程

    - twisted

    - gevent

      - greenlet,协程

      - libevent

    - asyncio

    - tornado

 

  Scrapy框架

    - 性能相关: twisted

    - URL

    - 对象, #id

    redis-scrapy


1. 基本爬虫

  - 基本获取页面指定内容
  - 登录之后
    - github
    - chouti
    - 博客园(用户名密码加密)
      - 用户名和密码
    - 知乎,新浪微博(图片验证码)
      - 第三方
      - xxx

课堂代码:

https://github.com/liyongsan/git_class/tree/master/day35/s16day35

 

day35 爬虫简述

标签:git   list   执行   分析   请求头   requests   tree   tor   响应   

原文地址:http://www.cnblogs.com/liyongsan/p/7675625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!