为什么用urlopen爬取数据时少了content/values?
Why missing content/values when using urlopen to crawl data?
我只是使用以下 Python 代码来抓取数据
html = urlopen("https://www.hkex.com.hk/?sc_lang=en").read().decode('utf-8')
print(html)
但是我错过了内容,只得到了
<div class="type value"></div>
我的目标是
<div class="type value">HK,225M</div> or HK,225M
本网站的数据使用JavaScript更新。尝试在浏览器中按 Ctrl+U。
在此示例中,数据是从 https://www.hkex.com.hk/eng/csm/script/data_NBSZ_Turnover_eng.js
或 data_SBSZ_Turnover_eng.js
中获取的。 (不知道你需要什么)
以后看看开发者工具里的“网络”选项卡,应该能找到你需要的。
我只是使用以下 Python 代码来抓取数据
html = urlopen("https://www.hkex.com.hk/?sc_lang=en").read().decode('utf-8')
print(html)
但是我错过了内容,只得到了
<div class="type value"></div>
我的目标是
<div class="type value">HK,225M</div> or HK,225M
本网站的数据使用JavaScript更新。尝试在浏览器中按 Ctrl+U。
在此示例中,数据是从 https://www.hkex.com.hk/eng/csm/script/data_NBSZ_Turnover_eng.js
或 data_SBSZ_Turnover_eng.js
中获取的。 (不知道你需要什么)
以后看看开发者工具里的“网络”选项卡,应该能找到你需要的。