├── .gitignore ├── LICENSE ├── README.md ├── brother_pt ├── __init__.py ├── __main__.py ├── cmd.py ├── printer.py └── raster.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | venv 3 | *.png 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treideme/brother_pt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treideme/brother_pt/HEAD/README.md -------------------------------------------------------------------------------- /brother_pt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treideme/brother_pt/HEAD/brother_pt/__init__.py -------------------------------------------------------------------------------- /brother_pt/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treideme/brother_pt/HEAD/brother_pt/__main__.py -------------------------------------------------------------------------------- /brother_pt/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treideme/brother_pt/HEAD/brother_pt/cmd.py -------------------------------------------------------------------------------- /brother_pt/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treideme/brother_pt/HEAD/brother_pt/printer.py -------------------------------------------------------------------------------- /brother_pt/raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treideme/brother_pt/HEAD/brother_pt/raster.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyusb==1.2.1 2 | Pillow==8.4.0 3 | packbits==0.6 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treideme/brother_pt/HEAD/setup.py --------------------------------------------------------------------------------