Metadata-Version: 2.1
Name: masonite-debugbar
Version: 1.0.1
Summary: The Official Masonite Debugbar
Home-page: https://github.com/masoniteframework/debugbar
Author: Joe Mancuso
Author-email: joe@masoniteproject.com
License: MIT
Keywords: masonite framework debugging
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Framework :: Masonite
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: tabulate
Requires-Dist: jinja2 (>=3.0<3.1)
Provides-Extra: test
Requires-Dist: coverage ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'

# Masonite Debugbar

A Masonite Python Debugging Tool

<img width="1792" alt="Screen Shot 2022-01-17 at 6 53 40 PM" src="https://user-images.githubusercontent.com/20172538/149849594-f6d13c0a-51c5-4d10-91cc-c2cbddc98741.png">

# Install

First pip install:

```
$ pip install masonite-debugbar
```

Then add the debugbar provider to your providers list:

```python
from debugbar.providers import DebugProvider
PROVIDERS = [
    # ..
    DebugProvider,

]
```

Lastly, publish the provider:

```
$ python craft package:publish debugbar
```





