Lets say I have shipping app called Shipping which is used for ups and
fedex.
I want just using settings.py to enable/disable them.

The structure could be:
project
         shipping
                    modules
                          ups
                          fedex

And by putting in settings.py I could manage those modules
INSTALLED_APPS = (
  ....
  'shipping.modules.ups',
  'shipping.modules.fedex',
  ....
)

So what is the best way to have pluggable modules in app ?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to