Native, cross-platform GUI toolkit for Python
Toga is a Python-native, OS-native, cross-platform GUI toolkit. It is designed to make it easy to write applications with a native look and feel, using the same code on all supported platforms.
Key Features:
Common Use Cases:
pip install toga
import toga
from toga.style import Pack
from toga.style.pack import COLUMN, CENTER
def build(app):
box = toga.Box()
name_input = toga.TextInput(placeholder='Your name', style=Pack(flex=1))
greeting_label = toga.Label('Hello, World!', style=Pack(padding=5))
def greet(widget):
greeting_label.text = f'Hello, {name_input.value}!'
greet_button = toga.Button(
'Greet',
on_press=greet,
style=Pack(flex=1)
)
box.add(name_input)
box.add(greet_button)
box.add(greeting_label)
box.style.update(direction=COLUMN, alignment=CENTER, padding=10)
return box
def main():
return toga.App('Toga Example', 'org.pybee.helloworld', startup=build)
if __name__ == '__main__':
main().main_loop()