对Python来说很新,并且很难掌握它,我需要通过其url检索网页,并返回其内容。稍后将解析内容以使用正则表达式查找超链接等。 (我不想使用beautifulsoup)
import urllib.request
url = "http://stackoverflow.com"
f = urllib.urlopen(url)
print (f.read())
我意识到我的回答可能是非常错误的,但任何正确方向的指针都会很棒。
答案 0 :(得分:1)
在python 3.6中,urlopen位于urllib.request模块中。
from urllib.request import urlopen
url = "http://stackoverflow.com"
f = urlopen(url)
print (f.read())