BeautifulSoup无法解析网站

时间:2018-06-08 21:36:29

标签: python beautifulsoup

我想用BeautifulSoup解析“https://meshb.nlm.nih.gov/treeView”,但运行以下代码只会给我空列表[]

import json,requests
from bs4 import BeautifulSoup
url=('https://meshb.nlm.nih.gov/treeView')
page = requests.get(url)
soup = BeautifulSoup(page.text, 'html.parser')
print(soup.find_all("ul", { "class" : "treeItem ng-scope" },recursive=False))

有人可以帮我解决我的代码有什么问题吗?

0 个答案:

没有答案