Login

Get object/list or None

Author:
lokesh
Posted:
September 2, 2009
Language:
Python
Version:
1.1
Score:
-1 (after 3 ratings)
  1. Function - get_obj_or_none Returns an object or a None Value

  2. 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

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 1 week ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 11 months, 3 weeks ago

Comments

Please login first before commenting.