Skip to content

Instantly share code, notes, and snippets.

@masouduut94
Created October 24, 2020 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masouduut94/9ebc7801b83cbeb18a75839e46deb0ae to your computer and use it in GitHub Desktop.
Save masouduut94/9ebc7801b83cbeb18a75839e46deb0ae to your computer and use it in GitHub Desktop.
from tkinter import Tk
from gui import Gui
def main():
root = Tk()
interface = Gui(root)
root.mainloop()
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment