Metadata-Version: 2.1
Name: d33ps3curity-sql-tools
Version: 1.0.6
Summary: A Django middleware package to print out queries to the terminal
Author-email: Ajay-2007 <d33ps3curity@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/Ajay-2007/django-sql-middleware-package/
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# d33ps3curity-sql-tools

A simple middleware tool for analyzing Django ORM SQL execution. You can learn how to build this middleware package by following the steps below.

# Usage

Add the follow line of code to your middleware in your project settings.py file.

```
d33ps3curity-sql-tools.middleware.new_middleware
```

# How it works

The tool uses Django built in features to inspect the SQL generated from queries executed by the application. 3rd party tools are used to format and highlight the SQL presented in the terminal window.
