• 大小: 2.06KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-03-03
  • 语言: Python
  • 标签: python  爬取  

资源简介

使用python 获取知乎用户粉丝

资源截图

代码片段和文件信息

‘‘‘
title = 知乎粉丝抓取
date = 2019-11-17
‘‘‘
#导入模块

import requests

#创建一个类
class ZhiHu:
    #定义一个初始化函数
    def __init__(self):
        #初始化网址 提前赋值网址
        self.url=‘https://www.zhihu.com/api/v4/members/WaJueJiPrince/followers?include=data%5B*%5D.answer_count%2Carticles_count%2Cgender%2Cfollower_count%2Cis_followed%2Cis_following%2Cbadge%5B%3F(type%3Dbest_answerer)%5D.topics&offset=40&limit=20‘

        #反爬措施
        self.header = {‘user-agent‘: ‘Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/69.0.3497.100 Safari/537.36‘}

    def getFenSi(selfparam):#得到粉丝

      
       #请求json文件到本地
       self.html = requests.get(self.urlparams=paramheaders=self.header)  #得到文本文件并解析

       #批量提取json文件里面的数据
       for n in range(20):
           
           #print(self.html)

           id = (self.html.json

评论

共有 条评论