
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
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/
To install the debugger, use:
pip install here-debugger
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 |
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 |
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'> |
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 |
FAQs
A user friendly debugger, just like print statement, but much more.
We found that here-debugger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.