Skip to content

Latest commit

 

History

History
executable file
·
18 lines (16 loc) · 425 Bytes

README.md

File metadata and controls

executable file
·
18 lines (16 loc) · 425 Bytes

Image Uploader

Extract Exif GPS tags from image metadata store them in Postgresql and upload image to DigitalOcean Spaces. (Probably only works on JPG)

  1. Clone the repository

  2. Create a python 3 virtual environment

mkvirtualenv image_upload
  1. Install required python libraries
cd image_uploader
pip install -r requirements.txt
  1. Run
for file in *.jpg; do python image_upload.py -i $file; done