Skip to content

Instantly share code, notes, and snippets.

@fnneves
Last active August 9, 2019 07:05
Show Gist options
  • Save fnneves/af54b5fb73a83074ccb7f33dae7d6bdb to your computer and use it in GitHub Desktop.
Save fnneves/af54b5fb73a83074ccb7f33dae7d6bdb to your computer and use it in GitHub Desktop.
import tkinter as tk
import easygui
import pandas as pd
from time import strftime
window = tk.Tk() # you may also see it named as "root" in other sources
window.title("FLIGHT SCRAPER") # self explanatory!
#window.geometry("600x600") # size of the window when it opens
#window.minsize(width=600, height=600) # you can define the minimum size of the window like this
window.resizable(width="false", height="false") # change to false if you want to prevent resizing
# WIDGETS
window.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment