Web-based user interfaces for Python
Flexx is a web-based UI framework for Python, allowing you to create interactive web apps using Python code. It leverages web technologies under the hood and provides a natural API for developers to work with.
Key Features:
Common Use Cases:
pip install flexx
from flexx import app, ui
class Example(app.PyComponent):
def init(self):
with ui.VBox():
self.label = ui.Label(text="Hello, Flexx!")
self.button = ui.Button(text="Click me")
self.button.reaction(self.on_click)
def on_click(self, *events):
self.label.text = "Button clicked!"
if __name__ == "__main__":
app.launch(Example, 'app')
app.run()