Metadata-Version: 2.1
Name: qdbg
Version: 0.1.0
Summary: a quick debugging cli tool
Home-page: https://github.com/hermgerm29/qdbg
License: MIT
Keywords: debugging,search
Author: Jimmy Herman
Author-email: jimmyherman29@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/hermgerm29/qdbg
Description-Content-Type: text/markdown

![PyPI](https://img.shields.io/pypi/v/qdbg)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/qdbg)
![GitHub top language](https://img.shields.io/github/languages/top/hermgerm29/qdbg)
[![Build Status](https://scrutinizer-ci.com/g/hermgerm29/qdbg/badges/build.png?b=main)](https://scrutinizer-ci.com/g/hermgerm29/qdbg/build-status/main)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/hermgerm29/qdbg/badges/quality-score.png?b=main)](https://scrutinizer-ci.com/g/hermgerm29/qdbg/?branch=main)
[![codecov](https://codecov.io/gh/hermgerm29/qdbg/branch/main/graph/badge.svg?token=2NV84UI94K)](https://codecov.io/gh/hermgerm29/qdbg)
![GitHub](https://img.shields.io/github/license/hermgerm29/qdbg?color=blue)


# qdbg
Quick debug tool - a general purpose CLI debugging utility

## Introduction

![qdbg-demo-gif](./assets/qdbg-demo.gif)

Eliminate the wasted clicks and keystrokes involved with copying your error messages into a search bar. `qdbg` does this tedious task for you (and we know you do it a lot :wink:). Simply run any command, and when your program inevitably fails, `qdbg` will automatically open a search tab for you.

```bash
qdbg <cmd>
```

In the unlikely event that your program runs successfully, `qdbg` will stay out of your way.


## Requirements

* A developer that runs faulty programs
* Python 3.7+
* Linux or OSX operating system
* A functioning web browser

## Dependencies

`qdbg` is implemented only using the Python3 standard library. The package does have a few developer dependencies, including [python-poetry](https://github.com/python-poetry/poetry), that are listed in `pyproject.toml`.


## Installation

### OSX / Linux (recommended)

```bash
curl -sSL https://raw.githubusercontent.com/hermgerm29/qdbg/main/get-qdbg.py | python -
```

### Windows

Not supported.

### PyPI

[qdbg](https://pypi.org/project/qdbg/) is available on PyPI, but the recommended install method is preferred.

## Credits

`qdbg`'s installation script is heavily derived from [python-poetry](https://github.com/python-poetry/poetry).

