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, andtext_transform. - Interactive Pseudo-classes: Define
hover_styleandfocus_stylefor 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b4b9de2d8f5307c231de6a5c82ef0bb3c279610d7c41343aed9ba4bd955c6f4
|
|
| MD5 |
e1ebec900232d30139c4896e3e91685b
|
|
| BLAKE2b-256 |
99e3ef59e898979c202083bfb85ee96c96d30a6622ce2a34a96693b5d0d643cb
|
Provenance
The following attestation bundles were made for rc_tui-0.2.0.tar.gz:
Publisher:
pypi-publish.yml on Pomilon/RC-TUI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0.tar.gz -
Subject digest:
1b4b9de2d8f5307c231de6a5c82ef0bb3c279610d7c41343aed9ba4bd955c6f4 - Sigstore transparency entry: 1506212534
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e45e9271b974e7ea494a5bdb8da591d089c352287a6410864d19693c5b7983e
|
|
| MD5 |
9ec2e7f43b5791b560fd44f9d71563b7
|
|
| BLAKE2b-256 |
3a3490984ffe05659999179f3ec3e16721d46a03c865a95c87e20a0a7b8c9ae3
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
7e45e9271b974e7ea494a5bdb8da591d089c352287a6410864d19693c5b7983e - Sigstore transparency entry: 1506212875
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
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
- Download URL: rc_tui-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 143.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58452c57a24cf65cb971a7741bc9d5038176d45c3eb92e6c6adcb514233653ca
|
|
| MD5 |
a61a95c3bf13cdd54f3d8907597db1e3
|
|
| BLAKE2b-256 |
4d008578080f4fd2c532c4477468de79044819bd377e2faac4156ada5de61e24
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
58452c57a24cf65cb971a7741bc9d5038176d45c3eb92e6c6adcb514233653ca - Sigstore transparency entry: 1506212911
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 123.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70344ddebaa964c09e04329926fd766aa1c5b0901e5dfc845fe4f8818567b9d8
|
|
| MD5 |
8376d4149dd868d1035006092a50801a
|
|
| BLAKE2b-256 |
0942590053d550210465570d8bbeb82a388ee9e6f79c48d80c89a4106a3fee7a
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
70344ddebaa964c09e04329926fd766aa1c5b0901e5dfc845fe4f8818567b9d8 - Sigstore transparency entry: 1506213450
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 131.5 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9d7abccb5aca3d227ed1214166dad9190c1fedd4af5f8c428c06a70533adbd2
|
|
| MD5 |
8838b90d9811fa980efa1bebf9d9e76e
|
|
| BLAKE2b-256 |
5dd72b0e132c2bae5853616992da3c6b6a61aac73a61d1055680dae5caddac5a
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
c9d7abccb5aca3d227ed1214166dad9190c1fedd4af5f8c428c06a70533adbd2 - Sigstore transparency entry: 1506213402
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f61ae1bcff14bfa198b1177ce746fdd055f2f1842d5aab20de64553614f34771
|
|
| MD5 |
06a1ad97c9096a54bd8b48b90ccaf77c
|
|
| BLAKE2b-256 |
0fa9977550ff5669e887bc82e0883155bc3cd8efed0ea8094e80c3c7e1b8f16e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
f61ae1bcff14bfa198b1177ce746fdd055f2f1842d5aab20de64553614f34771 - Sigstore transparency entry: 1506212645
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
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
- Download URL: rc_tui-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 143.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56f70fe2414754a4fdd659440ad91a9d0be75777a384b00fc821587715ab0bc9
|
|
| MD5 |
546fb0c102f06090ae761c97b5fc2610
|
|
| BLAKE2b-256 |
c532322d86840de71e0e0b6efefbddbdbe537da2420e804254a1b2d13a21caf2
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
56f70fe2414754a4fdd659440ad91a9d0be75777a384b00fc821587715ab0bc9 - Sigstore transparency entry: 1506212812
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 123.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31170c650306689d3da12570c63527aba82df88cfcb8b54c9ce313d80396aea4
|
|
| MD5 |
1fa4afdf4fce8555f1ae148fdbc5c9f3
|
|
| BLAKE2b-256 |
34d06b1e9cca27bb730ab235e011418d540a88f49e3505a07589eeadd5fe4dc4
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
31170c650306689d3da12570c63527aba82df88cfcb8b54c9ce313d80396aea4 - Sigstore transparency entry: 1506213270
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 131.5 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9ba508b6a4fd5dba783c2e70412f691ed192b7011929483c04b176e682ad723
|
|
| MD5 |
024f519330fc2a5aaf0306d73a7258d3
|
|
| BLAKE2b-256 |
4ff6532db8ad86d7cff2274161760d4620a3b51d5b6eddc495344c9d552761fe
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
d9ba508b6a4fd5dba783c2e70412f691ed192b7011929483c04b176e682ad723 - Sigstore transparency entry: 1506213081
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d9ee7516f92cdcc5b80866dc49a7e2e8b6c70d7358350fcb9c51cdd4b888c96
|
|
| MD5 |
e64846692bd18d812a1305122ac33208
|
|
| BLAKE2b-256 |
b9f059f48b1c5db8e3d6cee59642b1e7dce883d62e06e28eb9ccc366a5f22463
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
2d9ee7516f92cdcc5b80866dc49a7e2e8b6c70d7358350fcb9c51cdd4b888c96 - Sigstore transparency entry: 1506213005
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
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
- Download URL: rc_tui-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 143.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70b328859e3768a8b78125dcba5cb2add710cbd3e1298615b2171af171e1d59e
|
|
| MD5 |
87a5fd43090d394c03cb5c3b1f577ebd
|
|
| BLAKE2b-256 |
2c0b9f8821a5ac620d84dc71ced2dba973357b2d4e9e2c3ed69bed5f9ac56a7b
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
70b328859e3768a8b78125dcba5cb2add710cbd3e1298615b2171af171e1d59e - Sigstore transparency entry: 1506213127
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 123.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb8ad3b46428ab6318668998fb132a5d2a0e519660fd0eed7a7acdec30cf4da0
|
|
| MD5 |
474dbd15deebfa1d1f1712c25388bfcb
|
|
| BLAKE2b-256 |
7be805f1d81ce5b48bc69e7651399b7a511290cdb400308a9828150941a35317
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
bb8ad3b46428ab6318668998fb132a5d2a0e519660fd0eed7a7acdec30cf4da0 - Sigstore transparency entry: 1506212839
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 131.1 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd1045094e64a0fcaff6620bf63237b247166ab8e215ab951326e1c828c60f9a
|
|
| MD5 |
4728f4a989e70019aceeab12e4cbb25c
|
|
| BLAKE2b-256 |
0e691a20afb8e86c2ca64d470f22dcf7aba634462af7add912ceb2b4c2638499
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
fd1045094e64a0fcaff6620bf63237b247166ab8e215ab951326e1c828c60f9a - Sigstore transparency entry: 1506212760
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e69109a62ce1b11385c5b71363bc997ad133ef08b359b5a472503b4c45925b8
|
|
| MD5 |
5ce477f6ec5b04aa18c337e748fd6fee
|
|
| BLAKE2b-256 |
1284ec01c8ac30901d8dc65bcb1092a60ac754ead5c1c116cb7abb1476cff605
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
9e69109a62ce1b11385c5b71363bc997ad133ef08b359b5a472503b4c45925b8 - Sigstore transparency entry: 1506212966
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
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
- Download URL: rc_tui-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bcc3038bc994078db001393056e6836617e4d7383a7194f664b1b5046e157bba
|
|
| MD5 |
f874203090e3bba5ca964459490c0093
|
|
| BLAKE2b-256 |
c6ea62b9d06c8089d5d00af17b2961d617d832fdffc6d23f06cd2960f549c3ea
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
bcc3038bc994078db001393056e6836617e4d7383a7194f664b1b5046e157bba - Sigstore transparency entry: 1506212590
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 122.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca9fa28ed1cf39d11c25927e5e8f04470eb16b355f9c23c0273f9debe8fe3239
|
|
| MD5 |
4c7211edb77932e1cc416d8a76579b71
|
|
| BLAKE2b-256 |
48d9b5efd8d7b20f02d4128c5de375bc13912208026c10fac46ffa5be405abca
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
ca9fa28ed1cf39d11c25927e5e8f04470eb16b355f9c23c0273f9debe8fe3239 - Sigstore transparency entry: 1506213356
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 129.7 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f24397aed9a1bfa39ab68790b104f4d9e1bfbb495e9fbd3dae7f409c70138578
|
|
| MD5 |
e2f840f829c8528ee8608aa7a455b76f
|
|
| BLAKE2b-256 |
5457d5a028aaf272cf1be49e0409fe3f76c2e3c793540a10261b3c1a09e75d04
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
f24397aed9a1bfa39ab68790b104f4d9e1bfbb495e9fbd3dae7f409c70138578 - Sigstore transparency entry: 1506212712
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc2c1fb3e39d9bba7a6b1e2d1294fb2b6175db2fa2a4522d1fd3f94a1b947ba8
|
|
| MD5 |
fd6c044072b7810ac8b6e8f6110930d9
|
|
| BLAKE2b-256 |
b2e496a5ee519ff29d3a5c570e8b4ed2f0159426473cb88473b7e93ad845d886
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
cc2c1fb3e39d9bba7a6b1e2d1294fb2b6175db2fa2a4522d1fd3f94a1b947ba8 - Sigstore transparency entry: 1506213045
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
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
- Download URL: rc_tui-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 142.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
526bafacc37bd8510e85cce6425112c0b936521c070291aa97cbf2ed52d4cb90
|
|
| MD5 |
889d1aa26d86d7bbf7c47618a2fa258e
|
|
| BLAKE2b-256 |
16203b5fbadcc73b5bdbc748307ca2c68865c8e8c1ba17f0add37814ac78ed2c
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
526bafacc37bd8510e85cce6425112c0b936521c070291aa97cbf2ed52d4cb90 - Sigstore transparency entry: 1506213304
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 122.1 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92f9d18b516abf9a7cf29d0aeefd667e80e00bbacb4962f033079a89860742c4
|
|
| MD5 |
624240a7936ed47316ea28abed65507d
|
|
| BLAKE2b-256 |
c40c31de0997a517cc8ee343a1c94ad624508425ee42a20f7b251ae35efadda6
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
92f9d18b516abf9a7cf29d0aeefd667e80e00bbacb4962f033079a89860742c4 - Sigstore transparency entry: 1506213187
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type:
File details
Details for the file rc_tui-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: rc_tui-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 129.8 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98268eec9ac6bd58b6fbe48902ec500597d468476f57242f55b8f51c9b7a5c60
|
|
| MD5 |
5cc1cda9a9d7c9b32845f0d92caf1242
|
|
| BLAKE2b-256 |
b99851a1b02b245b0a551c7c0d139142d4fb2e0e982ad1f6628d047fc5528826
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rc_tui-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
98268eec9ac6bd58b6fbe48902ec500597d468476f57242f55b8f51c9b7a5c60 - Sigstore transparency entry: 1506213222
- Sigstore integration time:
-
Permalink:
Pomilon/RC-TUI@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Pomilon
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@bcf88029f57a9ec1324029ae6a672face4f28f84 -
Trigger Event:
push
-
Statement type: