-
Function - get_obj_or_none Returns an object or a None Value
-
Function - get_list_or_none Returns a list object or None Value
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from django.shortcuts import _get_queryset
def get_obj_or_none(klass, *args, **kwargs):
queryset = _get_queryset(klass)
try:
return queryset.get(*args, **kwargs)
except:
return None
def get_list_or_none(klass, *args, **kwargs):
queryset = _get_queryset(klass)
obj_list = list(queryset.filter(*args, **kwargs))
if not obj_list:
return None
return obj_list
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 9 months, 3 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months ago
- Serializer factory with Django Rest Framework by julio 1 year, 4 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 5 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.