Metadata-Version: 2.0
Name: visdebug
Version: 0.0.1
Summary: Visual utils for debugging
Home-page: https://github.com/theicfire/visdebug
Author: Chase Lambert
Author-email: t.heicfire@gmail.com
License: MIT
Keywords: debugging development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Debug Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: colorama
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'

Some Debugging Utilities
=======================

Right now there's just one:
parr(array, indexes)
This will print the array, and color each index of indexes in array.

For example:
parr([5, 6, 9], [1]) Will print "5 6 9", where 6 has a grey background.


