我是BeautifulSoup的新手,并试图使用它从Wiki页面上的链接列表中刮取链接。这是我正在使用的代码,但似乎什么也没输出:
import requests from bs4 import BeautifulSoup
url = "https://wiki.cerner.com/pages/viewpage.action?spaceKey=reference&title=Clinical%20Content%20PowerForms%20Pages"
r = requests.get(url)
soup = BeautifulSoup(r.content)
links = soup.find_all("PowerForm")
for link in links:
if "PowerForm" in link.get("href"):
print ("<a href='%s'>%s</a>" %(link.get("href"), link.text))
P.S。 -这是我的第一个stackoverflow帖子,因此,对改善我的帖子的任何建议都表示赞赏。
谢谢!