-
-
Save troy/184547 to your computer and use it in GitHub Desktop.
| # usage: redfin-images "http://www.redfin.com/WA/Seattle/123-Home-Row-12345/home/1234567" | |
| function redfin-images() { | |
| wget -O - $1 | grep "full:" | awk -F \" '{print $4}' | xargs wget - | |
| } |
| wget -O - http://www.redfin.com/WA/Seattle/123-Home-Row-12345/home/1234567 | grep "full:" | awk -F \" '{print $4}' | xargs wget - |
Redfin seems to be blocking this now, getting 403 Forbiden
I created a lil Go program to do this https://github.com/timendez/go-redfin-archiver
Clone repo, and just run e.g. go run archive.go https://www.redfin.com/CA/San-Jose/206-Grayson-Ter-95126/home/2122534
@timendez I just tried your Go program and it worked great. Nice work!
For anyone else who encounters this gist: Strongly consider using @timendez's program instead: https://github.com/timendez/go-redfin-archiver
⬆️ @timendez's program still works in 2025, Thanks !!
go script still works in 2026, thanks!
I created a lil Go program to do this https://github.com/timendez/go-redfin-archiver
Clone repo, and just run e.g.
go run archive.go https://www.redfin.com/CA/San-Jose/206-Grayson-Ter-95126/home/2122534
Feb 4 2026, go script works for me! Thanks a bunch.
@punjabdhaputar Thanks, it works for me.