PySimpleGUI/PySimpleGUIWeb/Demo Programs/Web_Simple.py

29 lines
682 B
Python
Raw Normal View History

2019-03-15 14:03:43 +00:00
import PySimpleGUIWeb as sg
# Basic example of PSGWeb
2019-03-15 14:03:43 +00:00
def main():
layout = [
[sg.Text('This is a text element')],
[sg.Input()],
[sg.Combo(['Combo 1'])],
[sg.Text('If you close the browser tab, the app will exit gracefully')],
[sg.InputText('Source')],
[sg.InputText('Dest')],
[sg.Ok(), sg.Cancel()]
]
2019-03-15 14:03:43 +00:00
window = sg.Window('Demo window..', layout)
2019-03-15 14:03:43 +00:00
i = 0
while True:
event, values = window.read(timeout=1)
2019-03-15 14:03:43 +00:00
if event != sg.TIMEOUT_KEY:
print(event, values)
if event is None:
break
i += 1
window.close()
2019-03-15 14:03:43 +00:00
main()
print('Program terminating normally')