Skip to content

Instantly share code, notes, and snippets.

@goutomroy
Created June 7, 2019 21:33
Show Gist options
  • Save goutomroy/21b4f7dd9123905788712f06dc0aa23f to your computer and use it in GitHub Desktop.
Save goutomroy/21b4f7dd9123905788712f06dc0aa23f to your computer and use it in GitHub Desktop.
try:
one_entry = Entry.objects.get(blog=2000)
except Entry.DoesNotExist:
# query did not match to any item.
pass
except Entry.MultipleObjectsReturned:
# query matched multiple items.
pass
else:
# query matched to just one item
print(one_entry)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment