帮我写一个用pychar从新浪微博校园话题中爬取帖子信息的代码
时间: 2024-05-11 08:14:53 浏览: 168
Python-爬取新浪微博信息
好的,以下是Python爬虫的代码示例,用于从新浪微博校园话题中抓取帖子信息:
```
import requests
from bs4 import BeautifulSoup
url = 'https://s.weibo.com/weibo?q=%23%E6%A0%A1%E5%9B%AD%E4%BA%8B%E4%BB%B6%23&Refer=weibo_feed'
response = requests.get(url)
html = response.text
soup = BeautifulSoup(html, 'html.parser')
tweets = soup.find_all('div', class_='card-wrap')
for tweet in tweets:
text = tweet.find('p', class_='txt').get_text()
user = tweet.find('a', class_='name').get_text()
time = tweet.find('a', class_='from').get_text()
print(f'用户:{user} 时间:{time} 内容:{text}')
```
希望能够帮助到您。
阅读全文