├── .github └── workflows │ └── testsrunner.yml ├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── escpos ├── __init__.py ├── asc.py ├── barcode.py ├── config.py ├── conn │ ├── __init__.py │ ├── bt.py │ ├── dummy.py │ ├── file.py │ ├── network.py │ ├── serial.py │ └── usb.py ├── constants.py ├── exceptions.py ├── feature.py ├── helpers.py ├── impl │ ├── __init__.py │ ├── bematech.py │ ├── controlid.py │ ├── daruma.py │ ├── elgin.py │ ├── epson.py │ ├── nitere.py │ └── unknown.py ├── retry.py └── showcase.py ├── requirements ├── bluetooth.txt ├── dev.txt ├── serial.txt └── usb.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── test_asc.py ├── test_bematech.py ├── test_conn_bt.py ├── test_conn_dummy.py ├── test_conn_file.py ├── test_conn_network.py ├── test_conn_serial.py ├── test_conn_usb.py ├── test_controlid_printidtouch.py ├── test_daruma_darumageneric.py ├── test_daruma_dr700.py ├── test_elgin_elgingeneric.py ├── test_elgin_i7.py ├── test_elgin_i9.py ├── test_epson_genericescpos.py ├── test_epson_tmt20.py ├── test_helpers.py ├── test_nitere_npdv1020.py ├── test_retry.py └── test_unknown_cb55c.py └── tox.ini /.github/workflows/testsrunner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/.github/workflows/testsrunner.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/README.rst -------------------------------------------------------------------------------- /escpos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/__init__.py -------------------------------------------------------------------------------- /escpos/asc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/asc.py -------------------------------------------------------------------------------- /escpos/barcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/barcode.py -------------------------------------------------------------------------------- /escpos/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/config.py -------------------------------------------------------------------------------- /escpos/conn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/conn/__init__.py -------------------------------------------------------------------------------- /escpos/conn/bt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/conn/bt.py -------------------------------------------------------------------------------- /escpos/conn/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/conn/dummy.py -------------------------------------------------------------------------------- /escpos/conn/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/conn/file.py -------------------------------------------------------------------------------- /escpos/conn/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/conn/network.py -------------------------------------------------------------------------------- /escpos/conn/serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/conn/serial.py -------------------------------------------------------------------------------- /escpos/conn/usb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/conn/usb.py -------------------------------------------------------------------------------- /escpos/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/constants.py -------------------------------------------------------------------------------- /escpos/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/exceptions.py -------------------------------------------------------------------------------- /escpos/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/feature.py -------------------------------------------------------------------------------- /escpos/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/helpers.py -------------------------------------------------------------------------------- /escpos/impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/impl/__init__.py -------------------------------------------------------------------------------- /escpos/impl/bematech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/impl/bematech.py -------------------------------------------------------------------------------- /escpos/impl/controlid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/impl/controlid.py -------------------------------------------------------------------------------- /escpos/impl/daruma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/impl/daruma.py -------------------------------------------------------------------------------- /escpos/impl/elgin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/impl/elgin.py -------------------------------------------------------------------------------- /escpos/impl/epson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/impl/epson.py -------------------------------------------------------------------------------- /escpos/impl/nitere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/impl/nitere.py -------------------------------------------------------------------------------- /escpos/impl/unknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/impl/unknown.py -------------------------------------------------------------------------------- /escpos/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/retry.py -------------------------------------------------------------------------------- /escpos/showcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/escpos/showcase.py -------------------------------------------------------------------------------- /requirements/bluetooth.txt: -------------------------------------------------------------------------------- 1 | -r dev.txt 2 | -e .[bluetooth] 3 | -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | 3 | pytest>=4.6,<5 4 | tox 5 | -------------------------------------------------------------------------------- /requirements/serial.txt: -------------------------------------------------------------------------------- 1 | -r dev.txt 2 | -e .[serial] 3 | -------------------------------------------------------------------------------- /requirements/usb.txt: -------------------------------------------------------------------------------- 1 | -r dev.txt 2 | -e .[usb] 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | license-file = LICENSE 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_asc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_asc.py -------------------------------------------------------------------------------- /tests/test_bematech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_bematech.py -------------------------------------------------------------------------------- /tests/test_conn_bt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_conn_bt.py -------------------------------------------------------------------------------- /tests/test_conn_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_conn_dummy.py -------------------------------------------------------------------------------- /tests/test_conn_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_conn_file.py -------------------------------------------------------------------------------- /tests/test_conn_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_conn_network.py -------------------------------------------------------------------------------- /tests/test_conn_serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_conn_serial.py -------------------------------------------------------------------------------- /tests/test_conn_usb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_conn_usb.py -------------------------------------------------------------------------------- /tests/test_controlid_printidtouch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_controlid_printidtouch.py -------------------------------------------------------------------------------- /tests/test_daruma_darumageneric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_daruma_darumageneric.py -------------------------------------------------------------------------------- /tests/test_daruma_dr700.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_daruma_dr700.py -------------------------------------------------------------------------------- /tests/test_elgin_elgingeneric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_elgin_elgingeneric.py -------------------------------------------------------------------------------- /tests/test_elgin_i7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_elgin_i7.py -------------------------------------------------------------------------------- /tests/test_elgin_i9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_elgin_i9.py -------------------------------------------------------------------------------- /tests/test_epson_genericescpos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_epson_genericescpos.py -------------------------------------------------------------------------------- /tests/test_epson_tmt20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_epson_tmt20.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_nitere_npdv1020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_nitere_npdv1020.py -------------------------------------------------------------------------------- /tests/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_retry.py -------------------------------------------------------------------------------- /tests/test_unknown_cb55c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tests/test_unknown_cb55c.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base4sistemas/pyescpos/HEAD/tox.ini --------------------------------------------------------------------------------