Skip to main content

get_finders

Iterates through the paths defined in the STATICFILES_FINDERS setting and yields an instance of each static file finder.

def get_finders() - > generator

Yields instantiated static file finder objects based on the paths defined in the project settings. Callers use this to iterate through all configured mechanisms for locating static assets across the application.

Returns

TypeDescription
generatorA generator yielding initialized static file finder instances.