up vote 1 down vote favorite

I have a Star TSP600 thermal receipt printer attached to my macbook via usb. The drivers are installed, and I can print to it using the normal Mac print dialog.

How I can construct a program to send text to the printer? Is there a guide to basic printing interfaces? I generally work in Python, and I'd be willing to learn another language if it's appropriate for the task. Just looking for the basic "Hello World" example to get off the ground.

flag

72% accept rate

1 Answer

up vote 2 down vote accepted

Take a look at the CUPS command line options.

Then you could use popen to send text to the printer.

#!/usr/bin/env python
import popen2
popen2.popen4("lpr -P [printer] " + output_file)
link|flag

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.