예제 #1
0
파일: vycetka.py 프로젝트: pirati-cz/byro
def vycetka_wrapper(args):
	redmine = BRedmine(args.user, args.url, args.project, month=args.month)
	data = redmine.get_data()
	# data.export_to_bin_file("data-6-OP.p")
	# cmd = Cmd(data)
	docx = DocX(data, args.out)
	docx.show()
예제 #2
0
파일: vycetka.py 프로젝트: pirati-cz/byro
def vycetka_wrapper(args):
	redmine = BRedmine(args.user, args.url, args.project, month=args.month, year=args.year, ssl=True)
	data = redmine.get_data()
	# data.export_to_bin_file("data-6-OP.p")
	# cmd = Cmd(data)
	docx = DocX(data, args.out)
	docx.show()
예제 #3
0
파일: __main__.py 프로젝트: daneeq/byro
	def vycetka(self):
		redmine = BRedmine(self.args.user, self.args.url, self.args.project, self.args.month)
		data = redmine.get_data()
		# data.export_to_bin_file("data-6-OP.p")
		# cmd = Cmd(data)
		docx = DocX(data, self.args.out)
		docx.show()