Python爬虫——requests_post请求

import requests
import json

url = 'https://fanyi.baidu.com/sug'

headers = {
    'User-Agent': '',
    'Cookie': ''
}

data = {
    'kw': 'hello'
}

response = requests.post(url, data, headers=headers)

content = response.text

obj = json.loads(content.encode('utf-8'))
print(obj)

总结:

  1. post请求不需要编解码
  2. post请求的参数是data
  3. 不需要请求对象的定制

你可能感兴趣的:(Python爬虫,python,爬虫)