module documentation

Undocumented

Class AppDirectoriesFinder A static files finder that looks in the directory of each app as specified in the source_dir attribute.
Class BaseFinder A base file finder to be used for custom staticfiles finder classes.
Class BaseStorageFinder A base static files finder to be used to extended with an own storage class.
Class DefaultStorageFinder A static files finder that uses the default storage backend.
Class FileSystemFinder A static files finder that uses the ``STATICFILES_DIRS`` setting to locate files.
Function find Find a static file with the given path using all enabled finders.
Function get_finder Import the staticfiles finder class described by import_path, where import_path is the full Python path to the class.
Function get_finders Undocumented
Variable searched_locations Undocumented
def find(path, all=False): (source)

Find a static file with the given path using all enabled finders. If ``all`` is ``False`` (default), return the first matching absolute path (or ``None`` if no match). Otherwise return a list.

@functools.lru_cache(maxsize=None)
def get_finder(import_path): (source)

Import the staticfiles finder class described by import_path, where import_path is the full Python path to the class.

def get_finders(): (source)

Undocumented

searched_locations: list = (source)

Undocumented