pwdlapiV1 / beta /shellLogic /simpleParser.py
AkshitShubham's picture
Upload folder using huggingface_hub
6309782 verified
raw
history blame contribute delete
162 Bytes
def parseAndRun(commandlist,command,args=[],obj=None):
if command in commandlist: func = commandlist[command]["func"]
if not func: return
func(args)