Metadata-Version: 2.1
Name: pyrinter
Version: 0.0.1a2
Summary: python printer package
Author: Hod Vaknin
License: MIT
Project-URL: Source, https://github.com/hodvak/py-printer
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Win32 (MS Windows)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# Pyrinter #
[![Github licence](https://img.shields.io/github/license/hodvak/pyrinter)](https://github.com/hodvak/pyrinter/blob/master/LICENSE)
[![PyPI version](https://img.shields.io/pypi/v/pyrinter)](https://pypi.org/project/printer/)

## What is it ##
Pyrinter (python printer adapter) is a free open source python package for physical printers use.

## How to Install ##
with pip:
```sh
pip install pyrinter
```

## How to Use ##
the following code is a `hello world` for printing text using the printer `PDFCreator` 
(the printer name may be empty for default printer):
```python3
from pyrinter import Printer
from pyrinter import Document

doc = Document()
doc.add_text("Hello World")

printer = Printer("PDFCreator")
printer.print_doc(doc)
```

