1
0
mirror of https://github.com/nophead/Mendel90.git synced 2025-01-16 20:38:15 +01:00
Mendel90/make_machine.py

23 lines
490 B
Python
Raw Normal View History

#!/usr/bin/env python
2012-03-12 01:13:07 +00:00
import sys
2012-03-12 01:13:07 +00:00
from bom import boms
from sheets import sheets
from stls import stls
from plates import plates
from accessories import accessories
2012-03-12 01:13:07 +00:00
def make_machine(machine):
boms(machine)
sheets(machine)
stls(machine)
accessories(machine)
plates(machine)
2012-03-12 01:13:07 +00:00
if __name__ == '__main__':
if len(sys.argv) > 1:
make_machine(sys.argv[1])
else:
print("usage: make_machine dibond|mendel|sturdy|huxley|your_machine")
2012-03-12 01:13:07 +00:00
sys.exit(1)