├── .gitignore ├── AirPrint_Generator.py ├── AirPrint_Generator_Outset.py ├── AirPrinter-Template-Outset.plist ├── AirPrinter-Template.plist ├── LICENSE.md ├── Printer-Template.plist ├── README.md ├── Template.csv └── print_generator.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pkginfo 2 | -------------------------------------------------------------------------------- /AirPrint_Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmcox/PrinterGenerator/HEAD/AirPrint_Generator.py -------------------------------------------------------------------------------- /AirPrint_Generator_Outset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmcox/PrinterGenerator/HEAD/AirPrint_Generator_Outset.py -------------------------------------------------------------------------------- /AirPrinter-Template-Outset.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmcox/PrinterGenerator/HEAD/AirPrinter-Template-Outset.plist -------------------------------------------------------------------------------- /AirPrinter-Template.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmcox/PrinterGenerator/HEAD/AirPrinter-Template.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmcox/PrinterGenerator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Printer-Template.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmcox/PrinterGenerator/HEAD/Printer-Template.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmcox/PrinterGenerator/HEAD/README.md -------------------------------------------------------------------------------- /Template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmcox/PrinterGenerator/HEAD/Template.csv -------------------------------------------------------------------------------- /print_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmcox/PrinterGenerator/HEAD/print_generator.py --------------------------------------------------------------------------------