mirror of
https://github.com/nophead/Mendel90.git
synced 2025-08-08 14:26:29 +02:00
first commit
This commit is contained in:
17
make_machine.py
Normal file
17
make_machine.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import sys
|
||||
|
||||
from bom import boms
|
||||
from sheets import sheets
|
||||
from stls import stls
|
||||
|
||||
def make_machine(machine):
|
||||
boms(machine)
|
||||
sheets(machine)
|
||||
stls(machine)
|
||||
|
||||
if __name__ == '__main__':
|
||||
if len(sys.argv) > 1:
|
||||
make_machine(sys.argv[1])
|
||||
else:
|
||||
print "usage: make_machine [mendel|sturdy|your_machine]"
|
||||
sys.exit(1)
|
Reference in New Issue
Block a user