Proyek ini tidak lagi dipertahankan. Periksa https://github.com/icloud-photos-downloader/icloud_photos_downloader sebagai gantinya.
Saya belum menggunakan iCloud dan perangkat Apple sejak tahun 2021 dan saya tidak berencana untuk menggunakannya. Proyek ini dimulai dengan pertama-tama melepas foto saya dari iCloud dan kemudian bermigrasi keluar dari iCloud sepenuhnya.
Mungkin, tidak masuk akal untuk melakukan fork atau mencoba memulihkannya, karena https://github.com/picklepete/pyicloud, yang menjadi sandaran Gimme-iPhotos juga tidak dipertahankan selama beberapa tahun.
Unduh file media dari iCloud.
Alat ini menggunakan pyicloud untuk menyinkronkan foto dan video dari iCloud ke mesin lokal Anda.
$ pip3 install gimme-iphotos
atau
$ docker pull zebradil/gimme-iphotos
$ gimme-iphotos --help
usage: gimme-iphotos [-h] [-c CONFIG] [-v] [-u USERNAME] [-p PASSWORD] [-d DESTINATION] [-o] [-r] [-n PARALLEL] [-g] [--zero-pad]
Downloads media files from iCloud
optional arguments:
-h, --help show this help message and exit
-c CONFIG, --config CONFIG
Configuration file.
It's ini-like file (see configparser module docs), must contain [main] section.
Keys are fully-named arguments, except help, config and verbose.
Values specified using command line arguments take precedence over values from a provided config file.
-v, --verbose Increase verbosity. Can be specified multiple times.
Use -vvvv to get maximum verbosity.
-u USERNAME, --username USERNAME
iCloud username (email). Can be specified interactively if not set.
-p PASSWORD, --password PASSWORD
iCloud password. Can be specified interactively if not set.
-d DESTINATION, --destination DESTINATION
Destination directory. Can be specified interactively if not set.
-o, --overwrite Overwrite existing files. Default: false.
-r, --remove Remove missing files. Default: false.
-n PARALLEL, --num-parallel-downloads PARALLEL
Max number of concurrent downloads.
Increase this number if bandwidth is not fully utilized. Default: 3
-g, --group Group the photos into year and month directories.
--zero-pad Zero pad months when grouping photos.
Menggunakan file konfigurasi:
$ cat john.cfg
[main]
username = [email protected]
password = not-secure123
destination = /home/john/Photos
remove = True
$ gimme-iphotos -c john.cfg
Mengganti file konfigurasi:
$ gimme-iphotos -c john.cfg --destination /tmp/icloud
Tanpa file konfigurasi:
$ # Password will be requested interactively
$ gimme-iphotos -u [email protected] --destination /tmp/icloud
Enter iCloud password for [email protected]:
CLI-nya sama tetapi memerlukan pemasangan direktori tujuan dan file konfigurasi (jika diperlukan).
$ docker run --interactive --tty
-v < destination > :/somedir
-v ${PWD} /john.cfg:/app/john.cfg
zebradil/gimme-iphotos -c john.cfg
Berlisensi di bawah Lisensi MIT.
Oleh Jerman Lashevich.