Django : ORM이 알고있는 모델 목록을 어떻게 찾을 수 있습니까?


답변:


175

간단한 솔루션 :

import django.apps
django.apps.apps.get_models()

기본적으로 apps.get_models()포함하지 마십시오

  • 명시적인 중간 테이블없이 다 대다 관계를위한 자동 생성 모델
  • 교체 된 모델.

이것도 포함하고 싶다면

django.apps.apps.get_models(include_auto_created=True, include_swapped=True)

Django 1.7 이전에는 대신 다음을 사용하십시오.

from django.db import models
models.get_models(include_auto_created=True)

include_auto_created매개 변수는 ManyToManyFields에 의해 암시 적으로 생성 된 테이블을 통해서도 검색되도록합니다.


2
: 당신은 단지 하나의 응용 프로그램의 모든 모델을 얻기도 같은 방법으로 할 수 있습니다 사용 stackoverflow.com/a/8702854/117268
에밀 Stenström

from django.apps.apps import get_models생산 ImportError: No module named 'django.apps.apps'... 어떤 아이디어?
aljabear

3
from django.apps import apps>>apps.get_models


7

모든 모델이 포함 된 사전을 원하는 경우 다음을 사용할 수 있습니다.

from django.apps import apps

models = {
    model.__name__: model for model in apps.get_models()
}

4

좋은 솔루션을 사용하지 않고 플레이하고 싶다면 python introspection으로 약간 플레이 할 수 있습니다.

import settings
from django.db import models

for app in settings.INSTALLED_APPS:
  models_name = app + ".models"
  try:
    models_module = __import__(models_name, fromlist=["models"])
    attributes = dir(models_module)
    for attr in attributes:
      try:
        attrib = models_module.__getattribute__(attr)
        if issubclass(attrib, models.Model) and attrib.__module__== models_name:
          print "%s.%s" % (models_name, attr)
      except TypeError, e:
        pass
  except ImportError, e:
    pass

참고 : 이것은 상당히 대략적인 코드입니다. 모든 모델이 "models.py"에 정의되어 있고 django.db.models.Model에서 상속한다고 가정합니다.



0

관리자 앱에 모델을 등록하면 관리자 문서에서 이러한 클래스의 모든 속성을 볼 수 있습니다.


0

다음은 데이터베이스에는 있지만 ORM 모델 정의에는없는 권한을 찾아 삭제하는 간단한 방법입니다.

from django.apps import apps
from django.contrib.auth.management import _get_all_permissions
from django.contrib.auth.models import Permission
from django.core.management.base import BaseCommand


class Command(BaseCommand):
    def handle(self, *args, **options):
        builtins = []
        for klass in apps.get_models():
            for perm in _get_all_permissions(klass._meta):
                builtins.append(perm[0])
        builtins = set(builtins)

        permissions = set(Permission.objects.all().values_list('codename', flat=True))
        to_remove = permissions - builtins
        res = Permission.objects.filter(codename__in=to_remove).delete()
        self.stdout.write('Deleted records: ' + str(res))
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.