내 추악한 영어로 실례합니다 ;-)
이 매우 간단한 모델을 상상해보십시오.
class Photo(models.Model):
image = models.ImageField('Label', upload_to='path/')
이미지 URL에서 사진을 만들고 싶습니다 (즉, django 관리 사이트에서 손으로하지 않음).
다음과 같이해야한다고 생각합니다.
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)
말하지 않더라도 문제를 잘 설명했으면합니다.
감사합니다 :)
편집하다 :
이것은 작동 할 수 있지만 content
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
에서 오는 목적은?