module documentation

Undocumented

Variable searched​_locations Undocumented
Class ​App​Directories​Finder A static files finder that looks in the directory of each app as specified in the source_dir attribute.
Class ​Base​Finder A base file finder to be used for custom staticfiles finder classes.
Class ​Base​Storage​Finder A base static files finder to be used to extended with an own storage class.
Class ​Default​Storage​Finder A static files finder that uses the default storage backend.
Class ​File​System​Finder 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
searched_locations: list =

Undocumented

def find(path, all=False):

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):
Import the staticfiles finder class described by import_path, where import_path is the full Python path to the class.
def get_finders():

Undocumented