V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
qq12046
V2EX  ›  问与答

网易相册怎么批量下载

  •  
  •   qq12046 · 2019-03-07 20:06:05 +08:00 · 3067 次点击
    这是一个创建于 1869 天前的主题,其中的信息可能已经有所发展或是发生改变。

    刚刚看到新闻下个月停运,存了好几千张大学的照片,总不能一张张下载吧,为什么网易停运不提供打包下载。。

    7 条回复    2019-05-22 10:06:22 +08:00
    jinyu121
        1
    jinyu121  
       2019-03-07 20:48:40 +08:00
    ```python
    import xmltodict
    import requests
    import os
    from tqdm import tqdm

    data = open("网易博客图片列表.xml", "r").read()
    data = xmltodict.parse(data)['root']['photo']

    for url in tqdm(data):
    tqdm.write(url)
    try:
    url = url.replace("?height=96&width=96", "")
    filename = os.path.join("images", os.path.split(url)[-1])
    r = requests.get(url, stream=True, timeout=60)
    r.raise_for_status()
    with open(filename, 'wb') as f:
    for chunk in r.iter_content(chunk_size=1024):
    if chunk: # filter out keep-alive new chunks
    f.write(chunk)
    f.flush()
    except:
    tqdm.write("==> Error {}".format(url))

    ```

    我忘了那个图片列表是从哪儿来的了……反正是宣布停运之后有地方能导出的
    jinyu121
        2
    jinyu121  
       2019-03-07 20:52:50 +08:00
    emm ……格式乱掉了…… 说好的支持 Markdown 呢……那就 gist 吧。

    https://gist.github.com/jinyu121/0109f6340f04e0dd95414e5f2c9c3366

    顺便博客广告: https://haoyu.love
    yhxx
        3
    yhxx  
       2019-03-07 20:54:52 +08:00
    http://ephoto.163.com/download.html

    有个工具,不过挂了
    刚去问了一下,大佬们已经在处理了
    haiyang416
        4
    haiyang416  
       2019-03-08 09:14:51 +08:00
    搜索下载网易相片管家就行,楼上官方网址还没修好,其他地方还是可以下载的。
    jifengg
        5
    jifengg  
       2019-03-08 13:14:15 +08:00
    关注一下
    zhz1208
        6
    zhz1208  
       2019-04-01 14:09:11 +08:00
    @jinyu121 是网易相册不是网易博客啊......
    catfish
        7
    catfish  
       2019-05-22 10:06:22 +08:00
    @yhxx 还是用不了吖
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2638 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 681ms · UTC 15:57 · PVG 23:57 · LAX 08:57 · JFK 11:57
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.