Metadata-Version: 2.1
Name: debugtoolkit
Version: 0.1
Summary: DebugToolkit is a versatile Python package designed for debugging
Home-page: https://github.com/andrijdavid/python-debugtoolkit/
Author: Andrij David
Author-email: david@geek.mg
License: BSD-2-Clause
Project-URL: Documentation, https://python-debugtoolkit.readthedocs.io
Project-URL: Source, https://github.com/andrijdavid/python-debugtoolkit
Project-URL: Tracker, https://github.com/pyscaffold/pyscaffold/issues
Project-URL: Download, https://pypi.org/project/debugtoolkit/#files
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
License-File: LICENSE.txt
Requires-Dist: psutil
Requires-Dist: importlib-metadata ; python_version < "3.8"
Provides-Extra: testing
Requires-Dist: setuptools ; extra == 'testing'
Requires-Dist: pytest ; extra == 'testing'
Requires-Dist: pytest-cov ; extra == 'testing'

[![Project generated with PyScaffold](https://img.shields.io/badge/-PyScaffold-005CA0?logo=pyscaffold)](https://pyscaffold.org/)
[![Coveralls](https://img.shields.io/coveralls/github/andrijdavid/python-debugtoolkit/main.svg)](https://coveralls.io/r/andrijdavid/python-debugtoolkit)
[![PyPI-Server](https://img.shields.io/pypi/v/python-debugtoolkit.svg)](https://pypi.org/project/python-debugtoolkit/)
[![Conda-Forge](https://img.shields.io/conda/vn/conda-forge/python-debugtoolkit.svg)](https://anaconda.org/conda-forge/python-debugtoolkit)
[![ReadTheDocs](https://readthedocs.org/projects/python-debugtoolkit/badge/?version=latest)](https://python-debugtoolkit.readthedocs.io/en/stable/)
[![Monthly Downloads](https://pepy.tech/badge/python-debugtoolkit/month)](https://pepy.tech/project/python-debugtoolkit)

# python-debugtoolkit

> DebugToolkit is a versatile Python package designed for debugging

This library provides decorators to log various aspects of function execution. It includes decorators to log input arguments, execution time, garbage collection counts, and resource usage.

## Installation

``` pip install debugtoolkit ```

## Usage
To use these decorators, simply import the decorators library and use the @ symbol followed by the decorator name before the function definition. For example:

```python
import debugtoolkit


@debugtoolkit.log_inputs
def my_function(a, b):
    return a + b
```
This will log the input arguments every time my_function is called.

### Contributing

Contributions are welcome. Please submit a pull request with any improvements.
