Skip to content

Instantly share code, notes, and snippets.

@ChicagoDev
Created May 4, 2023 16:03
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 ChicagoDev/33046e6ed6800f91e8bbc97c165ac3ba to your computer and use it in GitHub Desktop.
Save ChicagoDev/33046e6ed6800f91e8bbc97c165ac3ba to your computer and use it in GitHub Desktop.
from guizero import App, PushButton
app = App("File Picker")
def pick():
app.select_file()
button = PushButton(app, text="Get File", command=pick)
app.display()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment