Skip to main content

Build modern Websites and Apps just with Python

Project description

Rio Logo

Rio is an easy to use framework for creating websites and apps and is based entirely on Python. 🐍
You won't need a single line of HTML, CSS, or JavaScript to create beautiful, modern apps.

Tutorial - Examples - Discord - Docs - Source Code

Rio brings React-style components to Python. Pull from a wealth of built-in components and combine them to create your own custom components. Then combine those into entire apps. Best of all, Rio apps can run both locally on your machine and on the web.

Rio Version Discord Python Version License GitHub Stars

Features 🧩

  • Modern, declarative UI framework
  • 100% Python - Zero HTML, CSS, or JavaScript required
  • Over 50 Built-in components for common UI elements, such as rio.Switch, rio.Button, and rio.Text, and many more
  • Integrates with modern Python tooling: Thanks to being entirely Type Safe editors can give you instant suggestions and highlight problems right away
  • Apps can run both locally and on the web
  • Open Source & Free forever

Example ⌨️

# Define a component that counts button clicks
class ButtonClicker(rio.Component):
    # Define the state of the component.
    # Changing this value will affect the GUI.
    clicks: int = 0

    # Define a method that increments the click count. We'll later make
    # a button that calls this method whenever it is pressed.
    def _on_press(self) -> None:
        self.clicks += 1

    # Define the `build` method. This method essentially tells rio what
    # a ButtonClicker component looks like. Whenever the state of the
    # ButtonClicker component changes, rio will call its `build` method
    # and update the GUI according to the output.
    def build(self) -> rio.Component:
        return rio.Column(
            rio.Text(f'You clicked the button {self.clicks} time(s)'),
            rio.Button('Click me', on_press=self._on_press),
        )

# Create an App and tell it to instantiate a ButtonClicker when it starts
app = rio.App(build=ButtonClicker)
app.run_in_browser()

Installation 🛠️

Rio is available on PyPI, so you can install it using pip:

pip install rio-ui

Getting Started 🎓

Rio comes with a very helpful command line utility to help you out. Create a new project in one short command:

rio new

You can choose from a variety of built-in templates to get you started. Here's a complete example to create a project based on the tic-tac-toe template:

rio new my-project --type website --template "Tic-Tac-Toe"
cd my-project
rio run

You'll have your first app up and running in seconds!

Status: In Development 🚧

Rio is still in development. We're working hard to bring you the best possible experience. If you have any feedback, please let us know on our Discord server.

Contributing 🤝

TODO: Write how someone can contribute to the project. :)

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rio_ui-0.5.13.tar.gz (3.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rio_ui-0.5.13-py3-none-any.whl (3.5 MB view details)

Uploaded Python 3

File details

Details for the file rio_ui-0.5.13.tar.gz.

File metadata

  • Download URL: rio_ui-0.5.13.tar.gz
  • Upload date:
  • Size: 3.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.2

File hashes

Hashes for rio_ui-0.5.13.tar.gz
Algorithm Hash digest
SHA256 82f99e71427aca0bfc66738af70176e80856fb5051a5fdd50e6d0ffb5a401004
MD5 ed02fd4dfc237cbdc4348a3fffcce735
BLAKE2b-256 5477a96fa0068d4ab6c7958cc220219c4ec9dd8928f1121ed4c5302c8b108b7c

See more details on using hashes here.

File details

Details for the file rio_ui-0.5.13-py3-none-any.whl.

File metadata

  • Download URL: rio_ui-0.5.13-py3-none-any.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.2

File hashes

Hashes for rio_ui-0.5.13-py3-none-any.whl
Algorithm Hash digest
SHA256 294598362cc52a0b9952aaaf6ee196a93e0b96017576199fc6e552e27730a364
MD5 75d161e25ae9b93698609c7164fd99a0
BLAKE2b-256 47e83dd9b81fb2d1efe0d9507a8ba5cf8a94dcda2a6843d25db2f804c177bc2d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page