excusez-moi pour mon anglais laid ;-)
Imaginez ce modèle très simple:
class Photo(models.Model):
image = models.ImageField('Label', upload_to='path/')
Je voudrais créer une photo à partir d'une URL d'image (c'est-à-dire pas à la main sur le site d'administration de django).
Je pense que je dois faire quelque chose comme ça:
from myapp.models import Photo
import urllib
img_url = 'http://www.site.com/image.jpg'
img = urllib.urlopen(img_url)
# Here I need to retrieve the image (as the same way that if I put it in an input from admin site)
photo = Photo.objects.create(image=image)
J'espère avoir bien expliqué le problème, sinon dites-moi.
Merci :)
Éditer :
Cela peut fonctionner mais je ne sais pas comment convertir content
un fichier django:
from urlparse import urlparse
import urllib2
from django.core.files import File
photo = Photo()
img_url = 'http://i.ytimg.com/vi/GPpN5YUNDeI/default.jpg'
name = urlparse(img_url).path.split('/')[-1]
content = urllib2.urlopen(img_url).read()
# problem: content must be an instance of File
photo.image.save(name, content, save=True)
im
objet?