cloudinary / cloudinary/pycloudinary

How to use CloudinaryField to accept images/url from other sources?

Open
#233 2 comments 0 reactions 1 assignee Claimed by @lukitsbrian View on GitHub
question
Dominant language
Python
Stars
262
Forks
134
Avg merge
5h 6m
Merged PRs (30d)
5

Description

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 that uploaded from admin, also some of my background tasks add the image URLs to that field depends on the image_source.

Possible image sources are: Google, Facebook, cloudinary or CloudFront

For example: When the image source is from google, I just want to save the complete image URL() instead of uploading the actual image to cloudinary and saving the id

How do I achieve this?

@brian-cloudinary @const-cloudinary @cloudinary @CloudinaryLtd

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.