Metadata-Version: 2.1
Name: print-python
Version: 0.1.5
Summary: Print Python client
Home-page: https://github.com/gduverger/print-python
Author: Georges Duverger
Author-email: georges.duverger@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Requires-Python: >=3
Description-Content-Type: text/markdown

# 🖨️ print-python

Python client for [`print`](https://github.com/gduverger/print) (simplest logging API)

## Introduction

Learn more about `print` at [github.com/gduverger/print](https://github.com/gduverger/print).

## Installation

```bash
$ pipenv install print-python
```

## Usage

```python
>>> from print import print
>>> print(url='<PRINT_URL>', token='<PRINT_TOKEN>')
>>> print('As easy as rolling off a log')
```

## Test

```bash
python -m pytest
```


