<https://django-configurations.readthedocs.io/> in...
# random
j
https://django-configurations.readthedocs.io/ interesting new pattern to configure Django applications given that Kedro settings are modeled after Django, would be interesting to evaluate the pros and cons of this approach
Copy code
# mysite/settings.py

from configurations import Configuration

class Dev(Configuration):
    DEBUG = True
d
pydantic vibes
j
yep, very similar to pydantic-settings indeed