çirkin ingilizcem için lütfen beni affedin ;-)
Bu çok basit modeli hayal edin:
class Photo(models.Model):
image = models.ImageField('Label', upload_to='path/')
Bir resim URL'sinden bir Fotoğraf oluşturmak istiyorum (yani, django yönetici sitesinde elle değil).
Bunun gibi bir şey yapmam gerektiğini düşünüyorum:
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)
Umarım bana söylemezseniz sorunu iyi açıkladım.
Teşekkür ederim :)
Düzenle :
Bu işe yarayabilir ancak content
bir django Dosyasına nasıl dönüştürüleceğini bilmiyorum :
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
gelen nesne?