Metadata-Version: 2.1
Name: here_debugger
Version: 2.0.0
Summary: A user friendly debugger, just like print statement, but much more.
Home-page: https://github.com/Bibhash7/Here-Debugger
Author: Bibhash Ghosh
Author-email: tranceispermanemt@gmail.com
Project-URL: Bug Tracker, https://github.com/Bibhash7/Here-Debugger/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Here-Debugger
This user-friendly debugger simplifies the debugging process by accepting any number of variables and printing their names, values, and line numbers. It also offers options to add search text and include variable type information for enhanced clarity.

Pypi: https://pypi.org/project/here-debugger/

## Features:
- Prints variable names and values
- Displays line number of the variables
- Option to add search text
- Option to include variable type information

## Installation
To install the debugger, use:
```pip install here-debugger```

## Usage
1. Print variable names and values.
   ```
   from here_debugger.debug import here_debug
   a = 2
   b = "Bibhash"
   here_debug(a, b)
   ```
   Output:
   ```File: <current_file>: Line-4: a = 2 | b = Bibhash |```

2. Add search text:
    ```
   from here_debugger.debug import here_debug
   a = 2
   b = "Bibhash"
   here_debug(a,b, custom_search_text="Debug-")
   ```
   Output:
   ```Debug-: File: <current_file>: Line-4: a = 2 | b = Bibhash |```

3. Print variable type information:
   ```
   from here_debugger.debug import here_debug
   a = 2
   b = "Bibhash"
   c = [2,2]
   d = {}
   here_debugger(a,b,c,d, custom_search_text="Debug-", include_types=True)
   ```
   Output: ```Debug-: File: <current_file>: Line-6: a = 2, type = <class 'int'> | b = Bibhash, type = <class 'str'> | c = [2, 2], type = <class 'list'> | d = {}, type = <class 'dict'> | ```

4. Update: Now supports constants:
   ```
   from here_debugger.debug import here_debug
   a = 2
   here_debug(a,"Bibhash", custom_search_text="Debug-")
   ```
   Output:
   ```Debug-: File: <current_file>: Line-4: a = 2 | Bibhash |```

## Test Case Coverage: 98%
[![here-debugger-coverage-report.png](https://i.postimg.cc/859qd2Kv/here-debugger-coverage-report.png)](https://postimg.cc/5Y57bRM9)
