Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
|
68768e3a99 | ||
|
3200238866 |
4 changed files with 5 additions and 2 deletions
|
@ -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.
|
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 :
|
Fonctionne avec les csv fourni par :
|
||||||
- BitWarden.
|
- BitWarden
|
||||||
|
- Firefox
|
||||||
|
- Chrome
|
||||||
|
|
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.3 KiB |
BIN
favicon.png
Normal file
BIN
favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.9 KiB |
3
main.py
3
main.py
|
@ -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 tkinter.font as tkfont
|
||||||
import csv
|
import csv
|
||||||
import webbrowser
|
import webbrowser
|
||||||
|
@ -220,6 +220,7 @@ root=Tk()
|
||||||
root.geometry("1100x600")
|
root.geometry("1100x600")
|
||||||
root.title("CSV PASSWORD VIEWER")
|
root.title("CSV PASSWORD VIEWER")
|
||||||
root.resizable(False, False)
|
root.resizable(False, False)
|
||||||
|
root.iconphoto(False, PhotoImage(file='favicon.png'))
|
||||||
|
|
||||||
Button(root, text = "Browser file", command = select_file).place(x = 1000, y = 10)
|
Button(root, text = "Browser file", command = select_file).place(x = 1000, y = 10)
|
||||||
|
|
||||||
|
|
Reference in a new issue