from oscar.apps.analytics.abstract_models import ( AbstractProductRecord, AbstractUserRecord, AbstractUserProductView, AbstractUserSearch) class ProductRecord(AbstractProductRecord): pass class UserRecord(AbstractUserRecord): pass class UserProductView(AbstractUserProductView): pass class UserSearch(AbstractUserSearch): pass from .receivers import * # noqa