Metadata-Version: 2.1
Name: dumptool
Version: 0.0.1
Summary: A small mathematics library
Home-page: https://github.com/MidoAhmed/dumptool
Author: MEK
Author-email: plural.xamp@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

Python objects introspection

This is a simple tool like Python's support for introspection, the ability to examine objects.
While not needed in every program, introspection can be the key to elegant designs and debugging complex problems.

> installation:

```
pip install dumptool
```

> Usage:

```
from dumptool import dump

obj = SimpeObject()
dump(obj)

```


