Metadata-Version: 2.1
Name: easy-terminal
Version: 0.0.0.4
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-terminal

**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-terminal`

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_terminal import terminal


@terminal()
def test1():
	do_action_here


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

```

### This lib make you run python function in a terminal
