Metadata-Version: 2.1
Name: django-access-inspector
Version: 0.1.0
Summary: A tool to analyze your Django app access control
Home-page: https://github.com/BastienTeissier/django-access-inspector
License: MIT
Author: Bastien Teissier
Author-email: bastient@theodo.fr
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: rich (>=13.3.5,<14.0.0)
Project-URL: Repository, https://github.com/BastienTeissier/django-access-inspector
Description-Content-Type: text/markdown

# Django Access Inspector

Django Access Inspector is a comprehensive access control app for Django that helps you enforce fine-grained access control on your views. It provides a flexible and easy-to-use interface to check and analyze authentication and permission classes for each view in your Django project.

## Installation

Run one of the following command:

```
pip install django-access-inspector
```

```
poetry add django-access-inspector
```

Add "django_access_inspector" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...,
        "django_access_inspector",
    ]

## Run

```
python manage.py inspect_access_control
```

