Ejemplo n.º 1
0
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()
Ejemplo n.º 2
0
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()
Ejemplo n.º 3
0
	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()