[Django]-Access AppConfig members

6👍

From the docs:

>>> from django.apps import apps
>>> apps.get_app_config('admin').verbose_name
'Admin'

https://docs.djangoproject.com/en/1.10/ref/applications/

Leave a comment