Metadata-Version: 2.1
Name: verbose-print
Version: 0.0.2
Summary: Verbose printing utility library
Home-page: https://github.com/ZachElkins/VPrint
Author: Zachary Elkins
Author-email: zach.elkins@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/ZachElkins/VPrint
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
License-File: LICENSE
Provides-Extra: testing
Requires-Dist: pytest (>=6.0) ; extra == 'testing'
Requires-Dist: pytest-cov (>=2.0) ; extra == 'testing'
Requires-Dist: mypy (>=0.910) ; extra == 'testing'
Requires-Dist: flake8 (>=3.9) ; extra == 'testing'
Requires-Dist: tox (>=3.24) ; extra == 'testing'

# VPrint

![Tests](https://github.com/ZachElkins/VPrint/actions/workflows/tests.yml/badge.svg)

Verbose printing utility for python.

Check it out on [pypi.org](https://pypi.org/project/verbose-print/0.0.1/)!
### Installation and usage

`pip install verbose-print==0.0.1`
```python3
import verbose_print.vprint as vp

def main():
    v = True
    e = "!"
    vp.vprint("Hello", "World", verbose=v, end=e)

if __name__ == "__main__":
    main()
```


