Skip to content

Instantly share code, notes, and snippets.

@raphapassini
Created October 29, 2015 12:25
Show Gist options
  • Save raphapassini/6e0c8d912c0d49c6e2c6 to your computer and use it in GitHub Desktop.
Save raphapassini/6e0c8d912c0d49c6e2c6 to your computer and use it in GitHub Desktop.
# models.py
class User(Document):
image = ImageField()
# views.py
image = open('/path/to/your/file', 'rb')
user = User()
user.image.put(image, content_type = 'image/jpeg')
user.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment