python下载图片简单教程

作者: IT派森 | 来源:发表于2019-07-10 22:39 被阅读2次

    通过urlretrieve方法
    import os

    导入os包,没有该模块的可通过pip installl 命令安装模块

    from urllib.request import urlretrieve

    导入urllib模块

    IMAGE_URL="https://bpic.588ku.com/element_pic/00/16/10/21580951c08d0a9.jpg!/fw/208/quality/90/unsharp/true/compress/true"

    设置一个图片的url,随便一个即可

    os.makedirs('./img/', exist_ok=True)

    通过os在当前的工作路径下制作一个img目录,可以不需要这句话

    urlretrieve(IMAGE_URL, './img/image1.png')

    通过urllib的urlretrieve方法使得把图片下载保存到指定的目录

    print('ok')

    确认是否执行成功

    通过requests方法获取
    import os
    import requests

    导入os包,没有该模块的可通过pip installl 命令安装模块

    from urllib.request import urlretrieve

    导入urllib模块

    IMAGE_URL = "https://bpic.588ku.com/element_pic/00/16/10/21580951c08d0a9.jpg!/fw/208/quality/90/unsharp/true/compress/true"

    设置一个图片的url,随便一个即可。

    学习python过程中有不懂的可以加入我的python资源分享qun:855,408,893,相关学习视频资料、开发工具都有分享
    r = requests.get(IMAGE_URL, stream=True)
    with open('./img/image3.png', 'wb') as f:
    for chunk in r.iter_content(chunk_size=32):
    f.write(chunk)
    print('ok')

    相关文章

      网友评论

        本文标题:python下载图片简单教程

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