网络爬虫python代码
时间: 2023-09-30 20:03:16 浏览: 81
Python网络爬虫代码
以下是一个简单的 Python 网络爬虫代码,可以用于获取特定网站的 HTML 内容:
```python
import requests
url = "https://www.example.com"
response = requests.get(url)
html_content = response.text
print(html_content)
```
该代码使用 Python 的 requests 库来发送 HTTP 请求并获取响应。
请注意,使用网络爬虫时需要遵守网站的规定和法律。在未经网站所有者允许的情况下,使用网络爬虫获取网站内容是不合法的。
阅读全文