溫馨提示×

溫馨提示×

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

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

python scrapy簡單模擬登錄的代碼怎么寫

發(fā)布時(shí)間:2022-03-29 16:55:36 來源:億速云 閱讀:170 作者:iii 欄目:移動(dòng)開發(fā)

今天小編給大家分享一下python scrapy簡單模擬登錄的代碼怎么寫的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

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

找到url,發(fā)送post請求存儲(chǔ)cookie。

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

找到相應(yīng)的input標(biāo)簽,輸入文本,點(diǎn)擊登錄。

3、scrapy直接帶cookies。

找到url,發(fā)送post請求存儲(chǔ)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): # 發(fā)送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): # 驗(yàn)證是否請求成功
        print(re.findall("Learn Git and GitHub without any code!", response.body.decode()))

知識(shí)點(diǎn)擴(kuò)展:

parse_login方法是提交完表單后callback回調(diào)函數(shù)指定要執(zhí)行的方法,為了驗(yàn)證是否成功。這里我們直接在response中搜索Welcome Liu這個(gè)字眼就證明登錄成功。

這個(gè)好理解,重點(diǎn)是yield from super().start_resquests(),這個(gè)代表著如果一旦登錄成功后,就直接帶著登錄成功后Cookie值,方法start_urls里面的地址。

這樣的話登錄成功后的response可以直接在parse里面寫。

# -*- coding: utf-8 -*-
import scrapy
from scrapy import FormRequest,Request


class ExampleLoginSpider(scrapy.Spider):
    name = "login_"
    allowed_domains = ["example.webscraping.com"]
    start_urls = ["http://example.webscraping.com/user/profile"]
    login_url = "http://example.webscraping.com/places/default/user/login"

    def parse(self, response):
        print(response.text)

    def start_requests(self):
        yield scrapy.Request(self.login_url,callback=self.login)

    def login(self,response):
        formdata = {
            "email":"liushuo@webscraping.com","password":"12345678"}
        yield FormRequest.from_response(response,formdata=formdata,
                                        callback=self.parse_login)
    def parse_login(self,response):
        # print(">>>>>>>>"+response.text)
        if "Welcome Liu" in response.text:
            yield from super().start_requests()

以上就是“python scrapy簡單模擬登錄的代碼怎么寫”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI