this script helps convert images from .HEIC format to .jpg for upload to CampusPulse Access
pipenv run python3 ./heif.py <source image path> <destination image path>
for file in ../path/to/images/*.HEIC; do pipenv run python3 ./heif.py $file ${file/%.HEIC/.jpg}; done