Last active
August 9, 2019 07:05
-
-
Save fnneves/af54b5fb73a83074ccb7f33dae7d6bdb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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