Skip to content

A Basic Template for nicegui

From turtlecode youtube channel

# Set up venv called venv and pip install nicegui
# Import nicegui
from nicegui import ui 

# First a label
ui.label("Welcome to NiceGUI Playlist!")

# Now run the application
ui.run()