bitte entschuldige mich für mein hässliches englisch ;-)
Stellen Sie sich dieses sehr einfache Modell vor:
class Photo(models.Model):
image = models.ImageField('Label', upload_to='path/')
Ich möchte ein Foto aus einer Bild-URL erstellen (dh nicht von Hand auf der Django-Administrationsseite).
Ich denke, dass ich so etwas tun muss:
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)
Ich hoffe, dass ich das Problem gut erklärt habe, wenn nicht, sag es mir.
Danke :)
Bearbeiten:
Das mag funktionieren, aber ich weiß nicht, wie ich content
in eine Django-Datei konvertieren soll:
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
Objekt?