91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用python的scrapy模擬登錄

發布時間:2022-05-30 16:00:35 來源:億速云 閱讀:118 作者:iii 欄目:大數據

這篇文章主要介紹“怎么使用python的scrapy模擬登錄”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“怎么使用python的scrapy模擬登錄”文章能幫助大家解決問題。

1、requests模塊。直接攜帶cookies請求頁面。

找到url,發送post請求存儲cookie。

2、selenium(瀏覽器自動處理cookie)。

找到相應的input標簽,輸入文本,點擊登錄。

3、scrapy直接帶cookies。

找到url,發送post請求存儲cookie。

# -*- coding: utf-8 -*-
import scrapy
import re
 
class GithubLoginSpider(scrapy.Spider):
    name = 'github_login'
    allowed_domains = ['github.com']
    start_urls = ['https://github.com/login']
 
    def parse(self, response): # 發送Post請求獲取Cookies
        authenticity_token = response.xpath('//input[@name="authenticity_token"]/@value').extract_first()
        utf8 = response.xpath('//input[@name="utf8"]/@value').extract_first()
        commit = response.xpath('//input[@name="commit"]/@value').extract_first()
        form_data = {
            'login': 'pengjunlee@163.com',
            'password': '123456',
            'webauthn-support': 'supported',
            'authenticity_token': authenticity_token,
            'utf8': utf8,
            'commit': commit}
        yield scrapy.FormRequest("https://github.com/session", formdata=form_data, callback=self.after_login)
 
    def after_login(self, response): # 驗證是否請求成功
        print(re.findall('Learn Git and GitHub without any code!', response.body.decode()))

關于“怎么使用python的scrapy模擬登錄”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凌源市| 怀来县| 建湖县| 化州市| 泽州县| 化隆| 泾阳县| 泰来县| 阿拉尔市| 隆林| 广元市| 台中市| 庆安县| 武陟县| 陵水| 怀仁县| 临颍县| 蒲江县| 运城市| 宁国市| 利津县| 平乐县| 上蔡县| 高州市| 安吉县| 湖州市| 辛集市| 庆城县| 洛隆县| 漯河市| 桦南县| 吴忠市| 忻城县| 阜平县| 江口县| 义乌市| 屏东市| 高州市| 榆中县| 枝江市| 伊吾县|