Skip to content

Instantly share code, notes, and snippets.

@micksmix
Last active September 5, 2022 17:37
given a redfin home url, download all pictures
#!/usr/bin/env bash
while getopts u: flag
do
case "${flag}" in
u) url=${OPTARG};;
esac
done
wget --user-agent="Mozilla" -O - $url | egrep -o "https:\\\\u002F\\\\u002Fssl.cdn-redfin.com\\\\u002Fphoto\\\\u002F\d*\\\\u002Fbigphoto\\\\u002F\d*\\\\u002F[A-Z0-9_]*.jpg" | ascii2uni -Z '\u%04X' | xargs wget --user-agent="Mozilla"
@Malini2022
Copy link

How to download photos from Redfin?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment