Metadata-Version: 2.1
Name: sql-inspector-tool
Version: 1.0.1
Summary: A Django middleware package to print out queries to the terminal
Author: CodeBreaker
License: MIT
Project-URL: Homepage, https://github.com/LouayTawfik/sqlmiddleware
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pygments>=2.18.0
Requires-Dist: sqlparse>=0.5.1

Sql inspector tool
==================
A simple middleware tool for analyzing Django ORM SQL execution.

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

```
sql-inspector-tool.middleware.sql_middleware
```

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