生成python爬虫代码片段
时间: 2023-09-25 17:16:18 浏览: 74
python爬虫之烟花代码
以下是一个简单的Python爬虫代码片段,用于获取指定网站的HTML内容:
```python
import requests
url = 'https://www.example.com'
response = requests.get(url)
if response.status_code == 200:
html_content = response.content
print(html_content)
else:
print('Failed to get HTML content.')
```
这个代码片段使用了Python中的requests库来发送HTTP请求,并使用了response.content属性来获取HTML内容。如果请求成功,那么就会输出HTML内容,否则就会输出一个错误信息。
阅读全文