mirror of
https://github.com/python-escpos/python-escpos
synced 2025-12-02 09:43:30 +00:00
25 lines
466 B
Python
25 lines
466 B
Python
# -*- coding: utf-8 -*-
|
|
"""printer implementations."""
|
|
|
|
from .cups import CupsPrinter
|
|
from .dummy import Dummy
|
|
from .file import File
|
|
from .lp import LP
|
|
from .network import Network
|
|
from .serial import Serial
|
|
from .usb import Usb
|
|
from .win32raw import Win32Raw
|
|
|
|
__all__ = [
|
|
"Usb",
|
|
"File",
|
|
"Network",
|
|
"Serial",
|
|
"LP",
|
|
"Dummy",
|
|
"CupsPrinter",
|
|
"Win32Raw",
|
|
]
|
|
|
|
# TODO check which printers are importable and add only those to the namespace
|