Commit 9086412a authored by Thorfin89's avatar Thorfin89

Déclaration de la licence et quelques corrections dans README

parent 6314372d
# objQRCode
V1.0 du 06/01/2024 :
Licence Creative Commons : BY-NC-SA
![objQRCode-02](./images/objQRCode-02.png)
**objQRCode** est un utilitaire pour créer des QRCode écrit en python.
C'est en fait une interface graphique pour **qrcode** (https://pypi.org/project/qrcode/) sous python.
Toute les fonctions sont opérationnelles :
Toutes les fonctions sont opérationnelles :
- ouverture d'un QRCode au format PNG
- décodage de l'image
- codage au format PNG d'un texte, une url
......@@ -23,6 +26,7 @@ voire quelques fonctions supplémentaires à ajouter.
- qrcode
- pillow
- tk-tools
- opencv-python
## Codage d'un accès Wifi :
WIFI:T:*cryptage(nopass, WEP, WPA)*;S:ssid;P:*motdepasse*;H:*caché(true / false)*
......@@ -43,7 +47,7 @@ WIFI:T:*cryptage(nopass, WEP, WPA)*;S:ssid;P:*motdepasse*;H:*caché(true / false
- Mot de passe :
- Caché : non
`WIFI:T:nopass;S:myssid;P:;:H:`
`WIFI:T:nopass;S:myssid;P:;:H:false;`
## Sources :
- https://goqr.me/#t=wifi
......
# Utilitaire pour création de QRCode
# Auteur : Daniel SAZERAT
# Projet initié le 24/12/2023
# V1.0 du 06/01/2024
# Licence Creative Commons : BY-NC-SA
from tkinter import *
from tkinter import messagebox
from tkinter import Tk, Frame, Label, Entry, Button, Scale, Menu, Spinbox, messagebox, PhotoImage, IntVar
from tkinter import SUNKEN, HORIZONTAL, CENTER
from tkinter.colorchooser import askcolor
from tkinter import filedialog
from tk_tools import SmartSpinBox
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment