Skip to content

Instantly share code, notes, and snippets.

@jokroese
Created April 9, 2024 11:12
Show Gist options
  • Save jokroese/2eef4fcfe54b1786e872094df16a9e9a to your computer and use it in GitHub Desktop.
Save jokroese/2eef4fcfe54b1786e872094df16a9e9a to your computer and use it in GitHub Desktop.
Export WhatsApp Messages from iPhone to MacOS
# 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