我想制作一个python scirpt,可以打印特定用户在线程中的所有帖子。我知道应该使用哪些库,但我无法使用html找到帖子。我该怎么做呢?
import requests
from bs4 import BeautifulSoup
url = "https://forums.spacebattles.com/threads/the-wizard-of-woah-and-the- impossible-methods-of-necromancy.337233/"
data_1 = requests.get(url)
soup_data = BeautifulSoup(data_1.content)
users = soup_data.find_all("li" , {"data-author": ""})
答案 0 :(得分:0)
您尝试查找作者错误的邮件,指定data-author
这样正在ol
messageList标记中查找邮件,以便data-author
部分{ {1}}标记是一个空字符串,但每条消息(li)都有一个data-author属性。因此,没有结果
li