Class ProjectState
Represent the entire project's overall state. This is the item that is passed around - do it here rather than at the app level so that cross-app FKs/etc. resolve properly.
Declaration
class ProjectState
source linkDocumentation
Methods
▷ def __init__(self, models=None, real_apps=None) ▷ def apps(self) @cached_property @cached_property
def apps(self)
▷ def clone(self) Return an exact copy of this ProjectState.
@property
def concrete_apps(self)
▷ def reload_model(self, app_label, model_name, delay=False)
Class methods
▷ def from_apps(cls, apps) @classmethod Take an Apps and return a ProjectState matching it.
@classmethod
def from_apps(
cls,
apps,
)
Reexports