pycloudinary icon indicating copy to clipboard operation
pycloudinary copied to clipboard

Python package for cloudinary

Results 25 pycloudinary issues
Sort by recently updated
recently updated
newest added

Django recommends [1] storing static files under a folder matching the app name, eg. `my_app/static/my_app/example.jpg`. Why is this useful? Because all static folders from all apps will be merged into...

## Bug report for Cloudinary Python SDK Before proceeding, please update to the latest version and test if the issue persists ## Describe the bug in a sentence or two....

## Bug report for Cloudinary Python SDK Before proceeding, please update to the latest version and test if the issue persists ## Describe the bug in a sentence or two....

Hello, I'm ussing the CloudinaryField in model to upload the image in my project but today I need add more options like "quality" so I implemented CloudinaryFileField in forms, it's...

# Feature request for Cloudinary Python SDK ## Explain your use case At the moment, specifying allowed_formats only raises a general Error when the file is of the wrong file...

The already existing basic script was good but I found it too much detailed and hard to understand at first glance. So, I made two simple script one for uploading...

I used Django package cloudinary==1.19.1 `models.py` ``` class Category(models.Model): name = models.CharField(max_length=255) url = models.CharField(max_length=255) image = CloudinaryField(null=True) image_source=models.CharField() ``` I want to use the image field to accept images...

question