pyrint

POS print utility. Copyright 2014 BOS Sales, LLC


License
CERN-OHL-P-2.0
Install
pip install pyrint==0.0.1dev

Documentation

pyrint Build Status Version

Copyright 2014 Order Bliss

Dequeue print request and pass them to a printer.

Install

pip install pyrint

Usage

Argument Description
-h, --help show this help message and exit
--url url to send requests to
-v print whats going on
-r rolling restarts
--scan test: scan for printer only
--print test: print only
--provision provision the device for use

Run with bash at start up

Fun this shell script at start up of decive.

#!/bin/bash
if [ !pyrint ]; then
    sudo pip install pyrint
    pyrint --provision
fi
while TRUE; do
    sudo pip install --upgrade pyrint
    pyrint
done
#EOF