32 lines
414 B
Markdown
32 lines
414 B
Markdown
catprint
|
|
========
|
|
|
|
Setup
|
|
-----
|
|
|
|
```
|
|
python3 -m venv venv/
|
|
. venv/bin/activate
|
|
python -m pip install -r requirements.txt
|
|
```
|
|
|
|
Every time
|
|
----------
|
|
|
|
```
|
|
. venv/bin/activate
|
|
```
|
|
|
|
Then one of the 2 ways to print:
|
|
|
|
The self-contained, one-time print utility:
|
|
```
|
|
python catprint.py --help
|
|
```
|
|
|
|
The daemon/client pair when several things need to be printed:
|
|
```
|
|
python cheshire.py --help
|
|
python catclient.py --help
|
|
```
|