django-cloudinary-storage
django-cloudinary-storage copied to clipboard
Django package that provides Cloudinary storages for both media and static files as well as management commands for removing unnecessary files.
For some reason https://github.com/klis87/django-cloudinary-storage/blob/master/cloudinary_storage/storage.py#L83 doesnt work anymore for raw files, at least according to tests. For example below url for some reason gets 404 https://res.cloudinary.com/dri8awewt/raw/upload/v1/static/bd5f98a5-4524-408f-882f-fe31786c9ab7 during tests, but when I...
I am storing a profile picture for each user in our database. ``` class User(AbstractBaseUser, PermissionsMixin): profile_picture = models.ImageField( upload_to="profile_picture/", blank=True, null=True, ) ``` Now, I would like to return...
Hi, first thanks for the amazing project! I want to upload my files in private mode, so they are only accessible by my application, is it possible with this backend?...
Hello i am trying to upload a video to cloudinary but i keep getting this error `Traceback (most recent call last): File "/home/otchere-dev/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 47, in inner response = get_response(request)...
I was trying to upload image to cloudinary by decreasing the quality of image. I run into this error while uploading image. ## Code ### Models.py ```python class MyModel(models.Model): image...
Fixes #24 # What does this do? - Adds Poetry and pyproject.toml to replace requirements.txt and setup.py - I believe all attributes have been ported - notice how it's quite...
When uploading videos I get the cannot find valid magic files error if i use Filefield and if I use imagefield i get upload a valid image error
As discussed in https://github.com/klis87/django-cloudinary-storage/pull/22
An example of this is when you want to avoid adding a suffix for every filename you to add `unique_filename: False` in the dictionary value of `options` variable in `_upload`....
Hey thanks for creating what I believe is the correct way to do this! I'd like to request the ability to specify upload options: My specific use-case is [incoming transformations](https://cloudinary.com/documentation/upload_images#incoming_transformations)....