Skip to content

Instantly share code, notes, and snippets.

@odwrotnie
Created November 12, 2012 19:38
Show Gist options
  • Save odwrotnie/4061429 to your computer and use it in GitHub Desktop.
Save odwrotnie/4061429 to your computer and use it in GitHub Desktop.
Django save image from URL
class Picture(models.Model):
image = models.ImageField(upload_to = 'realestate/', null = True, blank = True)
...
picture = Picture.objects.create(image = File(open(urllib.urlretrieve(path)[0])))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment