我正在尝试在python中读取url,但读取不完整

时间:2019-07-19 17:24:13

标签: python html python-3.x web-scraping urllib

我正在尝试在python 3中读取url,但是当我尝试读取时,URL中并没有完全红色 这是我的代码

my_url="https://www.newegg.ca/Video-Cards-Video-Devices/Category/ID-38?Tpk=graphics%20cards"

Uclient=uReq(my_url)

page_html=Uclient.read()

1 个答案:

答案 0 :(得分:0)

您是否尝试过使用requests导入它?正如您未显示的那样,我假设您正在使用urllib.request。下面的代码应在加载任何JavaScript之前为您提供完整的html文本(如果有的话)

import requests

my_url="https://www.newegg.ca/Video-Cards-Video-Devices/Category/ID-38?Tpk=graphics%20cards"
r = requests.get(my_url)
print (r.text)