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 !
|
| |||
|
feedback
|
|
Issue is here Django: add image in an ImageField from image url And remember about using urllib2 instead of urllib :) | |||
|
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 | |||
feedback
|