当前位置:首页 » 《关注互联网》 » 正文

Python向某个网页发起请求

21 人参与  2024年11月16日 19:21  分类 : 《关注互联网》  评论

点击全文阅读


在Python中,向某个网页发起请求最常用的库是requests。该库简单易用,支持HTTP的GET、POST、PUT、DELETE等方法。以下是如何使用requests库向网页发起请求的例子:

首先,你需要确保安装了requests库。如果你还没有安装,可以使用pip命令安装:

pip install requests

安装完成后,你可以开始使用requests了。以下是一些基本的使用方式:

发起GET请求

import requests

目标网页的URL

url = 'http://example.com'

response = requests.get(url)

print(response.text)

发起POST请求

 import requests

url = 'http://example.com/api'

data = { 'key1': 'value1', 'key2': 'value2'}

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

print(response.text)

在实际使用中,你可能需要处理更复杂的情况,比如添加请求头(Headers)、发送JSON数据、处理Cookies、设置超时、处理异常等。

发送带有Headers的请求

import requests

url = 'http://example.com'

headers = { 'User-Agent': 'My User Agent 1.0', 'Accept': 'application/json', }

response = requests.get(url, headers=headers)

print(response.text)

发送JSON数据

import requests

import json

url = 'http://example.com/api'

json_data = { 'key1': 'value1', 'key2': 'value2'}

response = requests.post(url, json=json_data)

print(response.text)

处理异常

import requests from requests.exceptions

import HTTPError url = 'http://example.com'

try:

    response = requests.get(url)

    response.raise_for_status()

except HTTPError as http_err:

    print(f'HTTP error occurred: {http_err}')

except Exception as err:

    print(f'Other error occurred: {err}')

else:

    print('Success!')

记得在使用requests库时,对可能出现的异常进行处理,确保程序的健壮性。

此外,对于网络请求,最佳实践是使用with语句确保会话正确关闭:

import requests url = 'http://example.com' with requests.get(url) as response: print(response.text)

使用with语句可以自动管理请求的会话和资源清理。以上就是使用Python向网页发起请求的基本方法。


点击全文阅读


本文链接:http://m.zhangshiyu.com/post/187338.html

<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

关于我们 | 我要投稿 | 免责申明

Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1