easy-debug


Nameeasy-debug JSON
Version 0.0.2 PyPI version JSON
download
home_pagehttps://github.com/ThePhoenix78/easy-debug
SummaryA tool that help live debugging
upload_time2023-02-07 22:42:32
maintainer
docs_urlNone
authorThePhoenix78
requires_python
licenseMIT
keywords wrapper event debug
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ThePhoenix78/easy-debug",
    "name": "easy-debug",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "wrapper,event,debug",
    "author": "ThePhoenix78",
    "author_email": "thephoenix788@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/eb/37/3943167e8869c1b3c4bd46f699632c184f1a17dd4ea659291f6d4d9d67d4/easy-debug-0.0.2.tar.gz",
    "platform": null,
    "description": "# easy-debug\r\n\r\n**A library that help you to debug the code in terminal**\r\n\r\n## Getting started\r\n\r\n1. [**Installation**](#installation)\r\n2. [**Usages**](#usages)\r\n3. [**Code example**](#code-example)\r\n4. [**Documentation**](#documentation)\r\n\r\n## Installation\r\n\r\n`pip install easy-debug`\r\n\r\nGitHub : [Github](https://github.com/ThePhoenix78/easy-debug)\r\n\r\n\r\n## Usages\r\n\r\nAdd the @debug() before the function you want to try in the terminal\r\n\r\n## Code example\r\n\r\n```py\r\nfrom easy_debug import debug\r\n\r\n\r\n@debug()\r\ndef test1():\r\n\tdo_action_here\r\n\r\n\r\n@debug()\r\nasync def test1(arg1, arg2, *, arg3):\r\n\tdo_action_here\r\n\r\n```\r\n\r\n### The debug lib works for sync and async function in terminal\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A tool that help live debugging",
    "version": "0.0.2",
    "split_keywords": [
        "wrapper",
        "event",
        "debug"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7601782fb5c5749dab630a49c77990de7da2ee01ef0f9fd86a88ff5f54d7daaf",
                "md5": "64a1d16c095554ba840505c268e44ea7",
                "sha256": "87b70ee1fb71d6e7e5036ae86eda55f4597fd58a463904b1cc42db0c649f81b3"
            },
            "downloads": -1,
            "filename": "easy_debug-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "64a1d16c095554ba840505c268e44ea7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 2425,
            "upload_time": "2023-02-07T22:42:30",
            "upload_time_iso_8601": "2023-02-07T22:42:30.485968Z",
            "url": "https://files.pythonhosted.org/packages/76/01/782fb5c5749dab630a49c77990de7da2ee01ef0f9fd86a88ff5f54d7daaf/easy_debug-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb373943167e8869c1b3c4bd46f699632c184f1a17dd4ea659291f6d4d9d67d4",
                "md5": "9bd28c29993df221a75b9b5ba9a48dea",
                "sha256": "56289dad243535f8af7c35af1838cae02e0d8bfc2fd9f7c44f395f102036392e"
            },
            "downloads": -1,
            "filename": "easy-debug-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "9bd28c29993df221a75b9b5ba9a48dea",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2310,
            "upload_time": "2023-02-07T22:42:32",
            "upload_time_iso_8601": "2023-02-07T22:42:32.280045Z",
            "url": "https://files.pythonhosted.org/packages/eb/37/3943167e8869c1b3c4bd46f699632c184f1a17dd4ea659291f6d4d9d67d4/easy-debug-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-07 22:42:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "ThePhoenix78",
    "github_project": "easy-debug",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "easy-debug"
}
        
Elapsed time: 0.04117s