How Can We Make Image Uploads in Django Better Without Slowing Down the API? [closed]

I'm creating a fashion marketplace app in which designers have the opportunity to upload visual representations of their clothing and accessories by a unique photo. I use Django and I want to make sure that image uploads don't reduce the API's performance. It is necessary to have an effect that is not very good for the user and it also increases the cost of the storage. What are the measures we can undertake to minimize the inconveniences caused by uploading images in Django without the need of consuming high storage and still being speedy? How about I check the possibility of using Amazon S3 as a storage system for images, or are there other techniques to handle images in a Python web framework that might perform better?

Back to Top