python发送httpget请求获取网页内容
时间: 2024-09-26 19:17:46 浏览: 37
python发送HTTP请求的方法小结
5星 · 资源好评率100%
在Python中,你可以使用内置的`requests`库来发送HTTP GET请求并获取网页内容。这是一个简单的示例:
```python
import requests
# 定义URL
url = "https://www.example.com"
# 发送GET请求
response = requests.get(url)
# 检查请求是否成功 (状态码为200表示成功)
if response.status_code == 200:
# 获取网页内容
page_content = response.text
print("网页内容:", page_content)
else:
print("请求失败,状态码:", response.status_code)
# 如果需要解析HTML内容,可以使用BeautifulSoup或lxml等库
# from bs4 import BeautifulSoup
# soup = BeautifulSoup(page_content, 'html.parser')
# 进行更复杂的DOM操作
```
在这个例子中,`response.text`返回的是服务器响应的纯文本内容。如果你想处理JSON数据,可以使用`response.json()`。
阅读全文