当前位置: 首页>>代码示例>>Python>>正文


Python UI.cmds方法代码示例

本文整理汇总了Python中UI.cmds方法的典型用法代码示例。如果您正苦于以下问题:Python UI.cmds方法的具体用法?Python UI.cmds怎么用?Python UI.cmds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UI的用法示例。


在下文中一共展示了UI.cmds方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: run

# 需要导入模块: import UI [as 别名]
# 或者: from UI import cmds [as 别名]
	def run(self):
		UI.welcome()
		
		self.loadFiles()
		
		UI.messages(self.msgList)
		quit = False
	
		#If any of the files did not load, program quits
		if self.allData == None:
			quit = True

		
		while quit == False:
			line = raw_input("~~> ")
			self.msgList=[]
			
			if line == "":
				pass
			elif line == "cmd" or line == "c" or line == "h" or line == "help":
				UI.cmds()
		
			elif line[0:2] == "ls":
				if len(line) > 3:
					self.ls(line[3:])
				else:
					self.ls(None)
					
			elif line[0:3] == "sel":
				if len(line) > 4:	
					self.sel(line[4:])
				else:
					self.sel(None)

			elif line[0:5] == "sparm":
				if len(line) > 6:			
					self.sparm(line[6:])
				else:
					self.sparm(None)

			elif line[0:4] == "stat":
				if len(line) > 5:
					self.stat(line[5:])		
				else:
					self.stat(None)

			elif line.find("graph") != -1:
				if len(line) > 6:
					self.graph(line[6:])
				else:
					self.graph(None)	
			elif line[0] == "q":
				quit = True
			else:
				self.msgList.append("command not found")
				UI.messages([])
开发者ID:jenniferlhood,项目名称:pwqmn,代码行数:58,代码来源:pwqmn_prog.py


注:本文中的UI.cmds方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。