def export_to_batch(self):
outf = filedialog.asksaveasfilename(defaultextension='.txt')
if outf:
with open(outf,'w') as f:
for i in self.download_list:
f.write(i[1].strip()+'\n')
message.showinfo('Complete','Done exporting batch job to file')
评论列表
文章目录