forked from kemalsanli/wordKontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharayüz.py
52 lines (41 loc) · 1.56 KB
/
arayüz.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from tkinter import filedialog
from tkinter import *
import tkinter as tk
import os
import docx
from Data import cift
from Data import paragraf
from Data import girisbolum
from Data import dosyaac
root = tk.Tk()
root.title('Word Kontrol')
dosyaac.Clear_Console()
print(" Lütfen kayıtlı bir word dosyası seçin.")
print(" _________________")
print(" | | ___________ |o|")
print(" | | ___________ | |")
print(" | | ___________ | |")
print(" | | ___________ | |")
print(" | |_____________| |")
print(" | _______ |")
print(" | | | ||")
print(" | KD | | V|")
print(" |____|_______|____|")
def browsefunc():
root.filename = filedialog.askopenfilename(initialdir = "/",title = "Tez Dosyasını Seçin",filetypes = (("Word dosyaları",".docx"),("Tüm Dosyalar",".*")))
ent1.insert(tk.END, root.filename)
dosyaac.Clear_Console()
#print (root.filename)
dosyayol=root.filename
#print(dosyayol)
cift.cifttirnakfonk(dosyayol)
paragraf.Paragrafmidegilmi(dosyayol)
girisbolum.Iceriyomu(dosyayol)
#os.startfile('WordRapor.docx')
filename='WordRapor.docx'
dosyaac.Open_file(filename)
ent1=tk.Entry(root,font=40)
ent1.grid(row=2,column=2)
b1=tk.Button(root,text="Dosya Seçin",font=40,command=browsefunc)
b1.grid(row=2,column=4)
root.mainloop()