Metadata-Version: 2.1
Name: pytprint
Version: 0.2.4
Summary: UNKNOWN
Home-page: UNKNOWN
License: GNU GPL
Platform: UNKNOWN

# pytprint

Thread-safe print module for Python. It's exactly as simple as it sounds.

## Install

`pip install pytprint`

## Usage

```
print('not thread safe')
from pytprint import print
print('thread safe')
```


