Need to download thousands of items from iCloud Photos [duplicate]

I have an iCloud account with about 800 photos stored in iCloud Photo Library. I’m trying to move them to a Mac and delete them from iCloud in order to clear up space.

I tried to connect my Mac to iCloud Photo Library by going into the Photos app’s preferences; however it then asks me to upgrade to a paid iCloud storage tier because I have over 5GB worth of local images that Photos wants to sync to iCloud.

So I don't think using the Photos app is going to work for offloading pictures to a Mac.

I then logged in to the Photos app at iCloud.com. I was able to select and download individual images, but it won’t let me select more than one at a time, so I can’t download them all in bulk. Selecting the first image, holding down the ⇧ shift key, then selecting the last image causes only the last image to be selected.

I could click on all 800 images while holding the ⌘ cmd key, but that’s obviously very tedious.

What’s the most efficient way to download images from iCloud Photo Library to a Mac that can’t connect to iCloud Photo Library without upgrading to a paid plan?


Solution 1:

I highly recommend ndbroadbent's fantastic Python program the icloud_photos_downloader project. The project repository can be found at his Github account: https://github.com/ndbroadbent/icloud_photos_downloader.

There are some great instructions on installation and use in the project README. Once installed, you run the program to download all your photos to a directory called foto_folder; from the terminal

./download_photos.py ../foto_folder [email protected] --password=myp@ss --size=original --download-videos

And viola, it does its magic.

I've also posted this answer here: https://apple.stackexchange.com/a/311787/271502

Solution 2:

Go to https://privacy.apple.com/account , sign-in and request download for photos.

You can request a copy of the data that Apple stores which is associated with your Apple ID. This information includes, but is not limited to:

  • Your Apple ID account details and sign-in records.

  • Data that you store with iCloud such as contacts, calendars, notes, bookmarks, reminders, email, photos, videos, and document.

from https://support.apple.com/en-in/HT208502

Solution 3:

Now, you can just hit Control-A on the iCloud Photos page, and it will select all the images and videos. Then just click Download on the top right.

Solution 4:

I was able to figure out a workaround for this. It will force the underlying structure to select all of the photos on the page and allow you to click the download selected photos button. It will download them all separately as if you had selected all of the photos by hand (but without RSI).

You need to use Chrome dev tools. I am sure you can do it with other browsers, I just haven't tried. The following steps are involved, and I would appreciate if someone can tell me how to get the "this" value for the object I need in a simpler fashion (steps 4-10).

Here's the steps:

  1. Make sure chrome dev tools is closed.
  2. Go to photos in iCloud, then All Photos
  3. Right click any photo on the page and select Inspect.
  4. Click Sources tab at the top of dev tools.
  5. In network hierarchy on left, open photos, www.icloud.com, applications/photos, 1807Hotfix1/en-us, main.js
  6. Click braces {} at bottom of the sources window to format the code.
  7. Search for case r.a.TOGGLE: (should be around line 25845)
  8. Set a breakpoint on the line above which is a switch statement.
  9. Click on any photo in the main window.
  10. Go back to dev tools and see the scope window (below source for me).
  11. Right click on "this" variable and choose Store as Global Variable.
  12. Look in the console. Should see something like temp1 which is set to this.
  13. Remove the breakpoint in the source window.
  14. Click the Resume Script Execution button in main window.
  15. Go to the console, and type the following and press enter:

    temp1.selectAll()
    
  16. Nothing appears to have changed, but it has underneath.

  17. Now click the download selected items button at the top.
  18. You will now see a bunch of downloads happening.

Solution 5:

You can still do this using the Photos app.

Short Version

You just need to connect an empty System Photo Library to iCloud Photo Library so that nothing gets uploaded, only downloaded.

Once that’s done, export all those photos to your hard drive, disconnect from iCloud Photo Library, and restore your main Photos Library as your System Photo Library.

Step-by-Step:

  1. Close the app (⌘ cmd q).
  2. While holding ⌥ opt launch Photos from your Dock.
  3. Select Create New… to create a new Photos Library.
  4. From the menu bar, click PhotosPreferencesGeneralUse as System Photo Library.
  5. Quit and reopen Photos.
  6. Connect to iCloud Photo Library by checking PhotosPreferencesiCloudiCloud Photo Library and Download Originals to this Mac.
  7. Allow your Mac to download all your photos from iCloud.
  8. If your sidebar is hidden press ⌥ opt ⌘ cmd s to show it.
  9. From All Photos view (which includes hidden photos and videos), press ⌘ cmd a to select all photos.
  10. From the menu bar, go to FileExportExport Unmodified Original For 800 Items…
  11. Wait for the export to complete.
  12. Delete all your photos from Photos (and thus, from iCloud Photo Library). Don’t worry; they will persist in Recently Deleted for 30 days.
  13. Disconnect from iCloud Photo Library by unchecking PhotosPreferencesiCloudiCloud Photo Library.
  14. Close Photos.
  15. ⌥ opt-click Photos from the Dock.
  16. Choose your original Photos Library and click Select Library.
  17. Click PhotosPreferencesGeneralUse as System Photo Library.
  18. Import all your exported photos into your main library.
  19. Trash the Photos Library created in Step 3.
  20. Now that you’ve got all your photos, head to the Recently Deleted album at iCloud.com and choose Delete All.
  21. Profit.