Create rich user interfaces with ease using Enaml's declarative syntax
Enaml is a Python framework for building and maintaining a high-performance, cross-platform desktop GUI using a declarative syntax. It leverages model-view architecture to create robust applications with minimal code.
Key Features:
Common Use Cases:
pip install enaml
from enaml.widgets.api import Window, Container, Label, PushButton, Application
enamldef Main(Window):
Container:
PushButton:
text = 'Click me!'
clicked :: print('Button clicked!')
Label:
text = 'Hello, Enaml!'
if __name__ == '__main__':
app = Application()
view = Main()
view.show()
app.start()