Created
April 9, 2024 11:12
-
-
Save jokroese/2eef4fcfe54b1786e872094df16a9e9a to your computer and use it in GitHub Desktop.
Export WhatsApp Messages from iPhone to MacOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# requires: | |
# - WhatsApp Desktop and | |
# - backup of iPhone using Finder | |
pip install whatsapp-chat-exporter | |
mkdir whatsapp-export | |
cd whatsapp-export | |
BACKUP_PATH=~/Library/Application\ Support/MobileSync/Backup/ | |
DEVICE_IDS=$(ls "$BACKUP_PATH") | |
if [ -z "$DEVICE_IDS" ]; then | |
echo "No backups found in $BACKUP_PATH" | |
exit 1 | |
fi | |
DEVICE_ID=$(ls "$BACKUP_PATH" | head -1) | |
if [ -z "$DEVICE_ID" ]; then | |
echo "No backups found in $BACKUP_PATH" | |
exit 1 | |
fi | |
FULL_BACKUP_PATH="${BACKUP_PATH}${DEVICE_ID}" | |
wtsexporter -i -b "$FULL_BACKUP_PATH" -o "html" -j "result.json" | |
echo "Export completed for device ID: $DEVICE_ID." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment