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.0.tar.gz (35.7 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.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.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.6 kB view details)

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

rc_tui-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (123.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rc_tui-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (131.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

rc_tui-0.2.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.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.4 kB view details)

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

rc_tui-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (123.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rc_tui-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (131.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rc_tui-0.2.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.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.1 kB view details)

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

rc_tui-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (123.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rc_tui-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (131.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rc_tui-0.2.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.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (142.3 kB view details)

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

rc_tui-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (122.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rc_tui-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (129.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rc_tui-0.2.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.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (142.5 kB view details)

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

rc_tui-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (122.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rc_tui-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (129.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rc_tui-0.2.0.tar.gz
  • Upload date:
  • Size: 35.7 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.0.tar.gz
Algorithm Hash digest
SHA256 1b4b9de2d8f5307c231de6a5c82ef0bb3c279610d7c41343aed9ba4bd955c6f4
MD5 e1ebec900232d30139c4896e3e91685b
BLAKE2b-256 99e3ef59e898979c202083bfb85ee96c96d30a6622ce2a34a96693b5d0d643cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e45e9271b974e7ea494a5bdb8da591d089c352287a6410864d19693c5b7983e
MD5 9ec2e7f43b5791b560fd44f9d71563b7
BLAKE2b-256 3a3490984ffe05659999179f3ec3e16721d46a03c865a95c87e20a0a7b8c9ae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58452c57a24cf65cb971a7741bc9d5038176d45c3eb92e6c6adcb514233653ca
MD5 a61a95c3bf13cdd54f3d8907597db1e3
BLAKE2b-256 4d008578080f4fd2c532c4477468de79044819bd377e2faac4156ada5de61e24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70344ddebaa964c09e04329926fd766aa1c5b0901e5dfc845fe4f8818567b9d8
MD5 8376d4149dd868d1035006092a50801a
BLAKE2b-256 0942590053d550210465570d8bbeb82a388ee9e6f79c48d80c89a4106a3fee7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c9d7abccb5aca3d227ed1214166dad9190c1fedd4af5f8c428c06a70533adbd2
MD5 8838b90d9811fa980efa1bebf9d9e76e
BLAKE2b-256 5dd72b0e132c2bae5853616992da3c6b6a61aac73a61d1055680dae5caddac5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f61ae1bcff14bfa198b1177ce746fdd055f2f1842d5aab20de64553614f34771
MD5 06a1ad97c9096a54bd8b48b90ccaf77c
BLAKE2b-256 0fa9977550ff5669e887bc82e0883155bc3cd8efed0ea8094e80c3c7e1b8f16e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56f70fe2414754a4fdd659440ad91a9d0be75777a384b00fc821587715ab0bc9
MD5 546fb0c102f06090ae761c97b5fc2610
BLAKE2b-256 c532322d86840de71e0e0b6efefbddbdbe537da2420e804254a1b2d13a21caf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31170c650306689d3da12570c63527aba82df88cfcb8b54c9ce313d80396aea4
MD5 1fa4afdf4fce8555f1ae148fdbc5c9f3
BLAKE2b-256 34d06b1e9cca27bb730ab235e011418d540a88f49e3505a07589eeadd5fe4dc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d9ba508b6a4fd5dba783c2e70412f691ed192b7011929483c04b176e682ad723
MD5 024f519330fc2a5aaf0306d73a7258d3
BLAKE2b-256 4ff6532db8ad86d7cff2274161760d4620a3b51d5b6eddc495344c9d552761fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d9ee7516f92cdcc5b80866dc49a7e2e8b6c70d7358350fcb9c51cdd4b888c96
MD5 e64846692bd18d812a1305122ac33208
BLAKE2b-256 b9f059f48b1c5db8e3d6cee59642b1e7dce883d62e06e28eb9ccc366a5f22463

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70b328859e3768a8b78125dcba5cb2add710cbd3e1298615b2171af171e1d59e
MD5 87a5fd43090d394c03cb5c3b1f577ebd
BLAKE2b-256 2c0b9f8821a5ac620d84dc71ced2dba973357b2d4e9e2c3ed69bed5f9ac56a7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb8ad3b46428ab6318668998fb132a5d2a0e519660fd0eed7a7acdec30cf4da0
MD5 474dbd15deebfa1d1f1712c25388bfcb
BLAKE2b-256 7be805f1d81ce5b48bc69e7651399b7a511290cdb400308a9828150941a35317

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd1045094e64a0fcaff6620bf63237b247166ab8e215ab951326e1c828c60f9a
MD5 4728f4a989e70019aceeab12e4cbb25c
BLAKE2b-256 0e691a20afb8e86c2ca64d470f22dcf7aba634462af7add912ceb2b4c2638499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e69109a62ce1b11385c5b71363bc997ad133ef08b359b5a472503b4c45925b8
MD5 5ce477f6ec5b04aa18c337e748fd6fee
BLAKE2b-256 1284ec01c8ac30901d8dc65bcb1092a60ac754ead5c1c116cb7abb1476cff605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcc3038bc994078db001393056e6836617e4d7383a7194f664b1b5046e157bba
MD5 f874203090e3bba5ca964459490c0093
BLAKE2b-256 c6ea62b9d06c8089d5d00af17b2961d617d832fdffc6d23f06cd2960f549c3ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca9fa28ed1cf39d11c25927e5e8f04470eb16b355f9c23c0273f9debe8fe3239
MD5 4c7211edb77932e1cc416d8a76579b71
BLAKE2b-256 48d9b5efd8d7b20f02d4128c5de375bc13912208026c10fac46ffa5be405abca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f24397aed9a1bfa39ab68790b104f4d9e1bfbb495e9fbd3dae7f409c70138578
MD5 e2f840f829c8528ee8608aa7a455b76f
BLAKE2b-256 5457d5a028aaf272cf1be49e0409fe3f76c2e3c793540a10261b3c1a09e75d04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc2c1fb3e39d9bba7a6b1e2d1294fb2b6175db2fa2a4522d1fd3f94a1b947ba8
MD5 fd6c044072b7810ac8b6e8f6110930d9
BLAKE2b-256 b2e496a5ee519ff29d3a5c570e8b4ed2f0159426473cb88473b7e93ad845d886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 526bafacc37bd8510e85cce6425112c0b936521c070291aa97cbf2ed52d4cb90
MD5 889d1aa26d86d7bbf7c47618a2fa258e
BLAKE2b-256 16203b5fbadcc73b5bdbc748307ca2c68865c8e8c1ba17f0add37814ac78ed2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92f9d18b516abf9a7cf29d0aeefd667e80e00bbacb4962f033079a89860742c4
MD5 624240a7936ed47316ea28abed65507d
BLAKE2b-256 c40c31de0997a517cc8ee343a1c94ad624508425ee42a20f7b251ae35efadda6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rc_tui-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98268eec9ac6bd58b6fbe48902ec500597d468476f57242f55b8f51c9b7a5c60
MD5 5cc1cda9a9d7c9b32845f0d92caf1242
BLAKE2b-256 b99851a1b02b245b0a551c7c0d139142d4fb2e0e982ad1f6628d047fc5528826

See more details on using hashes here.

Provenance

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