complete file compare software in python with classification In previous article i have posted code for file comapre in python in this article i have have modified the code a lot. It is full working code. Kindly verify and revert if you like it. Also i have classified the records which are old ones and which are from new one in difference file. from tkinter import filedialog from tkinter import * import os window = Tk() window.title("My File Compare...") window.geometry('750x200') lbl1 = Label(window, text="Select Old File Path") lbl1.grid(column=0, row=0) txt1 = Entry(window,width=80) txt1.grid(column=1, row=0) lbl2 = Label(window, text="Select new File Path") lbl2.grid(column=0, row=2) txt2 = Entry(window,width=80) txt2.grid(column=1, row=2) def browsefunc1(): filename = filedialog.askopenfilename(initialdir = "D:/QA/") print(filename) txt1.delete(0,END) txt1.insert(0,filena...
Blog which contains C#, asp.net, asp.net MVC, Selenium webdriver with core java, Bootstrap, Jquery and many more