Repo symbol

nicegui repository

python website gui frontend interface robotics toolkit scripting webapp interaction interfaces
Repo symbol

nicegui repository

python website gui frontend interface robotics toolkit scripting webapp interaction interfaces
Repo symbol

nicegui repository

python website gui frontend interface robotics toolkit scripting webapp interaction interfaces
Repo symbol

nicegui repository

python website gui frontend interface robotics toolkit scripting webapp interaction interfaces
Repo symbol

nicegui repository

python website gui frontend interface robotics toolkit scripting webapp interaction interfaces gui simulator

Repository Summary

Description Create web-based user interfaces with Python. The nice way.
Checkout URI https://github.com/zauberzeug/nicegui.git
VCS Type git
VCS Version main
Last Updated 2025-08-01
Dev Status UNKNOWN
Released UNRELEASED
Tags python website gui frontend interface robotics toolkit scripting webapp interaction interfaces
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
gui 1.0.0
simulator 1.0.0

README

Try online!

NiceGUI

NiceGUI is an easy-to-use, Python-based UI framework, which shows up in your web browser. You can create buttons, dialogs, Markdown, 3D scenes, plots and much more.

It is great for micro web apps, dashboards, robotics projects, smart home solutions and similar use cases. You can also use it in development, for example when tweaking/configuring a machine learning algorithm or tuning motor controllers.

NiceGUI is available as PyPI package, Docker image and on conda-forge as well as GitHub.

PyPI PyPI downloads Conda version Conda downloads Docker pulls
GitHub license GitHub commit activity GitHub issues GitHub forks GitHub stars DOI

Features

  • browser-based graphical user interface
  • implicit reload on code change
  • acts as webserver (accessed by the browser) or in native mode (eg. desktop window)
  • standard GUI elements like label, button, checkbox, switch, slider, input, file upload, …
  • simple grouping with rows, columns, cards and dialogs
  • general-purpose HTML and Markdown elements
  • powerful high-level elements to
    • plot graphs and charts,
    • render 3D scenes,
    • get steering events via virtual joysticks
    • annotate and overlay images
    • interact with tables
    • navigate foldable tree structures
    • embed video and audio files
  • built-in timer to refresh data in intervals (even every 10 ms)
  • straight-forward data binding and refreshable functions to write even less code
  • notifications, dialogs and menus to provide state of the art user interaction
  • shared and individual web pages
  • easy-to-use per-user and general persistence
  • ability to add custom routes and data responses
  • capture keyboard input for global shortcuts etc.
  • customize look by defining primary, secondary and accent colors
  • live-cycle events and session data
  • runs in Jupyter Notebooks and allows Python’s interactive mode
  • auto-complete support for Tailwind CSS
  • SVG, Base64 and emoji favicon support
  • testing framework based on pytest

Installation

python3 -m pip install nicegui

Usage

Write your nice GUI in a file main.py:

from nicegui import ui

ui.label('Hello NiceGUI!')
ui.button('BUTTON', on_click=lambda: ui.notify('button was pressed'))

ui.run()

Launch it with:

python3 main.py

The GUI is now available through http://localhost:8080/ in your browser. Note: NiceGUI will automatically reload the page when you modify the code.

Documentation and Examples

The documentation is hosted at https://nicegui.io/documentation and provides plenty of live demos. The whole content of https://nicegui.io is implemented with NiceGUI itself and can be started locally with docker run -p 8080:8080 zauberzeug/nicegui or by executing main.py from this repository.

You may also have a look at our in-depth examples of what you can do with NiceGUI. In our wiki we have a list of great NiceGUI projects from the community, a section with Tutorials, a growing list of FAQs and some strategies for using ChatGPT / LLMs to get help about NiceGUI.

Why?

We at Zauberzeug like Streamlit but find it does too much magic when it comes to state handling. In search for an alternative nice library to write simple graphical user interfaces in Python we discovered JustPy. Although we liked the approach, it is too “low-level HTML” for our daily usage.

File truncated at 100 lines see the full file

CONTRIBUTING

Contributing to NiceGUI

We’re thrilled that you’re interested in contributing to NiceGUI! Here are some guidelines that will help you get started.

Reporting issues

If you encounter a bug or other issue with NiceGUI, the best way to report it is by opening a new issue on our GitHub repository. When creating the issue, please provide a clear and concise description of the problem, including any relevant error messages and code snippets. If possible, include steps to reproduce the issue.

Code of Conduct

We follow a Code of Conduct to ensure that everyone who participates in the NiceGUI community feels welcome and safe. By participating, you agree to abide by its terms.

Contributing code

We are excited that you want to contribute code to NiceGUI. We’re always looking for bug fixes, performance improvements, and new features.

AI Assistant Integration

This project is designed to work well with AI assistants like Cursor, GitHub Copilot, and others. The .cursor/rules/ directory contains guidelines specifically for AI assistants that complement this contributing guide.

Setup

Dev Container

The simplest way to setup a fully functioning development environment is to start our Dev Container in VS Code:

  1. Ensure you have VS Code, Docker and the Dev Containers extension installed.
  2. Open the project root directory in VS Code.
  3. Press F1, type Dev Containers: Open Folder in Container, and hit enter (or use the bottom-left corner icon in VS Code to reopen in container).
  4. Wait until image has been build.
  5. Happy coding.

Locally

To set up a local development environment for NiceGUI, you’ll need to have Python 3.8+ and pip installed.

You can then use the following command to install NiceGUI in editable mode:

python3 -m pip install -e .

This will install the nicegui package and all its dependencies, and link it to your local development environment so that changes you make to the code will be immediately reflected. Thereby enabling you to use your local version of NiceGUI in other projects. To run the tests you need some additional setup which is described in tests/README.md.

There is no special Python version required for development. At Zauberzeug we mainly use 3.12. This means we sometimes miss some incompatibilities with older versions. But these will hopefully be uncovered by the GitHub Actions (see below). Also we use the 3.8 Docker container described below to verify compatibility in cases of uncertainty.

Plain Docker

You can also use Docker for development by starting the development container using the command:

./docker.sh up app

By default, the development server listens to http://localhost:80/.

The configuration is written in the docker-compose.yml file and automatically loads the main.py which contains the website https://nicegui.io. Every code change will result in reloading the content. We use Python 3.8 as a base to ensure compatibility (see development.dockerfile).

To view the log output, use the command

./docker.sh log

Coding Style Guide

Formatting

We use autopep8 with a 120 character line length to format our code. Before submitting a pull request, please run

autopep8 --max-line-length=120 --in-place --recursive .

on your code to ensure that it meets our formatting guidelines. Alternatively you can use VSCode, open the nicegui.code-workspace file and install the recommended extensions. Then the formatting rules are applied whenever you save a file.

In our point of view, the Black formatter is sometimes a bit too strict. There are cases where one or the other arrangement of, e.g., function arguments is more readable than the other. Then we like the flexibility to either put all arguments on separate lines or only put the lengthy event handler on a second line and leave the other arguments as they are.

Style Principles

File truncated at 100 lines see the full file

# Contributing to NiceGUI We're thrilled that you're interested in contributing to NiceGUI! Here are some guidelines that will help you get started. ## Reporting issues If you encounter a bug or other issue with NiceGUI, the best way to report it is by opening a new issue on our [GitHub repository](https://github.com/zauberzeug/nicegui). When creating the issue, please provide a clear and concise description of the problem, including any relevant error messages and code snippets. If possible, include steps to reproduce the issue. ## Code of Conduct We follow a [Code of Conduct](https://github.com/zauberzeug/nicegui/blob/main/CODE_OF_CONDUCT.md) to ensure that everyone who participates in the NiceGUI community feels welcome and safe. By participating, you agree to abide by its terms. ## Contributing code We are excited that you want to contribute code to NiceGUI. We're always looking for bug fixes, performance improvements, and new features. ### AI Assistant Integration This project is designed to work well with AI assistants like Cursor, GitHub Copilot, and others. The `.cursor/rules/` directory contains guidelines specifically for AI assistants that complement this contributing guide. ## Setup ### Dev Container The simplest way to setup a fully functioning development environment is to start our Dev Container in VS Code: 1. Ensure you have VS Code, Docker and the Dev Containers extension installed. 2. Open the project root directory in VS Code. 3. Press `F1`, type `Dev Containers: Open Folder in Container`, and hit enter (or use the bottom-left corner icon in VS Code to reopen in container). 4. Wait until image has been build. 5. Happy coding. ### Locally To set up a local development environment for NiceGUI, you'll need to have Python 3.8+ and pip installed. You can then use the following command to install NiceGUI in editable mode: ```bash python3 -m pip install -e . ``` This will install the `nicegui` package and all its dependencies, and link it to your local development environment so that changes you make to the code will be immediately reflected. Thereby enabling you to use your local version of NiceGUI in other projects. To run the tests you need some additional setup which is described in [tests/README.md](https://github.com/zauberzeug/nicegui/blob/main/tests/README.md). There is no special Python version required for development. At Zauberzeug we mainly use 3.12. This means we sometimes miss some incompatibilities with older versions. But these will hopefully be uncovered by the GitHub Actions (see below). Also we use the 3.8 Docker container described below to verify compatibility in cases of uncertainty. ### Plain Docker You can also use Docker for development by starting the development container using the command: ```bash ./docker.sh up app ``` By default, the development server listens to http://localhost:80/. The configuration is written in the `docker-compose.yml` file and automatically loads the `main.py` which contains the website https://nicegui.io. Every code change will result in reloading the content. We use Python 3.8 as a base to ensure compatibility (see `development.dockerfile`). To view the log output, use the command ```bash ./docker.sh log ``` ## Coding Style Guide ### Formatting We use [autopep8](https://github.com/hhatto/autopep8) with a 120 character line length to format our code. Before submitting a pull request, please run ```bash autopep8 --max-line-length=120 --in-place --recursive . ``` on your code to ensure that it meets our formatting guidelines. Alternatively you can use VSCode, open the nicegui.code-workspace file and install the recommended extensions. Then the formatting rules are applied whenever you save a file. In our point of view, the Black formatter is sometimes a bit too strict. There are cases where one or the other arrangement of, e.g., function arguments is more readable than the other. Then we like the flexibility to either put all arguments on separate lines or only put the lengthy event handler on a second line and leave the other arguments as they are. ### Style Principles File truncated at 100 lines [see the full file](https://github.com/zauberzeug/nicegui/tree/main/CONTRIBUTING.md)
Repo symbol

nicegui repository

python website gui frontend interface robotics toolkit scripting webapp interaction interfaces
Repo symbol

nicegui repository

python website gui frontend interface robotics toolkit scripting webapp interaction interfaces
Repo symbol

nicegui repository

python website gui frontend interface robotics toolkit scripting webapp interaction interfaces
Repo symbol

nicegui repository

python website gui frontend interface robotics toolkit scripting webapp interaction interfaces