Metadata-Version: 2.1
Name: easy-terminal
Version: 0.0.0.2
Summary: A tool that help live debugging
Home-page: https://github.com/ThePhoenix78/easy-debug
Download-URL: https://github.com/ThePhoenix78/easy-debug/tarball/master
Author: ThePhoenix78
Author-email: thephoenix788@gmail.com
License: MIT
Keywords: wrapper,event,debug
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# easy-debug

**A library that help you to debug the code in terminal**

## Getting started

1. [**Installation**](#installation)
2. [**Usages**](#usages)
3. [**Code example**](#code-example)
4. [**Documentation**](#documentation)

## Installation

`pip install easy-debug`

GitHub : [Github](https://github.com/ThePhoenix78/easy-debug)


## Usages

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

## Code example

```py
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
