Created
August 5, 2025 18:22
-
-
Save bryanroscoe/12714e5b86d17cdad5aaf6e28fe3c732 to your computer and use it in GitHub Desktop.
Procare download
This file contains hidden or 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
| # Parse the HAR file to get just the URLs | |
| grep thumb schools.procareconnect.com.har | grep "url" | cut -d '"' -f 4 > image_links | |
| # Replace the resultant thumbnail links with the main picture links | |
| sed -i.bak 's/thumb/main/g' image_links | |
| # Download the images | |
| for i in $(cat ./image_links); do wget $i; done | |
| # Rename the image files | |
| for i in $(ls); do mv $i $(echo $i | cut -d \? -f1); done |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Log into your procare website and load all monthly photos while keeping network tracking for images on. Then download the .har file and you can run this on it.
Edited from https://ratil.life/bulk-download-photos-from-procare/#/portal/signup