I have a question, i've got an ImageField in my model, i wanna upload this image from url example http://www.google.com/images/logos/ps_logo2.png, how can I do that ? Thanks !

link|improve this question
feedback

2 Answers

Issue is here Django: add image in an ImageField from image url And remember about using urllib2 instead of urllib :)

link|improve this answer
feedback

You'll need to download the image at that URL first, and then save it as normal. If doing this in code (as opposed to through a ModelForm or the admin), you can use urllib2 to download the image.

link|improve this answer
Yes, i thought so but, what if i've downloaded it ? What then ? Can You help me with that ? – Łukasz Kurowski Jan 25 '11 at 2:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.