Skip to content

Instantly share code, notes, and snippets.

@honghuynhit
Last active August 30, 2023 16:29
Show Gist options
  • Save honghuynhit/fc55666faf753a155960507ad516746d to your computer and use it in GitHub Desktop.
Save honghuynhit/fc55666faf753a155960507ad516746d to your computer and use it in GitHub Desktop.
Import all models in Django shell of all apps

--> After open Django shell

from django.apps import apps
for _class in apps.get_models():
  if _class.__name__.startswith('Historycal'):
    continue
  globals()[_class.__name__] = _class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment