网络爬虫基础篇

在实战中学习

  实战1(爬一个网页图片):

    import urllib.request

    response =urllib.request.urlopen(http://placekitten.com/g/500/600")

    cat.img = response.read()

    with open('cat_500_600.jpg',"wb") as f:

      f.write(cat_img)

    解读:

  

原文地址:https://www.cnblogs.com/hlan/p/6705246.html