Metadata-Version: 2.1
Name: dbgprint
Version: 1.0.2
Summary: A package for a python command line terminal debugger
Home-page: https://github.com/youhengzhou/dbgprint
Author: YouHeng Zhou
Author-email: youhengzhou@cmail.carleton.ca
Project-URL: Bug Tracker, https://github.com/youhengzhou/dbgprint/issues
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
License-File: LICENSE

# dbgprint

Debug Print is a handy command line print app used for debugging loops and variable changes over time.

It has features for tracking pivots in a while and for loop, and also print the information and data types of variables

Its dependencies are termcolor and colorama.

For python package: https://pypi.org/project/dbgprint/1.0.0/

For github repo: https://github.com/youhengzhou/dbgprint

# Download Package

`py -m pip install dbgprint -U`

## In Your Python Files

`import dbgprint`

# Commands

## Create command:

`dbgprint.data(dataContent, dataName, action)`
This will print the data's contents, the data's variable name, and the actions associated with the data at your discretion.
