Skip to main content

High-performance React-inspired TUI library for Python

Project description

RC-TUI

RC-TUI is a modern, high-performance Terminal User Interface (TUI) library for Python, inspired by React. It features a hooks-based state management system, efficient virtualization for large datasets, and a powerful rendering engine with support for advanced widgets.

Features

  • React-Inspired Hooks: Use useState, useEffect, useMemo, useCallback, and useRef to manage component state and lifecycle.
  • Efficient Virtualization: Render lists with thousands of items smoothly using the VirtualList widget.
  • Advanced Widgets:
    • Table: Sortable columns and dynamic data rendering.
    • Tabs: Intuitive tab-based navigation.
    • Inputs & Textareas: Full keyboard support with focus management.
    • Progress Bars & Switches: Highly customizable visual indicators.
  • Native Performance: Core rendering and layout logic designed for speed and responsiveness.
  • Developer Inspector: Toggle with F12 to inspect the UI tree, dimensions, and styling in real-time.

Installation

pip install rctui # package available soon!

Building from Source

RC-TUI uses a C++ core for high-performance rendering. To build it from source, you'll need a C++17 compiler and CMake.

# Clone the repository
git clone https://github.com/Pomilon/RC-TUI.git
cd RC-TUI

# Install the package in editable mode
pip install -e .

Quick Start

from rctui import App, Box, Text, Button, useState

def MyComponent(props):
    count, set_count = useState(0)
    
    return Box(
        flex_direction="column",
        align_items="center",
        justify_content="center",
        children=[
            Text(f"Count: {count}", fg=(0, 255, 255)),
            Button("Increment", on_click=lambda: set_count(count + 1), bg=(0, 128, 0))
        ]
    )

app = App(MyComponent)
app.run()

Advanced Usage

Virtualized List

from rctui import VirtualList, Text

items = [{"id": i, "name": f"Item {i}"} for i in range(1000)]

def render_item(item, index):
    return Text(f"Row {index}: {item['name']}")

# Inside a component:
VirtualList(
    items=items,
    render_item=render_item,
    item_height=1
)

Hooks

from rctui import useState, useEffect
import threading
import time

def Timer(props):
    seconds, set_seconds = useState(0)
    
    def effect():
        running = True
        def loop():
            while running:
                time.sleep(1)
                set_seconds(s => s + 1)
        
        t = threading.Thread(target=loop, daemon=True)
        t.start()
        
        return lambda: setattr(running, False) # Cleanup function
        
    useEffect(effect, [])
    
    return Text(f"Elapsed: {seconds}s")

Developer Tools

Press F12 while the app is running to enable the Hover Inspector. Hover over any element to see its type, coordinates, and bounding box.

License

MIT - Copyright (c) 2026 Pomilon

Project details


Download files

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

Source Distribution

rc_tui-0.1.0.tar.gz (30.4 kB view details)

Uploaded Source

Built Distributions

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

rc_tui-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rc_tui-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (140.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rc_tui-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (119.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rc_tui-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (127.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rc_tui-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rc_tui-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (140.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rc_tui-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (119.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rc_tui-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (127.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rc_tui-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rc_tui-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (140.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rc_tui-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (119.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rc_tui-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (127.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rc_tui-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rc_tui-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (139.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rc_tui-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (118.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rc_tui-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (125.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rc_tui-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rc_tui-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (139.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rc_tui-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (118.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rc_tui-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (126.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file rc_tui-0.1.0.tar.gz.

File metadata

  • Download URL: rc_tui-0.1.0.tar.gz
  • Upload date:
  • Size: 30.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rc_tui-0.1.0.tar.gz
Algorithm Hash digest
SHA256 01620d994e2ee1cca5fa506b18540976a5c4b736e3b4ee819e23470167b5e6e5
MD5 09f05907947a38c7d88168fa3216284c
BLAKE2b-256 659b626aa480531efd84b1c55d16e81ff6aa601d0d3212d7aad8727a3472f363

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0.tar.gz:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ae2ca90d059b882d608be32eae0d24b3ff3bebe4800b286959990fbdec46f82
MD5 d3465f41acf0d20962f3dfe31620fa59
BLAKE2b-256 012ab243e94c2eee588cb3537c5fdaef12a9ce85bb772785f843fb0e180e506f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0c5c01c5304985aa5804f30ff3a2818b17a1f9825eb8956bd637b290b93918a
MD5 84bae64bcaeb5e8df163d0c0142df177
BLAKE2b-256 fbd5911528d8925038c85d0f1ae6d1d36b1ca63ffb818b468dcbbc4cb2582c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7be356fd5862214880678177352988f52264568a9653d1a5204254e203daad7f
MD5 023fae502fcfda60f9339b8cb0074701
BLAKE2b-256 1bb74084125c9e55df63793c29a2f6f4dff9a32f6a92631c699516ece9a7d2af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a0de7dae579bf434c0e9d65788f0f44e7f2627e1549e5d4fd289529fd292bd69
MD5 735e5af3abf18445e379ab65ac6fbe38
BLAKE2b-256 713d023f4a14f5fbc01f008526b4f356fd97740eea98b9c0cfe648ddf39f0cc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1696a885eae31aa39f0c055c97ca6bd1391d34423fe40068b7db7d88eb1ef0f8
MD5 3afc695bb8d773d4bd28a7d981682e3d
BLAKE2b-256 76b957de189564ad8f397bee5351f0cf3083a620efbe2aefae8f6c12971b83e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5330f8174a6a03390fb58bc6de074a489f2621f052231772874dbbb8136d39c
MD5 a371d1bf87e0483b49e816f75bfb10a3
BLAKE2b-256 c7ea6502e7155abcd4709a3b978066f63ed31252e5d6e7620d01f41b120635a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf5692eac6280edb35e5f96e363083406a6bf206b0667add40766c1858626024
MD5 d0d905dd092dc16883b7f856badb5f8e
BLAKE2b-256 3908cecb2f6c07acf4dd35ae02017da7a840e9dfd72708f06ebc221003e86817

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 db6f17196d516b050d77d0a9fc63e2f525251041c892e42094ceec8f9da3ee5b
MD5 cad2435609aad17e15b2704d41a1c94a
BLAKE2b-256 40f45576e4d03fe92ac7be965c14ca12a8f33ba911cd596943d869537ca5fc99

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be25fd666913f5b871e01a879b9dfcd0fea83c81ac6808b34545ff47ba7df1ca
MD5 60b9bb464ec00ca51ab363a0f14964eb
BLAKE2b-256 c55e4518a42d503af1bbdc877cb78d2063a8b9eb567f41b4e7e19e91c7fb5ae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fcf096eb9d0dfc4d6dc75d350b2a4d6e9a0a06a0da6e1e967509dac7a71e135
MD5 4f835a872bf4bb23559c35c78ec4b1e3
BLAKE2b-256 1cfd9a8e6a5b32b7738c9a8fc3dc0e047311293739143c176474449864ad730e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e39cde470a7f0f28b049541d06f7d317c99ae3c2fd0dacb08db22ce8fb467c23
MD5 9db508ff5fd99af29b12d341e80e4d63
BLAKE2b-256 36be43e1af043dec3c36ba747333730d32c350acbd42e94cce43b7f0d6fc8462

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7794a341bd5c725205a00e577a638361e3124660519ffd5a8176bb6e4d17cb8
MD5 99e1531d55bed80ab76eb494517fd7f8
BLAKE2b-256 d9792bbab10fccbd4f1000ab935cce557801b2257669609559314a17551a4fe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb916a966e07edc014a53dd259a0f6aafd8d7aa75ca2a2fc4fecc276681187e8
MD5 4177268976a6e4060dbb2aa60249a0ba
BLAKE2b-256 26d460dc00d401d9e7ac445a56599b0a734fdf4de1549c722a6359f56b137465

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed2841989426c7703c4eb637b8f3be69d5f1b0f5f7e010b763203415ce24c864
MD5 fedcfbbbd0a0158a4e33658a6908e64d
BLAKE2b-256 ab2a2d998f267765e3da42f44b69440aa0d9e0a43489d8fe52d2be0683dc1573

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83626da7be97e516db0984189a232d711c5e66c4a4f6292577efa27d1c677386
MD5 f6707806c6466a4b2b7e681c1b42a9f0
BLAKE2b-256 dd92e4034a6607e8421b53bae7fdb5408a510851e97e2e0cce656d8e3831a57d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7331f3becc259b5c9e3082552e89642f965751c6a7b715f08d0a91c5b5175b89
MD5 eed8b08b8b53bcce7cb0d752fe2eb6bd
BLAKE2b-256 7862badef6790e3800f3e0d5ed10c91e00ddd8e918e4d64cddc3ea329ebd2394

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01f3d9433d0ade1b4b55acdf39006fa9183ee0cd9ef8a20fe1f67549b11205fa
MD5 e415d97812cc8988a7af9edbd0833e20
BLAKE2b-256 b90abc03e21dfc7901c4a33dcb408723c3b9f46f009700f9471b181fdc015764

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b62b985ad1306230f15c23d8c3ee9ba213e8f52aad25d4e949f7c7967b936b5
MD5 2c1c713607d6994440a81d2202f232f3
BLAKE2b-256 ec0420f1d44248b7edf04caf7fcea3837dc4f00b3a4bad97c55fb2022b5e9144

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d5feff7c5af19c3aa356e8af23c5fc637a296613b039b71014a9d7b623d0436
MD5 08236faa656a3587f63d4ac54f3ac06d
BLAKE2b-256 bf0673225faec78d9b4595a7b09b7386a0b84dcc4ecade31f694d3af18e2a6da

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rc_tui-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a04a2c93c4ec949afc47909b3cad4b4c741a3d92af21a3ebed7a4c4fc407bed
MD5 cb7c1f493329a4c68b965214aeee2763
BLAKE2b-256 6d464a8d974024e11a4d64cc47d068018d82ae283e87232dbbb0c7820a75fac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: pypi-publish.yml on Pomilon/RC-TUI

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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