Create GUI applications in Python that run in your browser
Remi is a Python library for developing graphical user interfaces that are rendered in a web browser, allowing you to create desktop-like applications using Python with no Javascript knowledge required.
Key Features:
Common Use Cases:
pip install remi
import remi.gui as gui
from remi import start, App
class MyApp(App):
def __init__(self, *args):
super(MyApp, self).__init__(*args)
def main(self):
# Creates a button widget
button = gui.Button("Click me!")
button.onclick.do(self.on_button_pressed)
# Returns the root widget
return button
def on_button_pressed(self, widget):
# Define behavior when the button is clicked
print("Button clicked!")
if __name__ == "__main__":
# Start the app
start(MyApp)