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.

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.1.tar.gz (36.0 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.1-cp313-cp313-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.13Windows x86-64

rc_tui-0.2.1-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.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.8 kB view details)

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

rc_tui-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (123.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rc_tui-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl (131.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

rc_tui-0.2.1-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.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.6 kB view details)

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

rc_tui-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (123.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rc_tui-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl (131.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

rc_tui-0.2.1-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.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.3 kB view details)

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

rc_tui-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (123.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rc_tui-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl (131.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

rc_tui-0.2.1-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.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (142.5 kB view details)

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

rc_tui-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (122.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rc_tui-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl (129.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

rc_tui-0.2.1-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.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (142.8 kB view details)

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

rc_tui-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (122.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rc_tui-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl (130.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rc_tui-0.2.1.tar.gz
  • Upload date:
  • Size: 36.0 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.1.tar.gz
Algorithm Hash digest
SHA256 442ef5ab9f873e280c34785245c8f4e79be28be343a448b1b32ec928f1646eef
MD5 0c93a2d423d1ebc0009bddd7953d99ca
BLAKE2b-256 9b132df1f02bfe99dec49a9242cb18d50545fb7cff87532c8ee77124076cc1d4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rc_tui-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.8 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c77055ecfd6413bb65699916fcc82bbff5108d7de4e7532a6932993287f7df24
MD5 47458e7c12fda4f6a24161361221ca32
BLAKE2b-256 c0b1e49829a92067cc3ff9ea699ac91412794f3e6e37d9e6c4260774e2937875

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7cdc836f5d1404b3bb299f816912f3d6476e77ca25aeac6c387cc1f982fcb45
MD5 6a365d92b124c9d8b19d815229f340d1
BLAKE2b-256 f14742c8537eee74f7fbe666f1a58f42065f821bfcc243f0cd40609e0530b23c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01bb8c75e17b5d46c3fe7cdf6de4b71f87ff15cb4d74b71d0658d4027d2cd895
MD5 095928a9edfb5cfbd7cc3d0bc7bca583
BLAKE2b-256 1331341c6adf86247a8937989b7f13a9588d104aba3579fff72c3cafeddde6e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3debdbb8b883cfbbe28ef72882355b4fe1f4e3914ac008a59167b5769fef3fd4
MD5 957b4fc9baa91134013828cfa766092a
BLAKE2b-256 12f7d325220e5c00fd83ff30720f85ca35bec1fae07f0d1833fa05d4452697b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 853c24be952c7a9c1ce5ff1c13bd90b39605f241052d11cbc894098743347263
MD5 a2fe08c9a644d39bfe39a41da7f5f40e
BLAKE2b-256 b9ae40c24987e13537c710b445464bf5b3decd6772ebe4fc7fbdeae0eaf25cbd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rc_tui-0.2.1-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.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a8453e5d78e0e3319fd368db60aff4068d2b963aa84a5b686bc03936f4e6be4a
MD5 a2244410e5b5a534eac5884c3fce1add
BLAKE2b-256 3e013831efd34a5e60855d001fdd80eff229fc6ce71be50b92ca76da5cb114b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbe95cb72605298114279b489b7678a9b62260a2b3098ca6edb54b25f4bafe72
MD5 0b8294e827f31433de4437b18d228ec3
BLAKE2b-256 dc7e47f5731ac7dfe7b36d779cdcc26c45d19fae7aedacd2cb35d432262034e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df5044159646a9f3f08a433da4441211a9c6a7311d2d302564a130bb14896572
MD5 1d959145e0f03341683bb9e881d88185
BLAKE2b-256 6ae99de96d2a880142cfdf2e8c25be37ec7028ab61dacba163c68bd328925c3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d72236df886f73474bf4ad913b14de9aa7610b3b11d5e5abfe2e17d841de500a
MD5 c2e3d51f57a7d76d66d4cf69c8d971af
BLAKE2b-256 b487427b882c55a9f7a60df8b2021c9192f9b963b358c680054fe2c6172f22dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dd70938ff5d2f0b6d501c539a63d62e6e552a86d6b1eb637b1ebaad4338629fc
MD5 b21fed808fd35366bcaadc474a78e38b
BLAKE2b-256 688d554e4a93c1e8f982b64f830f6a6af256489f1bccb7de0fe44efa017f7d24

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rc_tui-0.2.1-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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 976b521db04cad694409340cdbc39c53e0217e7b449b54754e363012bae4172b
MD5 bd767eb4730724a5b2db91ae7a38fe2d
BLAKE2b-256 90069ccb9c043ba4f3bf99f328cc47b7c198b8eb8875784887ef67b7d30fd747

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2fe71367969a2286fe847a9b1990597eea9c0db1e7343fb90188aea67c474ed
MD5 399ac29f467316ad678bfafbbe452667
BLAKE2b-256 33560d4846e6dea725eef6a07a4a335b0d0e6b0165ac7dca05cfcba52ef9ab71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c76b50f026e730ffdfb5913a1f8132fd78a358549d5e0c103b448c2a1be61fe3
MD5 30cdd509f393146be20e768762b38d5f
BLAKE2b-256 a7a3c887545c3ce9ae5cc0a3ab0288da100e0b82172c7197f0c9a902fe311d86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 960b6e4243e68e22dcdd2319b7d00e61d94cd506b43bd5bd85e4d31434804e3d
MD5 f80ece0152db813081e52078947fe0b5
BLAKE2b-256 f3d731b63cc1bcd414ed0863a16219a5eb5f8ac7f5e3d8990e932e1124748531

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f30b68b1799521212911254013a28c3810f4b0c7366658157f2345f071dcc19
MD5 036e39e9ec3410368abba69c1f83d9f3
BLAKE2b-256 d2d760ebc810ed553e745fe9c2ca3adf360114292cc0a66877c45dda9f486632

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rc_tui-0.2.1-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.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 23242f142f5c573537c111dc835ebfdba4de09c6075fbe7a5beb7bc91ffa516e
MD5 e2ad821e4f934482ed5fc230bbfd6662
BLAKE2b-256 c50b2e41d162526d51815dc89fb5b8d30429dff15a0e4eb619ba4f5f29b4cab5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee88c2a1641ea4c357234a7a73bc519cb3ee662c6cdd5fe4d277c9f5c52ed82a
MD5 368420460469d27bc1cfbdb7f8f103c1
BLAKE2b-256 34b6f28e8754eae7467dd883f5af7302d2868971cdbb9065e27188b6c4ed067e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66f75c9cccb216406862809d07238e1e304bbaa9f87befff3131ce6f080845bd
MD5 93b925ca382c7f3d8bd3dced27407da5
BLAKE2b-256 8fc89fa941ec57d35a8b86d69b3291f8e7948978e573de8a1b42e66563fffb26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49c5429255c07485ae3c10c7d80c48a9c87afd000c7922439964e8e6492c43ce
MD5 a70db8b9fd99fc0780ff769c0a16d144
BLAKE2b-256 b3b81385111db00d8dc42bfb7bf7e78d434b455c2bba0a6a1f229d4f896af210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88f962ff693f463c1f6ba4ece8d7ebdc4ce61aecd197c715284dba93761dbc97
MD5 4c1afefd282b9aa99dc837f4ce5a3d5b
BLAKE2b-256 6ce4cc75730c0460ff5cddc3965270862dd9c3056bd86c41eddc7200050659ce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rc_tui-0.2.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b6820dbfe12d592fbdd9dc887624642e00c8eed31315e367c9b783e992b5c525
MD5 00bbe7014e365c9528dfc5a61678d32b
BLAKE2b-256 5f519fc9eab7e041e09cdd2cfe84b91847d4d5f59b52c74b5831393600c35031

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de5e44550e6c03b3e2830f5055ddb82cd99673e7c439efda5db18d90a8e37cd0
MD5 928df6a1832f94dffae36bc28d739032
BLAKE2b-256 f05c83d024ed1d932b788ef9828dbb9e8e41542b37d393c42b645d2faabb90b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b92e516d495a28b0a921e261c6e004d8db4a8ac4f24911772eb30cfb6185e7d
MD5 58045cf4836e29ea7c8ec18cb7e004bd
BLAKE2b-256 d88dc388165d1176b13835710a08e6fb79da3ecbd1cdb5b538dda2de68653ab7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 211b08c567e9eff57b5fb3beedc9d90a4527437f355dab98a429aafe6b8cfb25
MD5 f2ad7d576c95eab9b103c53388a340ec
BLAKE2b-256 54fb57caeec0edda246d05bd20be534c7a995a762021fdb422c5e0a4082b6b40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e8f699ad22973706daa27c1d5f3c155d8799bd5e351e8e2ea5302e01d9cf231d
MD5 9c20cf38d1fea07610d9d45700c57d3d
BLAKE2b-256 a00ef6c90d32dc1971eb88b30ca783399d44ec2051f3a6b8844fae589cf20be4

See more details on using hashes here.

Provenance

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