-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pycloudinary does not implement Django's storage API #37
Comments
Has anyone started work on this? I was thinking about it. May or may not have the time to do so. |
If anyone still needs Cloudinary storages, I've made a package providing those (both for static and media files) - https://github.com/klis87/django-cloudinary-storage . It also has management commands to clean unnecessary files. I hope you will find it useful. |
Using the storages api is definitely the "django way" to handle media and should be a priority as it means that it would work well with a lot of other supplied & 3rd party components. I'm unfortunately forced to add this caveat to recommendations that I give to colleagues & folks on the django irc which is a shame because the platform itself is nice. (Although django-cloudinary-storage does look promising!) |
+1 really need this. All my projects have a local environment which stores media files on my local file system thanks to the Django Storages API. The Cloudinary image field breaks that. |
The
CloudinaryField
is not aFileField
which makes it harder to upload images with Django.Creating a custom storage backend is not that hard.
See the documentation for details.
The text was updated successfully, but these errors were encountered: