爬蟲 基本請求 學習記錄

2021-10-06 11:26:50 字數 1256 閱讀 5016

學習筆記

1.引數直接放在url

import requests

response = requests.get

(url ?name=gemey&***=男) #?: &並列

print

(response.text)

2.引數放在data裡面,發起請求時params請求引數指定data

import requests

data =

response = requests.get

(url, params=data)

print

(response.text)

import requests

response = requests.get

('url'

)print

(response.text)

print

(response.json()

) #response.json

()方法同json.loads

(response.text)

print

(type

(response.json()

))

import requests

response = requests.get

('')print

(response.status_code) # 列印狀態碼

print

(response.url) # 列印請求url

print

(response.headers) # 列印頭資訊

print

(response.cookies) # 列印cookie資訊

print

(response.text) #以文字形式列印網頁原始碼

print

(response.content) #以位元組流形式列印

import requests

response = requests.get

('url'

)b = response.content

with open

('url','wb'

) as f

: f.write

(b)

C 傳送post get請求(學習筆記)

執行http get 請求 請求位址 請求引數 ip 埠 把響應流轉換為文字。響應流物件 編碼方式 響應文字 組裝普通文字請求引數。key value形式請求引數字典。url編碼後的請求資料。private static string buildpostdata idictionary string...

tp5 1框架學習之請求學習

獲取請求引數 第一種方式 門面方式獲取資料 先引入 use think facade request 使用 get獲取 echo request get id 如果位址列中沒有id這個引數就自動新增id 20 echo request get id 20 第三個引數,還可以新增乙個函式,來使用 ec...

爬蟲學習記錄

如何將字串轉換為字典 字典推導式 cookies anonymid j3jxk555 nrn0wh r01 1 ga ga1.2.1274811859.1497951251 de bf09ee3a28ded52e6b65f6a4705d973f1383380866d39ff5 ln uact mr ...