欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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()