美文网首页
requests 爬图片

requests 爬图片

作者: harukou_ou | 来源:发表于2018-02-06 21:04 被阅读38次
    import requests as req
    import os
    url = input('请输入图片地址:')
    #url = 'https://img.haomeiwen.com/i2256672/958f31b01695b085.gif'
    root = 'e://pic//'
    path = root + url.split('/')[-1]
    try:
        if not os.path.exists(root):
            os.mkdir(root)
        if not os.path.exists(path):
            r = req.get(url)
            with open(path,'wb') as f:
                f.write(r.content)
                f.close()
                print('文件保存成功')
        else:
            print('文件已存在')
         
    except:
        print('爬取错误')
    

    相关文章

      网友评论

          本文标题:requests 爬图片

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