django-s3-storage
django-s3-storage copied to clipboard
Django Amazon S3 file storage.
Hi @etianen, A pleasure to talk to you. I used `django-reversion` in the past and now I just found `django-s3-storage` very useful for my new project. I think you are...
The pre-signed url signature changes each time a file is requested since it's always created at a different moment. Can I cache the pre-signed url so that it's not generated...
Do you know of a way I could calculate the sha1 hash of a file prior to upload? My old code (before moving files to s3) looked like this: ```...
The current implementation to save/upload files to S3 uses the `put_object` boto3 method. ```python self.s3_connection.put_object(Body=content.read(), **put_params) ``` Unfortunately, this method has restrictions/thresholds imposed on it via the AWS API, namely...
Creating a new session each time S3Storage is instantiated creates a memory leak. It seems that S3Storage can get created a bunch of times (I'm seeing it get created again...
django version: 2.0.2 django-s3-storage version: 0.12.4 boto3 version: 1.6.3 Uploading a file then accessing the url results in a 403 error with the message: ``` The request signature we calculated...
I have an image field in django model. before i save the image from the form, i want to resize and crop image and then only to save in s3...
How can I set the location of the static files? I've done this before when using `django-storages` but I'm not sure how it works with this package. This is how...
I tried to configure it to work with yandex but I kept getting `The AWS Access Key Id you provided does not exist in our records.` keep in mind that...
**When I save in local it keeps me well in S3 but when it is running with lamda I get the following error. I've used with django 1.11 and python...