1

2

3

4

5

6

7

8

9

10

from cartmodel import * 

from ordermodel import * 

from productmodel import * 

from shop.order_signals import * 

from shop.util.loader import load_class 

 

""" 

Load the class specified by the user as the Address Model. 

""" 

AddressModel = load_class(getattr(settings, 'SHOP_ADDRESS_MODEL', 'shop.addressmodel.models.Address'))