is_django_module
Return True if the given module is nested under Django.
def is_django_module(
module: module
) - > boolean
Return True if the given module is nested under Django.
Parameters
| Name | Type | Description |
|---|---|---|
| module | module | The Python module object to be checked for a Django-based namespace |
Returns
| Type | Description |
|---|---|
boolean | True if the module's name indicates it is a submodule of the Django framework, False otherwise |