Metadata-Version: 2.2
Name: dd_tmgbedu
Version: 0.1.0
Summary: The missing `dd` function in python.
Author-email: Bedram Tamang <tmgbedu@gmail.com>
Project-URL: Homepage, https://github.com/bedus-creation/python_dd
Project-URL: Issues, https://github.com/bedus-creation/python_dd/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# Python `dd`
The missing `dd` function in python. The `dd` function is abbreviation of die and dump, which means prints the variable and stop the executions. Here, another, `dump` function is provided, which just prints the variable, and doesn't stop the execution.

![](./docs/screen.png)



## Installation
```
pip install python_dd
```

### Uses

```python
from src.dd_tmgbedu.dd import dd

dd("Hello")
dd(1)
dd(True, True, False, 1, 2)
```

or

```python
from src.dd_tmgbedu.dd import dump

dump("Hello")
dump(1)
dump(True, False, 1, 2)
```

