added argument parsing to interact with the functions

This commit is contained in:
Dionysus 2019-07-25 02:10:33 -04:00
parent 60160fbb00
commit cea16c62d2
No known key found for this signature in database
GPG Key ID: 05114B46832BDBDB
1 changed files with 39 additions and 2 deletions

View File

@ -2,5 +2,42 @@
# mzk music theory helper - developed by acidvegas in python (https://acid.vegas/mzk)
# main.py
import argparser
import sys
import sys
sys.dont_write_bytecode = True
import constants
import functions
if len(sys.argv) != 2:
functions.print_help()
else:
sys.argv[1] = sys.argv[1].lower()
if sys.argv[1].startswith('--chord='):
chord = sys.argv[1][8:]
key = chord.split('_')[0]
type = chord[len(key)+1:]
if key in constants.notes and type in constants.scales:
functions.print_chord(key, type)
else:
print('error: invalid key or chord type\n\n')
functions.print_help()
elif sys.argv[1] == '--chords':
functions.print_chords()
elif sys.argv[1] == '--circle':
functions.print_circle()
elif sys.argv[1] == '--intervals':
functions.print_intervals()
elif sys.argv[1].startswith('--scale='):
scale = sys.argv[1][8:]
key = scale.split('_')[0]
type = scale[len(key)+1:]
if key in constants.notes and type in constants.scales:
functions.print_scale(key, type)
else:
print('error: invalid key or chord type\n\n')
functions.print_help()
elif sys.argv[1] == '--scales':
functions.print_scales()
else:
functions.print_help()