easy-debug

A tool that help live debugging


Keywords
wrapper, event, debug
License
MIT
Install
pip install easy-debug==0.0.2

Documentation

easy-debug

A library that help you to debug the code in terminal

Getting started

  1. Installation
  2. Usages
  3. Code example
  4. Documentation

Installation

pip install easy-debug

GitHub : Github

Usages

Add the @debug() before the function you want to try in the terminal

Code example

from easy_debug import debug


@debug()
def test1():
	do_action_here


@debug()
async def test1(arg1, arg2, *, arg3):
	do_action_here

The debug lib works for sync and async function in terminal