python网络爬虫
程序员文章站
2022-03-02 22:44:32
...
Python3.X中应该用urllib.request:
import urllib.request
def run_demo():
f=urllib.request.urlopen('http://www.baidu.com')
print(f.read())
if __name__=='__main__':
run_demo()
上一篇: Python网络爬虫(一)
下一篇: Python网络爬虫(一)