我想用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))
有人可以帮我解决我的代码有什么问题吗?