编写python爬虫的代码
时间: 2023-10-21 18:15:01 浏览: 75
您好,以下是关于编写 Python 爬虫的代码的示例:
```python
import requests
from bs4 import BeautifulSoup
url = "https://www.example.com"
response = requests.get(url)
html = response.text
soup = BeautifulSoup(html, "html.parser")
# 示例:获取页面中的标题
title = soup.find("title").text
print(title)
```
希望能对您有所帮助!如果您还有其他问题,请随时问我。
阅读全文