Skip to main content

Introspection tools for Django

Project description

Django Introspection

Introspection tools for Django

Install

pip install django-introspection

Usage

from introspection.inspector import inspect

# get a list of apps objects:
apps = inspect.apps()
# get a list of apps names:
apps = inspect.app_names()
# get a list of models objects:
models = inspect.models("auth")

# get info about an app:
app_info = inspect.app("auth")

# get info about a model:
model_info = inspect.model("auth", "User")

Management command

Print details about a model or app

# inspect an app
python3 manage.py inspect auth
# or for a model
python3 manage.py inspect auth.User

Output:

========================================================
                  Fields
========================================================
# Found 14 fields: 
profile OneToOneField with related name user 
id AutoField 
password CharField 
last_login DateTimeField 
is_superuser BooleanField 
username CharField 
first_name CharField 
last_name CharField 
email CharField 
is_staff BooleanField 
is_active BooleanField 
date_joined DateTimeField 
groups ManyToManyField with related name user 
user_permissions ManyToManyField with related name user 
========================================================
                  Relations
========================================================
# Found 5 external relations : 
admin.LogEntry.user from auth.User.id ManyToOneRel  
account.EmailAddress.user from auth.User.id ManyToOneRel  
socialaccount.SocialAccount.user from auth.User.id ManyToOneRel  
reversion.Revision.user from auth.User.id ManyToOneRel  
polls.Vote.user from auth.User.id ManyToOneRel  
========================================================
                  Instances
========================================================
# Found 558 instances of User

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-introspection-0.5.2.tar.gz (11.6 kB view hashes)

Uploaded Source

Built Distribution

django_introspection-0.5.2-py3-none-any.whl (14.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page