A Python-based web service to print labels on Brother QL label printers. Based on brother_ql: https://github.com/pklaus/brother_ql
Go to file
2016-12-18 15:10:02 +01:00
static upgrade bootstrap / jQuery to latest version 2016-12-18 15:10:02 +01:00
views upgrade bootstrap / jQuery to latest version 2016-12-18 15:10:02 +01:00
brother_ql_web.py center text on die-cut labels; improved annotation in web iface 2016-12-17 22:58:18 +01:00
font_helpers.py restructuring the label creation a lot for /api/preview/text/xyz 2016-11-21 11:39:09 +01:00
README.md README/requirements: brother_ql via PyPI 2016-12-10 14:41:59 +01:00
requirements.txt requirements: removing unnecessary markdown & numpy 2016-12-10 14:45:49 +01:00

brother_ql_web

This is a web service to print labels on Brother QL label printers.

It offers:

  • a Web GUI allowing you to print your labels at /labeldesigner,
  • an API at /api/print/text/Your_Text?font_size=100&font_family=Minion%20Pro&font_style=Semibold to print a label containing 'Your Text' with the specified font properties.

You need Python 3 for this software to work.

Installation

Get the code:

git clone https://github.com/pklaus/brother_ql_web.git

or download the ZIP file and unpack it.

Install the requirements:

pip install -r requirements.txt

Usage

To start the server, run ./brother_ql_web.py. Here's its command line interface:

usage: brother_ql_web.py [-h] [--port PORT] [--loglevel LOGLEVEL]
                         [--font-folder FONT_FOLDER]
                         [--model {QL-500,QL-550,QL-560,QL-570,QL-580N,QL-650TD,QL-700,QL-710W,QL-720NW,QL-1050,QL-1060N}]
                         printer

positional arguments:
  printer               String descriptor for the printer to use (like
                        tcp://192.168.0.23:9100 or file:///dev/usb/lp0)

optional arguments:
  -h, --help            show this help message and exit
  --port PORT
  --loglevel LOGLEVEL
  --font-folder FONT_FOLDER
                        folder for additional .ttf/.otf fonts
  --model {QL-500,QL-550,QL-560,QL-570,QL-580N,QL-650TD,QL-700,QL-710W,QL-720NW,QL-1050,QL-1060N}
                        The model of your printer (default: QL-500)