根据提示,在右侧编辑器 Begin-End 区间补充代码,完善函数 get_html(),用 requests.get 请求获取网页信息。
时间: 2024-09-14 21:14:30 浏览: 99
获取网页密码、代码.rar_http 请求_网页 密码_网页密码_获取 表单 事件_表单
在Python中,你可以使用`requests`库来发送HTTP请求并获取HTML内容。这里是一个简单的示例,展示了如何在`get_html()`函数中完成这个任务:
```python
import requests
def get_html(url):
# 使用 try-except 结构处理可能出现的网络错误
try:
# 发送GET请求
response = requests.get(url)
# 确保请求成功,状态码通常在200到299之间
if response.status_code == 200:
# 返回请求的文本内容,即HTML页面
return response.text
else:
print(f"请求失败,状态码: {response.status_code}")
return None
except requests.exceptions.RequestException as e:
# 处理网络请求异常
print(f"请求出错: {e}")
return None
# 示例URL
url = "https://www.example.com"
# 调用函数并打印结果
html_content = get_html(url)
if html_content:
print("HTML内容:")
print(html_content)
else:
print("未能获取HTML内容")
阅读全文