Passed
Pull Request — master (#39)
by Ram
01:00
created

WA_history   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

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