Skip to content

Instantly share code, notes, and snippets.

@bryanroscoe
Created August 5, 2025 18:22
Show Gist options
  • Select an option

  • Save bryanroscoe/12714e5b86d17cdad5aaf6e28fe3c732 to your computer and use it in GitHub Desktop.

Select an option

Save bryanroscoe/12714e5b86d17cdad5aaf6e28fe3c732 to your computer and use it in GitHub Desktop.
Procare download
# 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
@bryanroscoe
Copy link
Author

bryanroscoe commented Aug 5, 2025

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

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