qq12046
V2EX  ›  问与答

网易相册怎么批量下载

  •  
  •   qq12046 · Mar 7, 2019 · 4201 views
    This topic created in 2658 days ago, the information mentioned may be changed or developed.

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

    7 replies    2019-05-22 10:06:22 +08:00
    jinyu121
        1
    jinyu121  
       Mar 7, 2019
    ```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  
       Mar 7, 2019
    emm ……格式乱掉了…… 说好的支持 Markdown 呢……那就 gist 吧。

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

    顺便博客广告: https://haoyu.love
    yhxx
        3
    yhxx  
       Mar 7, 2019
    http://ephoto.163.com/download.html

    有个工具,不过挂了
    刚去问了一下,大佬们已经在处理了
    haiyang416
        4
    haiyang416  
       Mar 8, 2019
    搜索下载网易相片管家就行,楼上官方网址还没修好,其他地方还是可以下载的。
    jifengg
        5
    jifengg  
       Mar 8, 2019
    关注一下
    zhz1208
        6
    zhz1208  
       Apr 1, 2019
    @jinyu121 是网易相册不是网易博客啊......
    catfish
        7
    catfish  
       May 22, 2019
    @yhxx 还是用不了吖
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5760 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 48ms · UTC 02:18 · PVG 10:18 · LAX 19:18 · JFK 22:18
    ♥ Do have faith in what you're doing.