mirror of
https://github.com/nophead/Mendel90.git
synced 2025-01-16 12:29:46 +01:00
8a5578948f
Added make_all_machines.py to build all variations.
24 lines
528 B
Python
Executable File
24 lines
528 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
import sys
|
|
from bom import boms
|
|
from sheets import sheets
|
|
from stls import stls
|
|
from plates import plates
|
|
from accessories import accessories
|
|
|
|
def make_machine(machine):
|
|
boms(machine)
|
|
sheets(machine)
|
|
stls(machine)
|
|
accessories(machine)
|
|
plates(machine)
|
|
|
|
if __name__ == '__main__':
|
|
if len(sys.argv) > 1:
|
|
make_machine(sys.argv[1])
|
|
else:
|
|
print("usage: make_machine dibond|mendel|sturdy|huxley|your_machine")
|
|
sys.exit(1)
|