Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 364 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 364 Bytes

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)