Python 爬虫怎么爬文本
python 爬虫如何爬取文本
Python 爬虫是一种用于从网页中提取数据的程序。它可以用于抓取各种类型的数据,包括文本。
爬取文本的步骤:
import requests from bs4 import BeautifulSoup
-
获取目标网页的 HTML:
- 使用 requests.get() 发送 GET 请求到目标 URL,并获取响应内容。
url = "https://example.com/page.html" response = requests.get(url)
-
解析 HTML 响应:
- 使用 BeautifulSoup 创建一个 BeautifulSoup 对象,并传入响应的内容。
soup = BeautifulSoup(response.content, "html.parser")
text_element = soup.select_one("div.article-content")
-
提取文本:
- 使用 text 属性提取元素中的文本内容。
text = text_element.text
示例代码:
import requests from bs4 import BeautifulSoup url = "https://example.com/page.html" response = requests.get(url) soup = BeautifulSoup(response.content, "html.parser") text_element = soup.select_one("div.article-content") text = text_element.text print(text)
以上就是Python 爬虫怎么爬文本的详细内容,更多请关注其它相关文章!