Skip to main content

High-performance React-inspired TUI library for Python

Project description

rc-tui

rc-tui is a high-performance, React-inspired Terminal User Interface (TUI) library for Python. It combines declarative components and hooks with a C++ rendering engine for fluid terminal applications.

Why rc-tui?

  • Declarative & Component-Based — Build UIs with components, hooks, and a flexbox layout engine. Familiar if you know React.
  • Hybrid Performance — Render logic and terminal diffing in C++; layout and component logic in Python.
  • Rich Styling — Hex and RGB colors, style inheritance, pseudo-classes (hover, focus), and text transforms.
  • 30+ Widgets — From buttons and inputs to tables, virtual lists, markdown renderer, and modals.
  • Cross-Platform — Linux, macOS, and Windows 10+.

Key Features (v0.3.0)

  • Component Model — Class-based and functional components with key-based reconciliation.
  • HooksuseState, useEffect, useMemo, useCallback, useRef, useWindowSize.
  • Flexbox Layout — Column/row layout with flex_grow, gap, justify_content, align_items, padding, margin, and percentage dimensions.
  • Keyboard Navigation — Tab to cycle focus, Space/Enter to activate buttons and toggles. Focus trapped inside modals.
  • Rich Styling — Hex and RGB colors, style arrays, hover_style/focus_style pseudo-classes, box_shadow, text_transform.
  • Full Mouse Support — Click, scroll, hover tracking, tooltips.
  • Window Management — Stack-based windows, dialogs, modals with auto-dim background.
  • Advanced WidgetsTable (sortable), VirtualList (windowed for large datasets), Markdown, Code (syntax-highlighted via Tree-sitter), Accordion, Slider, Timeline.
  • RefsuseRef wired to LayoutNode for imperative access (v0.3.0).
  • StyleSheet ValidationStyleSheet.create validates prop names and types at definition time (v0.3.0).

Installation

pip install rc-tui

For development:

pip install -e .

Quick Start

from rc_tui import App, Component, Box, Text, Button, useState

class Counter(Component):
    def render(self):
        count, set_count = useState(0)
        
        return Box(
            flex_direction="column",
            align_items="center",
            gap=1,
            border="rounded",
            padding=2,
            children=[
                Text(f"Value: {count}", style={'bold': True, 'fg': 'cyan'}),
                Button(
                    "Increment", 
                    on_click=lambda _: set_count(count + 1),
                    style={'hover_style': {'bg': 'green'}}
                )
            ]
        )

if __name__ == "__main__":
    App(Counter).run()

Press Tab to cycle focus, Space/Enter to activate the button, F12 for the inspector overlay.

Platform Support

Platform Status
Linux ✅ Fully supported
macOS ✅ Supported (CI-verified)
Windows ✅ Supported (CI-verified, 10+)

Documentation

Running Demos

python tests/demo_app.py
python tests/demo_stylesheet.py
python tests/demo_features.py
python tests/demo_features_v2.py

License

MIT

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.3.0.tar.gz (39.1 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.3.0-cp313-cp313-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.13Windows x86-64

rc_tui-0.3.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.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (145.1 kB view details)

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

rc_tui-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (125.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rc_tui-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl (133.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rc_tui-0.3.0-cp312-cp312-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.12Windows x86-64

rc_tui-0.3.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.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (144.9 kB view details)

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

rc_tui-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (124.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rc_tui-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (132.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rc_tui-0.3.0-cp311-cp311-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.11Windows x86-64

rc_tui-0.3.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.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (144.5 kB view details)

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

rc_tui-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (124.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rc_tui-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (132.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rc_tui-0.3.0-cp310-cp310-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.10Windows x86-64

rc_tui-0.3.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.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.8 kB view details)

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

rc_tui-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (123.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rc_tui-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (131.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rc_tui-0.3.0-cp39-cp39-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.9Windows x86-64

rc_tui-0.3.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.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (144.0 kB view details)

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

rc_tui-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (123.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rc_tui-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (131.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rc_tui-0.3.0.tar.gz
  • Upload date:
  • Size: 39.1 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.3.0.tar.gz
Algorithm Hash digest
SHA256 2156a961a4a956803a2fb62b7cb6d8dc6b1f10d88611b60d5a24a813cbe2c384
MD5 0dd37e19692107cab5eb2737a92f0304
BLAKE2b-256 60abe72f1225c673f8b152bdc65bfa90c87be8997eda0ca74c0abc3a7a578370

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rc_tui-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rc_tui-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 702c74175fa9dc58f10a42c4ff3c83c19347985d33aaca49cd17f99ca2e0e06f
MD5 80690f7b5dfd2541630f9c7ae1980693
BLAKE2b-256 4c8d11dafc83aba530444a3888786a6c4b7e1c8883036336732ad06cb1acf260

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.0-cp313-cp313-win_amd64.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.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fedd2e63c048513bad8633452e8167ce88be4b1fb72306257d752357fe6de07
MD5 c4bacec80e2cab2fe27403fa2b93c65c
BLAKE2b-256 a2dbd8fca5bae7c25248beb4697a2460ba11f9332ee0c170f14ae9a6e017a5c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9e0b584726e687f12b4cf6223182dd6dec2d980000c19f6bfa0092d93b26ea7
MD5 6483433fe47bcc6239cf7155d77d9490
BLAKE2b-256 4276e2759a36abe38e4aa152bdc0e206bd38002ca366299208770cd2546a8672

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec8d3744e050a978b49ce1af4feba19984c683594c53c639a6fd2211ff361d3e
MD5 ad1a75f4d49fcf0e25f01c37098adfb2
BLAKE2b-256 8ece3da4c88aeeeefe14b44a7b86ec89f286e355621fcb28c67474137bb5ac39

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2a0988e7b5d408bdcd300226f7c122d48f2640eb11926bd9d8ccf6bb7e0aa91d
MD5 bb8bb87fe0a827bfb31487d9f491b7e8
BLAKE2b-256 9ae8b0f62fc91aac1edf484604f20c8d24ed54dab26ad5e835e05ecf108dbdae

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rc_tui-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rc_tui-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7261c3a08d7e7d44ec71cf21fd06f954cb5d30ebe10cb1946496417d51f82989
MD5 ebf05cd02ff3b948d94e0ee13f040b87
BLAKE2b-256 4d69599fcbed4d12ce818c044e0daee62b6440e2327ca8f6dca643c0ae0cca46

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.0-cp312-cp312-win_amd64.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.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f4303c9dc81b3ed58698324af99588612addf0d738bbfbf04f74f77b2c7e70a
MD5 7bc4ac853b74c3b23731f63cfa729fe0
BLAKE2b-256 13afd6709cd8f43209b0a444c53eef10b47edd38236fbfb5fb16ec4485564812

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 acc1da3a646abc8dac03683f8853865c0192ed23ba0eb43789fe6e6d93968e47
MD5 7570eef9a5e47311c37746eda2aa8a3b
BLAKE2b-256 0e056f6b671dee49efafd571fe5f60ab991d60b07a903a55a951b145afe51381

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afa14580f09006373a53e7aa8fab604f72f1db5095c37f87bbce95920f25c714
MD5 3e30f506412fb0543f880a123b6c51f3
BLAKE2b-256 e55ed5d5b8bcad76db7619d71c3d09225586ceb05d2dc3e4f37e6e037372dd4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5fccee4437323aa79122a6572037eef850d80525e0fe774b42f4a06f5266a0b7
MD5 05e2873c34632ede2ff9b06a920f43f9
BLAKE2b-256 593c27a65d64c777a695dcaf7ef66ba03c6cb96258280f3eedea004da8390e00

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rc_tui-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rc_tui-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b973224648b2d44f134e5e501918f9838fd9bd6b6d03e87a4a0fed4f33457698
MD5 9d9958e1d0f010754ba333486309af4e
BLAKE2b-256 d3619022d24a09045f555b597169e9afbd1d3c65cb0a4f52ed3d6b6629dcd3af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.0-cp311-cp311-win_amd64.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.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05a264296fe34f0f9e388f8cf1e7369c62ba3bb70d3bdfb4dd396788043bf6e3
MD5 5d22109322eb26f0ba2ade7547102273
BLAKE2b-256 4c5eef01d31d6092c918fe99a16fb87959d412a69eb96eefba8276a57fc1a8e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e47c72583209c2a9f248be9ca739ad96bd0d49d7cab0637ec141d2729bf45148
MD5 5a3f7c64ba85640ec131275c9ff66d7e
BLAKE2b-256 fe59e0fee9f56e478d161827ddbf5a72a0c18c63eea0c996e6119f8ee60458a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 050954f3d44ce9e52d5bbab6a79d71293b40ac2d81761aa13552676895ef1891
MD5 7af11c00ddbcb92d8b9ae933c6babc36
BLAKE2b-256 49c4399cbadfb6ed3e0daf2d77955bc9d8e91ec413c880d7e2ee7aaab538dcb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74a2808eb182474c67f706e289ca4fe1719f17db4424ee06e251425ae41ef0c8
MD5 69e280bb5046126baccda7419c53304d
BLAKE2b-256 8c3609130df5f240f3d7f29a42c9aa44a528c6ca335fd5f86794ab2381359e39

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rc_tui-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rc_tui-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 26591a72f98301852ebe83e87448832bb0252c58d4a8bb7929b47fe483c10fe7
MD5 c53fc8178255fdba45361f0cf638c3fc
BLAKE2b-256 2e1d452665593b0107e492e8871f9febd0961f4b8aa8073444a29e599f17b04e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.0-cp310-cp310-win_amd64.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.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e9171c5a11df1c56f6088dbabafd51b6ce4326a7c603c46f52e64a070de6f90
MD5 27072a13760e33185c687c0ef2420e31
BLAKE2b-256 bd3dda8beb5598fa62b2da013dfabcc437feee08a8fa0a9f6b3b4fb7186eb430

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5b25c9f8f7361e475b1d97b68ba2f80448feb8f7c0b3faf706311ad692ff06d
MD5 706653fd459699b689590810bb01eb83
BLAKE2b-256 28749260901524fda9c65cdeac16425acff8cd6e6b6773c6605c045a0071b082

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e94b59ab464dba6ecf5ec8b205bc641fb2047596099b09d49cf1c94012ddf5cd
MD5 b81fbca4207cdc2c7c17181f617b014b
BLAKE2b-256 51db261906cd66e85b4bb39b2dac96cde1badf2ceda79d52c8dfd79f8b9769f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfad3e9c06a7d111192bd6d962cc43ac25be98f778362bed5b3430117c9708bf
MD5 ec87a966678bc8388dc95385576262cb
BLAKE2b-256 090998be2ce02724320aa9ca47e0db2797fa793b70799b90010444bec02e61d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rc_tui-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rc_tui-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 002480e36c89a74a44f197b6dbcdc97dca6fc92bab8c4e81ff7749db980b0083
MD5 0c8c4c46f99bda0170a08d3b015d9f87
BLAKE2b-256 5183a3dc325f313292bb24d5725ef55ffc7fcc05e89fd1e22edffbb7c0aaf4ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.0-cp39-cp39-win_amd64.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.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60d7e0ac5a7961e0ca777510bb967360434f8ec62763ed6ee85fd22b9cfd8c01
MD5 8532555c336e21980168e91cf026a0a5
BLAKE2b-256 55df1f5ac21fa9fc3286241ab3a43c8ae838aac9cef262d41da1d50eadf35b5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4050b4ad17b02541064a0ad02d2f6d3239fc8992a85716712c22b65070273ec1
MD5 d87c20d7731b0813537afc076aa075c4
BLAKE2b-256 46ed84f8b163ef0c42314ee2cc95fc9788dbb36c9172a84a235a0f8a76401251

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3819bc9b655902260b458dd8ed21f7288eb32ba5097d4d003e36259867379db1
MD5 abaf1fedf4f99dfef33fa881be0721a6
BLAKE2b-256 c8629bb69e4300fdbf394a4251a4296794778a6dad5a4a21488824166851144a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rc_tui-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15bda1ca46acdb877d122238caee525ea407f9029d2a531344261cd0f52d82ab
MD5 a0ac0c64652208e189c4c0a4c4a57ef9
BLAKE2b-256 77f247571044f0df5f1645240be088644d6e210753b8ef5b3d4584f929c9e5ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rc_tui-0.3.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