使用Python爬虫库requests发送请求、传递URL参数、定制headers
(编辑:jimmy 日期: 2025/1/18 浏览:3 次 )
首先我们先引入requests模块
import requests
一、发送请求
r = requests.get('https://api.github.com/events') # GET请求 r = requests.post('http://httpbin.org/post', data = {'key':'value'}) # POST请求 r = requests.put('http://httpbin.org/put', data = {'key':'value'}) # PUT请求 r = requests.delete('http://httpbin.org/delete') # DELETE请求 r = requests.head('http://httpbin.org/get') # HEAD请求 r = requests.options('http://httpbin.org/get') # OPTIONS请求 type(r)
requests.models.Response
二、传递URL参数
URL传递参数的形式为:httpbin.org/get"htmlcode">
payload = {'key1': 'value1', 'key2': 'value2'} r = requests.get("http://httpbin.org/get", params=payload) print(r.url)
http://httpbin.org/get"htmlcode">payload = {'key1': 'value1', 'key2': ['value2', 'value3']} r = requests.get('http://httpbin.org/get', params=payload) print(r.url)http://httpbin.org/get"htmlcode">url = 'https://api.github.com/some/endpoint' headers = {'user-agent': 'my-app/0.0.1'} r = requests.get(url, headers=headers)更多关于Python爬虫库requests的使用方法请点击下面的相关链接
下一篇:python使用ctypes调用扩展模块的实例方法
几个月来,英特尔、微软、AMD和其它厂商都在共同推动“AI PC”的想法,朝着更多的AI功能迈进。在近日,英特尔在台北举行的开发者活动中,也宣布了关于AI PC加速计划、新的PC开发者计划和独立硬件供应商计划。
在此次发布会上,英特尔还发布了全新的全新的酷睿Ultra Meteor Lake NUC开发套件,以及联合微软等合作伙伴联合定义“AI PC”的定义标准。
在此次发布会上,英特尔还发布了全新的全新的酷睿Ultra Meteor Lake NUC开发套件,以及联合微软等合作伙伴联合定义“AI PC”的定义标准。