Skip to content

Instantly share code, notes, and snippets.

View osorionicolas's full-sized avatar

Nicolás Osorio osorionicolas

View GitHub Profile
@osorionicolas
osorionicolas / resize_image.py
Last active January 24, 2022 17:50
Python - Resize Image (with S3 integration)
import boto3
import os
import sys
import uuid
from PIL import Image
import PIL.Image
s3_client = boto3.client('s3')
def resize_image(image_path, resized_path):