• 大小: 2KB
    文件类型: .py
    金币: 2
    下载: 1 次
    发布日期: 2021-01-02
  • 语言: Python
  • 标签: python  爬虫  

资源简介

python爬虫,爬取扇贝当日单词,cookie登录, 分页爬取当日的单词,保存到excel

资源截图

代码片段和文件信息

import requests
import json
import xlwt

from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)

from requests.cookies import RequestsCookieJar
headers = {‘content-type‘: “application/json“ “User-Agent“: “Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML like Gecko) Chrome/74.0.3729.131 Safari/537.36“}
cookie_jar = None
# sheet = None
list = []

def login():
    url = ‘https://apiv3.shanbay.com/bayuser/login‘
    body = {“account“: “username“ “password“: “password&“ “code_2fa“: ““}
    response = requests.post(url data=json.dumps(body) headers=headers verify=False)
    if response.status_code == 200:
        global  cookie_jar
        cookie_jar = response.cookies

评论

共有 条评论