Compare commits

...

2 commits
1.1 ... master

Author SHA1 Message Date
Mylloon
68768e3a99
Update README.md 2020-08-05 18:47:12 +02:00
Mylloon
3200238866
add favicon 2020-08-05 18:45:52 +02:00
4 changed files with 5 additions and 2 deletions

View file

@ -2,4 +2,6 @@
Permet de voir tous ses mots de passes stockés dans un fichier csv facilement, et d'accéder aux sites correspondant au compte stockés.
Fonctionne avec les csv fourni par :
- BitWarden.
- BitWarden
- Firefox
- Chrome

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

BIN
favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

View file

@ -1,4 +1,4 @@
from tkinter import Tk, filedialog, Button, Label, Entry
from tkinter import Tk, filedialog, Button, Label, Entry, PhotoImage
import tkinter.font as tkfont
import csv
import webbrowser
@ -220,6 +220,7 @@ root=Tk()
root.geometry("1100x600")
root.title("CSV PASSWORD VIEWER")
root.resizable(False, False)
root.iconphoto(False, PhotoImage(file='favicon.png'))
Button(root, text = "Browser file", command = select_file).place(x = 1000, y = 10)