美文网首页
python爬虫之简单的网页获取

python爬虫之简单的网页获取

作者: Gordon_Gore | 来源:发表于2018-04-27 16:34 被阅读0次

    Python菜鸟爬虫

    # coding:GB2312
    import requests
    
    resp = requests.get('https://www.zhzyw.com/zycs/zcy/zl/177101719GFBHG5121AB0G0A.html')
    resp.encoding = 'gb2312'
    print(resp.text)
    # print(resp.status_code)
    # print(resp.apparent_encoding)
    

    相关文章

      网友评论

          本文标题:python爬虫之简单的网页获取

          本文链接:https://www.haomeiwen.com/subject/plqilftx.html