Python爬虫——requests_get请求

import requests

# ?可加可不加
url = 'http://www.baidu.com/s?'

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

data = {
    'wd': '北京'
}
# params  参数
response = requests.get(url=url, params=data, headers=headers)

content = response.text
print(content)

总结:

  1. 参数使用params传递
  2. 参数无需重新编码
  3. 不需要请求对象定制
  4. 请求资源路径中的?可加也可不加

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