import logging from django.conf.urls import url from django.core.exceptions import ObjectDoesNotExist, MultipleObjectsReturned from tastypie import fields from tastypie.http import HttpGone, HttpMultipleChoices from tastypie.resources import ModelResource from tastypie.utils import trailing_slash class BackboneCompatibleResource(ModelResource): logger = logging.getLogger(__name__) pass