forked from emilevs/label_printer
5 lines
106 B
Python
5 lines
106 B
Python
import ctypes
|
|
|
|
mylib = ctypes.CDLL('./library_bridge.so')
|
|
|
|
mylib.printimg("/dev/usb/lp0".encode('utf-8'))
|