Simple python API end-point to add watermark on the image and upload to AWS-S3 (Simple Storage Service).
After cloning project to your local machine (make sure you have installed Python 3 on your machine),please run this commands in the root directory of project to set Amazon Credentials.
$ pip install awscli
$ aws configure
python app.py
curl --location --request POST 'http://127.0.0.1:5000/upload-image' \
--form 'file=@/directory/Downloads/hello.jpg' \
--form 'text=Watermark text'