├── .gitignore ├── AddPrinter-Template.plist ├── LICENSE.md ├── README.md ├── Template.csv ├── Template_with_semicolons.csv └── print_generator.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pkginfo 2 | -------------------------------------------------------------------------------- /AddPrinter-Template.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycomco/PrinterGenerator/HEAD/AddPrinter-Template.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycomco/PrinterGenerator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycomco/PrinterGenerator/HEAD/README.md -------------------------------------------------------------------------------- /Template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycomco/PrinterGenerator/HEAD/Template.csv -------------------------------------------------------------------------------- /Template_with_semicolons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycomco/PrinterGenerator/HEAD/Template_with_semicolons.csv -------------------------------------------------------------------------------- /print_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wycomco/PrinterGenerator/HEAD/print_generator.py --------------------------------------------------------------------------------