python 爬虫脚本代码示例
时间: 2023-08-05 08:10:17 浏览: 188
一个爬虫脚本
以下是一个简单的Python爬虫脚本代码示例,用于爬取网页上的数据:
```python
import requests
from bs4 import BeautifulSoup
# 发送HTTP请求获取网页内容
url = "https://example.com" # 要爬取的网页URL
response = requests.get(url)
html_content = response.text
# 解析网页内容
soup = BeautifulSoup(html_content, 'html.parser')
# 提取数据
data = soup.find('div', class_='data-container').text.strip() # 以div标签和class属性来定位目标数据
print("提取到的数据:", data)
# 存储数据
with open("data.txt", "w") as file:
file.write(data)
print("数据已保存到data.txt文件中")
```
以上代码使用了`requests`库发送HTTP请求获取网页内容,使用`BeautifulSoup`库解析HTML,并通过标签和属性来定位目标数据。最后,将提取到的数据存储到名为`data.txt`的文本文件中。
请注意,这只是一个简单的示例,实际的爬虫脚本可能需要更复杂的逻辑和处理方式,例如处理分页、处理反爬机制、异常处理等。在编写爬虫脚本时,请遵守网站的爬虫规则,并尊重法律法规和网站的使用条款。
阅读全文