JorjMcKie / wxsimpleGUI

A standard GUI collection written in wxPython

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wxsimpleGUI

A standard GUI collection written in wxPython

Use like import wxsimpleGUI as sg.

The following functions are currently implemented:

name purpose
SelectOne Select one string out of a list
SelectMult Select multiple out of a list of strings
DirDlg Standard directory selection
OpenDlg Multiple file selection
ExcBox Display traceback of last exception
YesNoBox Return True or False
InputBox Return user entered string
PasswordBox Return user entered password
MultInputBox Simple multiple data input dialog
MsgBox The standard one
BusyInfo Display non-blocking info
ScrollingTextbox Display text or text files in a scrollable window
ProgressBar Display a progress bar

Example

import wxsimpleGUI as sg
answer = sg.YesNoBox("Do you smoke?", "an honest answer please!")
if answer:
    print("you are reducing your lifetime expectancy!")
else:
    print("I hope you didn't lie ...")
''' 

About

A standard GUI collection written in wxPython

License:MIT License


Languages

Language:Python 100.0%