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