亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

python scrapy.Request發送請求的方式是什么

發布時間:2022-05-30 15:52:19 來源:億速云 閱讀:211 作者:iii 欄目:大數據

今天小編給大家分享一下python scrapy.Request發送請求的方式是什么的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

說明

1、使用scrapy.Request()指定method,body參數發送post請求。

2、使用scrapy.FormRequest()發送post請求,也可以發送表格和ajax請求。

實例

import scrapy
 
 
class Git2Spider(scrapy.Spider):
    name = 'git2'
    allowed_domains = ['github.com']
    start_urls = ['http://github.com/login']
 
    def parse(self, response):
        username = 'GitLqr'
        password = 'balabala'
 
        # 從登錄頁面響應中解析出post數據
        token = response.xpath('//input[@name="authenticity_token"]/@value').extract_first()
 
        post_data = {
            'commit': 'Sign in',
            'authenticity_token': token,
            'login': username,
            'password': password,
            'webauthn-support': 'supported',
        }
        print(post_data)
 
        # 針對登錄url發送post請求
        yield scrapy.FormRequest(
            url='https://github.com/session',
            callback=self.after_login,
            formdata=post_data
        )
 
    def after_login(self, response):
        yield scrapy.Request('https://github.com/GitLqr', callback=self.check_login)
 
    def check_login(self, response):
        print(response.xpath('/html/head/title/text()').extract_first())

以上就是“python scrapy.Request發送請求的方式是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

汝城县| 淅川县| 西昌市| 晴隆县| 乐陵市| 扶余县| 梧州市| 漳平市| 始兴县| 包头市| 裕民县| 彭州市| 南阳市| 昂仁县| 鄂州市| 改则县| 河津市| 延边| 治多县| 临海市| 大化| 余姚市| 百色市| 贵州省| 精河县| 喀喇| 正定县| 维西| 江源县| 丰原市| 珲春市| 康乐县| 邯郸县| 宜春市| 赤水市| 延长县| 庆城县| 万州区| 环江| 彭泽县| 社旗县|