def get_user_by_id(fbid): """ TODO: get description """ try: user = User.objects.get(user_id=fbid) except User.DoesNotExist: user = None return user