Advertisement
youderf

main.py

Jun 11th, 2019
692
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. # Importation des bibliothèques nécessaires
  3. from tkinter import *
  4. from tkinter import filedialog
  5. # Importation du module library.py
  6. from library.library import*
  7.  
  8. # Création du dictionnaire qui stock les objets file
  9. savedFile = {1:""}
  10.  
  11. # Création d'une instance sur la classe principale
  12.  
  13. root = Win("root","c")
  14.  
  15. root.create()
  16. root.add_text()
  17. root.add_menu()
  18. root.generate()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement