📜  python 请求等待页面加载 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:18.004000             🧑  作者: Mango

代码示例1
from requests_html import HTMLSession

s  = HTMLSession()
response = s.get(url)
response.html.render()

print(response)
# prints out fully loaded page content