From d1a919fb1bce911a4d5e26f2a8c9102916b574b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 26 Dec 2022 06:11:00 +0100 Subject: [PATCH] PySimpleGUI --- README.md | 1 + index.html | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index d3819e8..09b5bfa 100644 --- a/README.md +++ b/README.md @@ -3486,6 +3486,7 @@ PySimpleGUI ```python # $ pip3 install PySimpleGUI import PySimpleGUI as sg + layout = [[sg.Text("What's your name?")], [sg.Input()], [sg.Button('Ok')]] window = sg.Window('Window Title', layout) event, values = window.read() diff --git a/index.html b/index.html index 5b3c15f..66f8afd 100644 --- a/index.html +++ b/index.html @@ -2839,6 +2839,7 @@ line(df, x='Date', y=

#PySimpleGUI

# $ pip3 install PySimpleGUI
 import PySimpleGUI as sg
+
 layout = [[sg.Text("What's your name?")], [sg.Input()], [sg.Button('Ok')]]
 window = sg.Window('Window Title', layout)
 event, values = window.read()