├── DESCRIPTION.rst ├── LICENSE.txt ├── README.md ├── setup.cfg ├── setup.py ├── test_printer.py └── xmlescpos ├── __init__.py ├── constants.py ├── escpos.py ├── exceptions.py ├── printer.py └── supported_devices.py /DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/DESCRIPTION.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/setup.py -------------------------------------------------------------------------------- /test_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/test_printer.py -------------------------------------------------------------------------------- /xmlescpos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/xmlescpos/__init__.py -------------------------------------------------------------------------------- /xmlescpos/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/xmlescpos/constants.py -------------------------------------------------------------------------------- /xmlescpos/escpos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/xmlescpos/escpos.py -------------------------------------------------------------------------------- /xmlescpos/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/xmlescpos/exceptions.py -------------------------------------------------------------------------------- /xmlescpos/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/xmlescpos/printer.py -------------------------------------------------------------------------------- /xmlescpos/supported_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvdsn/py-xml-escpos/HEAD/xmlescpos/supported_devices.py --------------------------------------------------------------------------------