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 the declarative power of modern web frameworks with a high-performance C++ rendering engine to create fluid, beautiful, and complex terminal applications.

Why rc-tui?

  • Declarative & Component-Based: Build your UI with functional components and hooks (useState, useEffect).
  • Hybrid Performance: High-frequency render logic and terminal diffing are in C++; layout and logic are in Python.
  • Advanced Styling: Web-standard colors (Hex, RGB), pseudo-classes (hover, focus), and rich text attributes.
  • Cross-Platform: Fully supports Linux, macOS, and Windows 10+ (Verified via CI/CD).

Key Features (v0.2.0)

  • Rich Styling: Hex colors, inheritance, box_shadow, and text_transform.
  • Interactive Pseudo-classes: Define hover_style and focus_style for responsive components.
  • Full Mouse Support: Real-time motion tracking for hovers and tooltips.
  • Flexbox Layout: Powerful layout engine with gap, flex_grow, and percentage dimensions.
  • Markdown & Code: Built-in support for Markdown and syntax-highlighted code blocks (via Tree-sitter).

Installation

pip install rc-tui

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=1,
            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()

Advanced Styling

Text("Polished Text", style={
    'fg': '#ff00ff',           # Hex colors
    'italic': True,             # Rich attributes
    'text_transform': 'uppercase',
    'hover_style': {'fg': 'white', 'bold': True}
})

Platform Support

Platform Support Status Notes
Linux ✅ Fully Supported Primary development platform.
macOS ✅ Supported Verified via CI/CD.
Windows ✅ Supported Verified via CI/CD. Requires Windows 10+.

Documentation

Examples

Check out the examples/ directory:

  • counter.py: Basic state management.
  • styling_showcase.py: Comprehensive styling engine demo.
  • dashboard.py: Layout and progress indicators.

Running Demos

After installing, run the demo scripts directly — no local path setup needed:

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

For development, install in editable mode so changes take effect immediately:

pip install -e .

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

Uploaded CPython 3.13Windows x86-64

rc_tui-0.2.2-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.2.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (144.0 kB view details)

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

rc_tui-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (123.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rc_tui-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl (131.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rc_tui-0.2.2-cp312-cp312-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.12Windows x86-64

rc_tui-0.2.2-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.2.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.8 kB view details)

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

rc_tui-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (123.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rc_tui-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl (131.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rc_tui-0.2.2-cp311-cp311-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.11Windows x86-64

rc_tui-0.2.2-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.2.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.4 kB view details)

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

rc_tui-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (123.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rc_tui-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl (131.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rc_tui-0.2.2-cp310-cp310-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.10Windows x86-64

rc_tui-0.2.2-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.2.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (142.6 kB view details)

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

rc_tui-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (122.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rc_tui-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl (130.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rc_tui-0.2.2-cp39-cp39-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.9Windows x86-64

rc_tui-0.2.2-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.2.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (142.9 kB view details)

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

rc_tui-0.2.2-cp39-cp39-macosx_11_0_arm64.whl (122.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rc_tui-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl (130.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rc_tui-0.2.2.tar.gz
  • Upload date:
  • Size: 36.2 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.2.2.tar.gz
Algorithm Hash digest
SHA256 b5817052c93b35c825bc50a6bd385e505d30ae543beb653970658b41bcf00c9a
MD5 86790cb7b648f79cd9233bcbb4c1c60b
BLAKE2b-256 e49191ebb2eae9397c2231b1b24ef3979a0f24d1e0b9c0947bf67f258d27b7c1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rc_tui-0.2.2-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.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 511306e1e9f6287accd34073f0cd688ecbae6afac69bdea2a2ff58e8d562993c
MD5 581c39d2c162e56bb731be255f298965
BLAKE2b-256 8f547b2dc64fb7fac7c7866eb7d8a84c3a396cb844055c30040c8bab32ab9fdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f111d438b3236220f83a8d539fff1328cc4d05b492bf7a4dd1270f741fd72ae
MD5 b791beefcda7c62eb984e179afb28faf
BLAKE2b-256 65ea6887fd2008d2bfa548cde83ef696d30fd4ee99c0f8b5e323364b3c36d53d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 421cddfd69481824f0275d3234d49a4530d4ed60b8e7adb15aa769a9862943d0
MD5 a31793b1049015ecbf5f4307dfd6f6ea
BLAKE2b-256 7f5fc9f9e4ea283fac9f650e95cf9bd523ae38abec8d9770965132565b18db61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c2c1320cf846addc0f194b22e3582b2026aebf5dcbeba36365eeab301705449
MD5 3bf004fb249131e369a7fc24e6bae699
BLAKE2b-256 d36f2e54f2acce3eabe1ac77549c32e2da37455c66f64e02bddf00f5b86c7c5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2b3348329874303692e827355199ef240bb63a5454c98c74b0f176045adc1b58
MD5 23a8e110ed58290e8dd169fb656345b0
BLAKE2b-256 f7e84ee067de3ca1ede3456c0afe2df80539629ae37c9c10d298b6d34494d385

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rc_tui-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3ceb1f011ccff2e72e315f28c390bdc9e3462cdfd2ae1750dc78962cc9bc2e14
MD5 2f26e2f95b69c84f3831374ea113b0ac
BLAKE2b-256 c2c2722dc4e4b702874015dee8e4d6b3496b152d4b50984ce8919edfc37d0ed0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1af99a24aca766643866012861ca12d0ebd177eb97ae50fed90923e00c780fc3
MD5 c75cf8635337ceed944142e18f56ff5e
BLAKE2b-256 b017a1384b903167dfc11eb89212dd7621b71f82c8fa9bb6d7adabba82c8bce4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8d8dee3e427eefd3b9ae4c5a0c0c87ab223ef103879c79f980668af44f56ced
MD5 65b12272df0f1797e40308116face552
BLAKE2b-256 875b20e90d5743213e712fa5760a0c4983f50a9dece79a98ec9a7cea72a6d864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b6c31a5e90fc3f6d714a86723cd34549c7a1809e2cbd9cf222ebebef794cb87
MD5 5445ed1a6ff53ecf0cfd07fec9457178
BLAKE2b-256 d17510522d7a6585ef19e2612104855228420fd846a7b7ca244466809bd60849

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2101798ff888aafce6c771c64b1c94d16b9c4b733515aa06e35a14e1259601f2
MD5 4eb6bd5a410f4fc150f6349df52bfa2e
BLAKE2b-256 83086047d8283fccf05e97f97875e31c9eebd3221f950a2464f6604455041720

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rc_tui-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 35bc6fe3ed24576c00ec2ee60fb6ed79583dbaad0314d0df3d31ab1522b25e66
MD5 9beb078f3ced252249b19e87149c7ed2
BLAKE2b-256 5771ef0f7f49b9530802bb1f714197607d3b14f0048a44af0c2f72079bfc9458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd304e3aea9505778ab276c2fb7a8a5b628d0ea269cead50e4ddc0e932113812
MD5 38323c50bcd2f4897b282e8fd032ca1a
BLAKE2b-256 45f7bb8a50db8088dfb2b4dd4e0d5ebb4a376826bd5dbcef1a1e6ac302ca6cb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3570fa7fb244270fe7354a1eadc9080bec4f42fb165ba42a64def7ccd57c72a1
MD5 e7ca057826275c099a5d5199b1b285ba
BLAKE2b-256 d833bf3d44f77ae6d6cf386c93ac467422ed8db1abfb3445fe6d994182edccec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d89980607fc37d1e51b6c5317e887ff7cdb36ddf590a5f7d7717db739694064a
MD5 791d6d4edd333d68675f7fa25e5749a6
BLAKE2b-256 869e02fe7e2d0b91f27b196db1dad689872b80599d5a473e120083758bfc7f68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e71379998c08b436f18610a46ca7fb8b379c173c2113b615aa64416908193d1
MD5 225e844ca4f6980c3a7d846b079e81b8
BLAKE2b-256 403deac5a4adeacce3f26411b21a1781fa0fd2d423a89b8c76e03b0545c09b75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rc_tui-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 18ce0d48eb45318e8f612c76d71f91d0b2691c6fca17bf7a44e0e4873191b0d6
MD5 285f18a6861b5ea89aca624cebf10041
BLAKE2b-256 bb0a7c33a0d21e3aee732cc37aa6a7787279429401936e425809e3d1535de05c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a1daa2778328cbd5ed043220c8c3b2d1f1998631211a71666f52c8040a8e00e
MD5 4cbd20d6656bb2ccf42cd0bbd57704ff
BLAKE2b-256 792683d8fb4853b2a533b7e3a636f96604b4c7f1f3c3a2eaec3ae7ca41e296c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33e4f8a2aa0f37e966a8cad98c8be8c59b65cfcddb830d77e86d5ffdb0da9177
MD5 7e600b958410d88652dc0c2fe0af10fe
BLAKE2b-256 78b7784b4c5bc5ca0129deeba911ee6a167b6319904cf5ed504fdd5a131aca19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e62a1e9676eb3edbd86bfabfeb09c413d5948ab2b5cdfdc4dc22508cdcf5be77
MD5 4be5013853f73d797436a9ee3edff55f
BLAKE2b-256 331a477ce5fdc5f03c1c3af893257b67847f0e86d2002616cd09e5aac0be3eb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 564ef9d10c41042d2d9e9018576dfb562ca8ca54bb455fb915aab9be17a6f47e
MD5 c2fd72e09ea71ef009ed35414c5c7a25
BLAKE2b-256 02a68fbd5c6938d02650cb5a709eec6b7f060a752c1aa1516bca85b1596355d7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rc_tui-0.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 7.7 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.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 973293b934d417eafb889fb5cb10842e73f5ba7dbe16e551c7a78a338b7f5396
MD5 0bfb36b8bcf592f409d92c1d5721dd5b
BLAKE2b-256 0ddb682d9d13a5ac8948b023f64cea9d976070ba104470209129ece9e86d310c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 009dcdd85fc1474e319ca23153425b9916348280b148bee93d3015b7919cf0fd
MD5 cd1351b4c7a3f1e409a241b87b19891c
BLAKE2b-256 8a7fdba2dc7a7137eb5931079658a819f9fcf38f14c359fa5e9fa9a1667ee1ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33deba882067f5f3b4b1a34258b289a5e6803781a0102e99907785677c5ac991
MD5 b0ed3d05cb1d5fd0f87a61b1c7985c60
BLAKE2b-256 998ca6077dc20e4ba9c00e174ac2942fab1d026eca675bba52fbd9d56efeefc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8155e5f34cf2a2fbe76213639e7048187095aa53aa97e70e29bf3376b48bae3
MD5 34aa09d1a299a141b8cd674c5588f03f
BLAKE2b-256 2e6e9e854961bf0ac585f0278b31bc159e8578545f73529bccea67bf37575fec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2ec8a7f42c502d762b7a89cfbc53040c9121067edbc977e6eed96e865b7f0b80
MD5 0f85720c2c6f164bd9d613b543a89b25
BLAKE2b-256 e3b7d1d4abe9c6d73fce39185598bf3e7ae0d449d9f97b35e0a0717b1cf56cca

See more details on using hashes here.

Provenance

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