python爬取菜鸟教程
时间: 2023-11-23 18:57:35 浏览: 111
python菜鸟教程
以下是使用Python爬取菜鸟教程的方法:
```python
import requests
from bs4 import BeautifulSoup
# 发送请求
url = 'https://www.runoob.com/'
response = requests.get(url)
# 解析HTML
soup = BeautifulSoup(response.text, 'html.parser')
# 获取菜鸟教程的链接
course_link = soup.find('a', title='菜鸟教程')['href']
# 发送菜鸟教程的请求
response = requests.get(course_link)
# 解析HTML
soup = BeautifulSoup(response.text, 'html.parser')
# 获取菜鸟教程的标题和内容
title = soup.find('div', class_='article-intro').h1.text
content = soup.find('div', class_='article-content').text
# 输出结果
print(title)
print(content)
```
运行上述代码后,将会输出菜鸟教程的标题和内容。
--相关问题--:
1. Python中如何使用BeautifulSoup库解析HTML?
2. 如何使用Python
阅读全文