decouple import config

2023-02-21 Thread Taufiq Subijantoro
from decouple import config ImportError: cannot import name 'config' from 'decouple' (C:\Users\taufi\AppData\Local\Programs\Python\Python311\Lib\site-packages\decouple\__init__.py) "How to fix the problem mentioned in the error message: ThankYou -- You received this message because you are

Re: dynamically added INSTALLED_APPS

2023-02-21 Thread Christian González
Am 21.02.23 um 14:57 schrieb Jason Johns: I'd be a -1 on dynamic modification with installed apps.  that's the developer's responsibility to add in, and should be implicit by design. No, that's not IMHO. In my use case (and e.g. Pretix' too, which is a great Django use case IMHO) I need a base

Re: dynamically added INSTALLED_APPS

2023-02-21 Thread Jason Johns
I'd be a -1 on dynamic modification with installed apps. that's the developer's responsibility to add in, and should be implicit by design. The list of apps needs to come somewhere via configuration, and django defines that configuration to be done explicitly. I be;ieve some of the major