python爬虫最简单代码_Python爬虫入门(01) -- 10行代码实现一个爬虫
时间: 2023-06-29 19:19:03 浏览: 147
python爬虫最简单代码
好的,这是一个简单的 Python 爬虫示例代码:
```python
import requests
url = 'https://www.baidu.com/'
response = requests.get(url)
print(response.text)
```
这个爬虫的功能是获取百度首页的 HTML 内容,并打印到控制台上。这个爬虫只需要引入 requests 库即可,使用 requests.get() 方法发送 GET 请求获取网页内容,然后使用 response.text 获取响应的 HTML 内容。
阅读全文