當前位置: 首頁>>代碼示例>>Python>>正文


Python Menu.correr方法代碼示例

本文整理匯總了Python中Menu.Menu.correr方法的典型用法代碼示例。如果您正苦於以下問題:Python Menu.correr方法的具體用法?Python Menu.correr怎麽用?Python Menu.correr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Menu.Menu的用法示例。


在下文中一共展示了Menu.correr方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: main

# 需要導入模塊: from Menu import Menu [as 別名]
# 或者: from Menu.Menu import correr [as 別名]
def main():
	validador = ValidadorEntradaArchivo()
	os.system('clear')
	if validador.validar(sys.argv[1:]):
		manejador = ManejadorTwig()
		menu = Menu(manejador)

		parseador = Parseador(validador.getOpcion('file'))
		menu.agregarOpcion('a',"self.objeto.agregarAtibutosAPropocesar()",'agrega Atributos a procesar')
		menu.agregarOpcion('ag',"self.objeto.configurarGrupo()", 'guia para crear un grupo de elementos twig')
		menu.agregarOpcion('g','self.objeto.generarTwig()','Genera el twig')
		menu.agregarOpcion('ma','self.objeto.mostrarAtributos()','Muesta los atributos Parseados')
		menu.agregarOpcion('mp','self.objeto.mostrarAGenerar()','Muestra la Cola con los Atributos a Generar')
		menu.agregarOpcion('t','self.objeto.generarTodo()','Genera twig para todo los atributos')
		menu.agregarOpcion('cb','self.objeto.cambiarBootstrap()', 'Cambía la versíon de bootstrap con cual se van a generar twig')
		menu.agregarOpcion('dp','self.objeto.definirPath()', 'Define el path base del traductor')
		menu.agregarOpcion('gf','self.objeto.generarForm()', 'Genera el formBuilder')
		menu.agregarOpcion('gt', 'self.objeto.generarTraducciones()', 'Genera las Traducciones')

		manejador.clase = parseador.getClase(parseador.fileString)
		manejador.namespace = parseador.getNameSpace(parseador.fileString)
		manejador.atributos = parseador.getAtributosProcesados()
		menu.correr()
	else:
		print validador.mensajes.pop()
開發者ID:jairoDO,項目名稱:utilSymfony2,代碼行數:27,代碼來源:generarTwigPrueba.py


注:本文中的Menu.Menu.correr方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。