Completed
Push — master ( d82ab1...622620 )
by Deepak
17s queued 12s
created

WA_history   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 11
dl 0
loc 14
rs 10
c 0
b 0
f 0
1
import tkinter as tk
2
from tkinter import Label
3
4
root = tk.Tk()
5
root.title("WhatsApp History")
6
root.iconbitmap("Assest/YoutubeDownloader.ico")
7
root.geometry("200x400+1040+100")
8
root.resizable(0,0)
9
10
with open("pywhatkit_history.txt", "r") as f:
11
    lb = Label(root, text=f.read()).pack()
12
13
root.mainloop()
14