commit 4e034fbbd09201f5cbe7c8eef000c46910dedc97 Author: Arjen Hiemstra Date: Mon Nov 10 16:00:53 2014 +0100 Initail commit of basic structure diff --git a/PrinterApplication.py b/PrinterApplication.py new file mode 100644 index 0000000000..fcc1de2aae --- /dev/null +++ b/PrinterApplication.py @@ -0,0 +1,8 @@ +from Cura.Application import Application + +class PrinterApplication(Application): + def __init__(self): + super(Application, self).__init__() + + def run(self): + print("Shoopdawoop") diff --git a/printer.py b/printer.py new file mode 100755 index 0000000000..9d86e20220 --- /dev/null +++ b/printer.py @@ -0,0 +1,6 @@ +#!/usr/bin/env python2 + +from PrinterApplication import PrinterApplication + +app = PrinterApplication() +app.run() \ No newline at end of file