Skip to main content

An embeded component base template engine - inspired by JSX

Project description

XComponent

What Is XComponent

XComponent is a template engine, inspired by JSX, to embed template in Python.

It diverge from all existing Python template engine since all the templates must be written inside the Python code.

This is a design decision and a matter of preference for the locality of behavior.

⚠️ Under Development

Hello world example:

from xcomponent import Catalog

catalog = Catalog()


@catalog.component()
def HelloWorld(name: str = "world") -> str:
    return """<p>Hello {name}</p>"""

HelloWorld(name)
# will render <p>Hello Bob</p>

catalog.render("<HelloWorld name='Bob'/>")
# will also render <p>Hello Bob</p>

How it works

Using XComponent, templates are stored in a catalog of components, and then they can be rendered to HTML.

All components can be reused in other components in order to build an HTML document at the end.

Using curly brace let's have a friendly expression language, inspired by Python, JSX and Rust.

Getting started ?

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

xcomponent-0.11.0.tar.gz (122.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

xcomponent-0.11.0-pp311-pypy311_pp73-win_amd64.whl (948.5 kB view details)

Uploaded PyPyWindows x86-64

xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xcomponent-0.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

xcomponent-0.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

xcomponent-0.11.0-pp310-pypy310_pp73-win_amd64.whl (949.4 kB view details)

Uploaded PyPyWindows x86-64

xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

xcomponent-0.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

xcomponent-0.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

xcomponent-0.11.0-cp314-cp314t-win_arm64.whl (851.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

xcomponent-0.11.0-cp314-cp314t-win_amd64.whl (945.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

xcomponent-0.11.0-cp314-cp314t-win32.whl (821.1 kB view details)

Uploaded CPython 3.14tWindows x86

xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

xcomponent-0.11.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

xcomponent-0.11.0-cp314-cp314t-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

xcomponent-0.11.0-cp314-cp314t-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

xcomponent-0.11.0-cp314-cp314-win_arm64.whl (853.2 kB view details)

Uploaded CPython 3.14Windows ARM64

xcomponent-0.11.0-cp314-cp314-win_amd64.whl (946.3 kB view details)

Uploaded CPython 3.14Windows x86-64

xcomponent-0.11.0-cp314-cp314-win32.whl (822.4 kB view details)

Uploaded CPython 3.14Windows x86

xcomponent-0.11.0-cp314-cp314-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

xcomponent-0.11.0-cp314-cp314-musllinux_1_1_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

xcomponent-0.11.0-cp314-cp314-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

xcomponent-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

xcomponent-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

xcomponent-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

xcomponent-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

xcomponent-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

xcomponent-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

xcomponent-0.11.0-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

xcomponent-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

xcomponent-0.11.0-cp313-cp313-win_arm64.whl (855.4 kB view details)

Uploaded CPython 3.13Windows ARM64

xcomponent-0.11.0-cp313-cp313-win_amd64.whl (947.7 kB view details)

Uploaded CPython 3.13Windows x86-64

xcomponent-0.11.0-cp313-cp313-win32.whl (823.8 kB view details)

Uploaded CPython 3.13Windows x86

xcomponent-0.11.0-cp313-cp313-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

xcomponent-0.11.0-cp313-cp313-musllinux_1_1_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

xcomponent-0.11.0-cp313-cp313-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

xcomponent-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

xcomponent-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

xcomponent-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

xcomponent-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

xcomponent-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

xcomponent-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

xcomponent-0.11.0-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

xcomponent-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

xcomponent-0.11.0-cp312-cp312-win_arm64.whl (856.2 kB view details)

Uploaded CPython 3.12Windows ARM64

xcomponent-0.11.0-cp312-cp312-win_amd64.whl (948.0 kB view details)

Uploaded CPython 3.12Windows x86-64

xcomponent-0.11.0-cp312-cp312-win32.whl (823.8 kB view details)

Uploaded CPython 3.12Windows x86

xcomponent-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

xcomponent-0.11.0-cp312-cp312-musllinux_1_1_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

xcomponent-0.11.0-cp312-cp312-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

xcomponent-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xcomponent-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

xcomponent-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

xcomponent-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

xcomponent-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

xcomponent-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

xcomponent-0.11.0-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

xcomponent-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

xcomponent-0.11.0-cp311-cp311-win_arm64.whl (854.5 kB view details)

Uploaded CPython 3.11Windows ARM64

xcomponent-0.11.0-cp311-cp311-win_amd64.whl (948.4 kB view details)

Uploaded CPython 3.11Windows x86-64

xcomponent-0.11.0-cp311-cp311-win32.whl (823.7 kB view details)

Uploaded CPython 3.11Windows x86

xcomponent-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

xcomponent-0.11.0-cp311-cp311-musllinux_1_1_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

xcomponent-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

xcomponent-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xcomponent-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

xcomponent-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

xcomponent-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

xcomponent-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xcomponent-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

xcomponent-0.11.0-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

xcomponent-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

xcomponent-0.11.0-cp310-cp310-win_arm64.whl (854.1 kB view details)

Uploaded CPython 3.10Windows ARM64

xcomponent-0.11.0-cp310-cp310-win_amd64.whl (948.7 kB view details)

Uploaded CPython 3.10Windows x86-64

xcomponent-0.11.0-cp310-cp310-win32.whl (824.1 kB view details)

Uploaded CPython 3.10Windows x86

xcomponent-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

xcomponent-0.11.0-cp310-cp310-musllinux_1_1_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

xcomponent-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

xcomponent-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xcomponent-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

xcomponent-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

xcomponent-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

xcomponent-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xcomponent-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

xcomponent-0.11.0-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

xcomponent-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file xcomponent-0.11.0.tar.gz.

File metadata

  • Download URL: xcomponent-0.11.0.tar.gz
  • Upload date:
  • Size: 122.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0.tar.gz
Algorithm Hash digest
SHA256 3bb2acd194fa1ef8710f030cd2bed1f3d686ad0bc578875e9c3cffa6ecfb2b82
MD5 3acbc8f2dfcd7094ecf4b25ef8c51349
BLAKE2b-256 ef3e75020f0ab39ee8b46a0cee0096c1ffb8caac21e2f635a56ac554fb4d8deb

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 948.5 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9f1871cf2ec1e2f565f84af4a1108029103797a1df7bfbd2a7a0ae0c61c16c0a
MD5 ec6e35257f628fcdf45a4ed8c0b39fa9
BLAKE2b-256 6135edd6b72a0aa0a25056136aaa72fb88db95daf886afe828f9574527eafeee

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 580d921d89dc5d1ae7db45b0aaf4917c668ce1e8b069d580b33add1d0de12f6d
MD5 d183c1276087c93440540be4849dd74d
BLAKE2b-256 9811cee8a62e16b09dbb7fb66f004b3c08537fdf501bc2dea081ae69cd562f45

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3acddf47779ab1fb5c3aa55aad9fdb0936d0afc108140e0d380ed10d18b18b80
MD5 074fd13bf531a517dc6412e92f1628a5
BLAKE2b-256 16fec53e4c2a66c42c54c69e3763f306b75bb53b13fe715a41d261f23213335d

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: PyPy, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 974427018254fcb847bcb553e84958ca42e3cb58562b231852a29db5f9e1985b
MD5 3924526a675ecce0538ecdcbc509b506
BLAKE2b-256 2c32ff18b65f8ff524d7c77c9559bc1528655453fa9a4af4976af8583e5795c8

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40fc21da4d07f7c00dc4cd2fe7b8de9817080bb624f1451d027170e360d6c3af
MD5 d6bf4ebcc7790aa9b7e8a3fe9b74931e
BLAKE2b-256 ecf6bccd9f63cec68e1b0da61632672db76069259f1bdd5f7471d8869266ea9c

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51a00b69fc17f78dbfc4b26bc8ecabfeea9c79056c6e827241e68387e004a520
MD5 d3fc6fd131178cc88ca979049a09d665
BLAKE2b-256 dc48fef1e4edef50383347e311334ebed64f260abcef6cb7cc4ae3b47570da8e

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2296f6da5e6d9580330e027ce16096695ee30836859b33deedbfb0186652d887
MD5 40059074650a1cddf2498ca356bbf4c2
BLAKE2b-256 81d17a316dc002e8e7bdd60dfd130e9b9a5dfef8d71294d2b245161218421c5d

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7dcd2c233727d155e8751531a22584ee34ca9f28b2eaae040542e9895370693e
MD5 dc864c69793c37f39661d5236b2652b3
BLAKE2b-256 7788cfbb54fa56cf1b5406390c02d1cf3fc94b141fe3f7ce88735727eb2b5bd4

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed53a851e71d7fefb63bbbe61bc44ea276a2962ffb340000f0f26a93e5a9bd75
MD5 11a129c81ea8b609f511945b5c9923e8
BLAKE2b-256 c9c88e8104dddc15e1e628f6bd3c0bc830ecbf1f5dd1d6106df295d89b238e8d

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80f3154acc57f44aae14db4eb9dec719398264f883a323a17bae3ae3acd2de5f
MD5 ba292279b3aafff75b0a5bd7ad303159
BLAKE2b-256 66bf6d2e83684cebf14e6d70461441a911a3398ce8c7f722f34625119e272732

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 928e237cec5bd5df871ba08eaae34f86364673af8e21b326b7b7ee083ee4157f
MD5 8612fb5667e2abc1d6e1ae12f195901c
BLAKE2b-256 8b21a9d19241d60a7e53eb5a5dd35966e38236583098874b01d063446ec7ff78

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14dde9b346d5fc9ee8d1720b7bc1493bf77bffc214f77cc2896aa4420a8227e5
MD5 5c16ca47410d98a8e84b8f4883d23ab9
BLAKE2b-256 85406885fc19e178a743995e0652073f70ef644c16a46244a39a626608195765

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-win_amd64.whl
  • Upload date:
  • Size: 949.4 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cc544e1e9e8a468b3462177f9c8c9523a8a38ad22ec85b573264bbf40e05c092
MD5 6eb3de9c0cf472be2353192679d26976
BLAKE2b-256 a64c91949dadbda0e9ebb04073998db287e46973c012968934bd259b294a0201

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 92c018dc93c4a6a0ff0b0a4df52dc729cab1c454abb5fec82fc715b730dc08ac
MD5 8b7743ec11fa56a3c57bbb990325b843
BLAKE2b-256 d26cbe84ff76a7240a7894274274bc209d47dd0ce24647eeaca7f0374a9700ad

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d7dafac80d7fc905bcbaf9013fc857db2d3bd66b1d88235c1dbcf57e690461a3
MD5 0867d5801a28f1a0526f8a981714aa46
BLAKE2b-256 3d68266e15bd228faf8f016e21a9afcc4afe4c162768abca22d806b235f0f629

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: PyPy, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 55351db4e05c84bd786232310e26b9221117c18f97dda0c9c2c34cc20f2fcd09
MD5 06e52b3d1592d293f1f9229cda408856
BLAKE2b-256 850098b33b3d5c3d004260cde081b6123162dd170ba9b3e56663063f42c0ae15

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 957d393483aa9a91eb0ce441c6f1e6a64239d815c1ae90f684c8a9e513498036
MD5 9b57fd2181838efe93af79d5160391fd
BLAKE2b-256 c1d15a03921542565aa7e3b11c26ed82f58ff570b587a566be4dc652cbc2f7de

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2695c1145abec90f30fc0d472d453778c6b57a0ff888cd38d17ca4546588ed9c
MD5 1815d3421422c657058a59278eef0923
BLAKE2b-256 4654cc272e16ad91c2779fe29310248f04eb0de843d05af1a73f8a70b5a3b214

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b199798cd9eb83eb11d761aba701800146981f219dccd01c40b6ab7dbbc84bb8
MD5 7ccf4ee5ca4615bf29a1a7fdb61c782c
BLAKE2b-256 8bde0a6240f39b64bd1641e6ef08625fd25e8159fb92a4e9714aa9b701ffae85

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 312726ce9144f2770ce31dcfc6daf26ea0431758ccbc1c9dbeaa45d728256d7b
MD5 db8e2755ec9e808def0d576f0eb8f01d
BLAKE2b-256 83757d3d6d38519d8bf192b27088e0b64e2afda7bf70fd8837a11f8886048d78

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2a11eb9437234207ca971e98b496311446384eef51c0f908b127f941f471062
MD5 dd3ea2b97a4c64de833e4fece51b24c5
BLAKE2b-256 51183cbafd5f16eba60c8f522f258c428882dcb9c776f4f66dff65f56369943b

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b10b5a220a9bd4374588a354233637492a53de53f52edbb5b934720846ba3d22
MD5 7c57f3a9471893959b0f44d04c1c282a
BLAKE2b-256 960500ff218749316fc861ac6d211ec3c818b47f2f677ede9f922e253485a209

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7da6e9b7b104c6c8beb3d32acfe7506703fde531e6c0e3f2d6653b59b121c33b
MD5 967a3dd4b45c776739f3badb1eb19314
BLAKE2b-256 0898ed897e1be3aaa3e749aa5a6836a386549454983fa458867a64abbf163bcd

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93de06675be2ee9ee765b8bd0ab09b0d4c297b3fa0cd506b9a8e2a0fc651bc0d
MD5 5bc809b997c3cead7e017d3a70ed4f9c
BLAKE2b-256 82516b8b025861ba42203cc32fd81cb4010d96aa11f48adcc4cbf0a17cb5af25

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 851.8 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 222c519032c7d00f734feb1dc788fa1bb6da8e435c603e2577e7eb6b1d23e588
MD5 e40cfe1ce7144f7b7493c633759b8d75
BLAKE2b-256 bae06355266ade702497795aca037b413975a8f8fb9e6aceb99455012f094ac1

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 945.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b824b23ab67560ae53132a1b4eaf55905de62e20b90cdbba3c47d630253e1540
MD5 6239fb2efae4792511b3489f4d345bff
BLAKE2b-256 230efcaebe1b2f7b0c93333e914f4ae7f2869461e4579408fc16e0c3bd6b7c89

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 821.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 05bbb423d903a08b7b8dcbd9396f85ec5c41343af457926a3863b78e30bd81fc
MD5 5086047009155fae2c8e8ec823ee3901
BLAKE2b-256 f23cfa4e7a131da08bd69b8971f8666de8d034a56ca63a3b47d74cfc53628cb1

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ea72a218df1f175a3d498a5faeeaa69ece30e83a6012be1d2b704d8522300690
MD5 b69531ca3d8f13fe8590a2065344aa7e
BLAKE2b-256 f88ebe54e7caad75251850c0624296d1e7723aaae5bbca05b25896da12db4eda

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3b87de23bb6ef0b0987fceba47b82366785e5d0e3aa920fcf311d3ee0231129c
MD5 f761e9d72755810a9fb479e6b149ce89
BLAKE2b-256 f76eebd6c6bda6778d04bc2c24404fd5dd5283f71205cb60866dc70782b3d6b3

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 571d3ca5985b69327e5722b3ba62330103340d57cd6e783098fd73e737bf5e77
MD5 057b08ee66ef7e3531884fb20e896919
BLAKE2b-256 6fb96b9c0db19fb3bc0521271a540daa043f131d5b951ac5303402957bba2e42

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c73ea905491870dbfc7ff96c735cad570b9670652aa5d51b958e4238af602448
MD5 89aef7f2095826542ea6df4b9f4015b4
BLAKE2b-256 fc87d7ade7b4a32ca16e871e7f45d22bb659d989ef74f0e1d132c4260e843a2c

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18d918af713fee43af732566b5c7435046d555b5e461922d810132ec3b309a17
MD5 e216f44ea558e905257bec399057f8ad
BLAKE2b-256 92525833572710d863a62cebd0ab012c277b4ecbd500ce21fc3fad53beaf60a9

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5bcdfa5ec0a6b42a4b2c3cb459607ab13baa73e87facd1a2c09d4908afdd7ec6
MD5 c0ec7a34e4db44014ea02062748354c3
BLAKE2b-256 479ac96dc88903c46b41b1e38cd217fbda03cfbcc22b0bdf54ef91e3dbb6c87a

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62e8d86e110e5480f40955992501771a981b05a1d6c3cb3772d841e92ecb83f3
MD5 d85583bc166a34f2cd14434aa4aa6139
BLAKE2b-256 73c66c187c7ae49ad67d4804f36ea2c3ce1187408f3d18083a595b0db8da487e

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc1f7e1183965d10ae9bf1516c29192b6a63d533fb5a09c99b3ca9e866d9eae8
MD5 b622b9a3b3f9d8080d3d53b8e8376557
BLAKE2b-256 133ed639f2c11e285c0c0bfc9c8c8e9dac00cccd3125b162c8cf49fa79702c71

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48be3e1d3cd7c989393398b2fbed814580e5898c1bd40d74b71342d025fe6dbf
MD5 7691d1d62a2d906b520d59133b05e23a
BLAKE2b-256 6accc070e7970f6411695bba7050a6a1bed6ee9ec37551caaa394480e531351e

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 243e839930c4f5624369f06cb7c3ee4d17aea8ba7fef12850a5a42cb5791d019
MD5 ba372003c60856f7f7d8026cfa31baf8
BLAKE2b-256 6623c8a32932cd05301ac8dd785675b1375ff8d130a62da022d366586a338a44

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3abeb8692bf5355c09515c6d77d684e5dc8da0b1eba99a8ea648bafcc1101bf3
MD5 1916be0289a1b0618592948d1b33b499
BLAKE2b-256 b9e611b7ccfc4e353cdb72580896918a88ed2e1342a8ee28ffe5a6f7a6b41615

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 853.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3ad654847a6223902f63b0e7b204caaa86d927b5f5e85a81e83217b41499e636
MD5 b49c6be78798ca781c6933da7dfe88e8
BLAKE2b-256 071604a97486b5831562e05f145f90920e22e94a543395f695d64222deafaeb5

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 946.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 01df5ca0f96fa13cd2333464fa8bbef333130e29dea2e8c4e2d5e03adc2edb7a
MD5 02de8243e2e400f6f9f70d5de268e384
BLAKE2b-256 6a3fab5b1d8ee507cc5663147996f0104cd9262c2a14ba3b3f9355a7b7d48aaa

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 822.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0ff119e59acedfea7e79d126900693d99fe24e8b0d99646070dbe38c30f54618
MD5 2f6f37d9a32ce66f6095059850603ce1
BLAKE2b-256 4de5ed5f321840b40ecf0cecdad59a5231fde34ffa52e7be2d8608e51e38027f

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a16fb34e97aca18a959276f6451288ad8e244b073e3718ee80cda6063fe77d6c
MD5 1372e1a249499fc1dcabc1fff07f5b5b
BLAKE2b-256 a7431320b547867c4a9c8d14e7e51ba0877fbe40145e84912780a5d0c6b0355b

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5da8aead6a8e56ea8b6e94190a8fa3100840dab9cd82975e13eaf223a8ab9664
MD5 b81712d7037ce0b5452baa9112409061
BLAKE2b-256 c7105478eef04a915f5188b9eb61cd95a4dd0a8c10aaa7fc3c6b754726e3beab

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8224aa660ee65abd9d1d36312c3a1a7c5461c20a37d4cef2ac2ae4c5c13a60e1
MD5 0439b1afc1eaabc69c658e76b180a9bc
BLAKE2b-256 5010d33aa9dcba3d78dd3de0cdb071af2584fc79e183b715a27cc682584c8fc2

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f81af7d0adbe0e83798919b21560022e361ce17693956add3e893c4f4994317
MD5 ddde6c916999dacfcc1a654f8e7e817f
BLAKE2b-256 a0dedcb5bf568c8826b8f33fd6d6399cb064b504600a3f2492a8635fbb7edfb8

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ef25b69a94d17faa813c548f6e8f8a39f920fa125e8637848d37d2b1fa605f4
MD5 6d4f070cc85bedcc0426d676923e1bd4
BLAKE2b-256 364f2831c5ca565fec480f89303763569ab1637ec78d91958dda0096fa5f7574

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd2a7bfe8575a0edeca90f5e4ab1f6347e9e0d78512192682ac37610b1ef331c
MD5 d5d00cf007f431c60a9badf8b5a46878
BLAKE2b-256 2b62aac2ed2b9d4ed1f5f05dd055f8d97d7248c70aeecab5eb4c47f3c304cf4e

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45011806917ce5e842e7597af856f2a1e1156e1b392e9413b1d3afee80f503fd
MD5 582f0520bed6d9fd85734e4758b0e32d
BLAKE2b-256 e606dc2c8e005b42b9dc8ee406ded0ca25c8969cbbf1f8f4299fcf584f55a243

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5797ed00e032b84d2d5fad6d27c76d7519b494fbb4aa80fc86756ad2a938802b
MD5 87aa5ad5af5d043efed72a4bcee3c27d
BLAKE2b-256 294f1f88f2f1ab4bcd3f24d8ca2553720a370bf847dd2c26a432b9752c1439d8

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c84c78c1fabec4c679ea86d5485d5a5588a31eba20b703fcdff30dace940a3c0
MD5 da4a238f7907132286289b52cfc64320
BLAKE2b-256 0a8e5e4a557a4f25ed91a77c339c235fb27e36f297ce981ff8a6f8907c11d0f7

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e372a38d237ab3cec077bae35ad1e325742867532077021c3dd826e3aaa70b1
MD5 b07d8122bc66efa1ed3123539d63fe43
BLAKE2b-256 116f3582b0ba936674a60aa8bded92d2f5e7f7d231b03b1084f942e8fb04ac80

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ecfffac01614ab380af51200cd9e994fdc70be7167cf57708a7ff22b3da8416
MD5 4d57da90d551ac5747ab7e53c23737f8
BLAKE2b-256 cdc5ee6b06f948c672f1224e527fd1cc58ab0272c1427366b8e237b0b31ebc25

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 855.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 dafac9431f77de51149c54cd7dcb77365198075c298a6f29d01d72af0ba02505
MD5 74c46addb611fb46662bb5205e5f3374
BLAKE2b-256 d0a97d8bcfaac661637dad0367dead785b6356e78cbcb7131efbd122996f3c4b

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 947.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 52c1c36838b61cb7b7aa1880287dcc963e3dcf41390da80b6a27413a12d79a9e
MD5 792e13ad96770df1d4918ff7270352b9
BLAKE2b-256 79ab7a3c81dd78911d31e693d70212ce07600582c3cf26459526e8dfaec067ca

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 823.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 78385a7a77dc10f40c99b29fe5bc4adca5c9f3deb8bf4be6a13fe20002947069
MD5 7e89983bbf17ef28dcedcbd4c891870b
BLAKE2b-256 5885f30d4576b7a5d2ea33e03af556ec64bb6c6da0d94cece91fc73f687bca7b

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 264547673fb9bb50b92f027b4a7aeb017ef76fd627e724c5cbf123160e6bf413
MD5 29fe94ddb1b25902702fb6c22a6372c3
BLAKE2b-256 4be70d274618609e409b4f5957315ee7d4acd05c1c66e2578114c367c1d51e39

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 23f56c70472db5aaac53ba688a5b01cb13232d0d8ffb779e9ef2390dd7827988
MD5 0fe426043cb53c679cf3b5a1d15b9153
BLAKE2b-256 5f862cf90a5eaa35596cb70779db25c5f643ae7e4d5c2a77413c66ac6a1cfffb

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 51697f79d05f082f3098865736e79bb9dfafd3c0de4f124977b14ccfde7c1ba8
MD5 3baca68a093564ed9aec327b04da23d4
BLAKE2b-256 72731c0b91ea9c3e46b675b3a99c9b56492e6ebdb8af972f4c14b83c18b08dc3

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae44ef35e76dda51531d112f436884b548a5ec93d5cb40277eb21f6cff65a626
MD5 b027a440b80c4763f628d273d6c9331c
BLAKE2b-256 7a1b7d25c5058cfa8440fd9088dc3fbe44f4e0781e644b250d4ada906684c445

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84486a64dba702807b6753f7eacebb87489583c41bec3d758234cd5117907c73
MD5 6e0d92b0bcd6b6ace0cb35664942c022
BLAKE2b-256 c64e2b4f8ad6244bec14bce3092762a65b322bf9f6844f36d526ca7f61dab889

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c80cd6453276102d03d6af4812dfe75db6f0781ce9d1c4197abbe544c102fe9
MD5 e8a014d8c813d2e18f639254cd2f30cb
BLAKE2b-256 52b325f9df14c521f91a739008c22d340222c750a964223769fbe50ac7c89f5f

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55e7a098400f1a8c4f6c56ab5d44c2c5c8840cc79d5eb11b8c4659ee100bf30e
MD5 008bd51fe992ba233df6b2ce6eff3710
BLAKE2b-256 36cc3728d70ed66eaa5794772ed1ee9c7b7bc33f11572f45c53cb3d3c627a348

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0116ea42cb34a5065bf2d784d51653e492337423a2bb2d8e07e4149a9e499eaa
MD5 79a1dd3432fdb07f670b488b13cdd5bd
BLAKE2b-256 490f104cf3b64d413e8bbbffb73b0ae47be3222aee94dfef61edbeff1425ff4d

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 92bed03d87cacdaa028ce0b84f4c6f5083dfa449a00947df8084453aacc50978
MD5 c22fe1d19d6c39353d96566c68e3ce37
BLAKE2b-256 793791576df9a7deef4177aad291b3a8346203a17cf01f464453b120c57582c8

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 098c48800de7e7c24df26caf2feafba919663a7dedc947ccb7def95e15531123
MD5 570e56d773fd26372c314a8e030b084e
BLAKE2b-256 97b95e6b807eba215bda8ea189203fd0b9854eb35c2346a7ad737cc25b1715c5

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d83f63cdb4d2492fa4d75544a1ad5f73f9c50c694dbbc0aa44c3941289122800
MD5 e73e2285cca37797fc8bee4c2ed223ad
BLAKE2b-256 c65adc7d1c14ac72af2a859742582f55cfa01dbd1e31b552462030f13232a372

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 856.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b824768c47b4ec1302a373fd15ca6f991358727515f1bde6c219e64a04377048
MD5 4ba6bfb6d98e7323bed18269f16ed12b
BLAKE2b-256 1c332edd7b9ab04c7fe6a7365f9d3735eb2db74546643d013c94eb2f89d732c3

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 948.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c90149a68b2dc1197ec36fb0a2eb741b6165018d50eb1d9538e98bb7665a648f
MD5 db49d692a8746f6ddc53ccf7c354409d
BLAKE2b-256 f7bc4454d3aca4a4f1d941749775412bfc8a7ffcae438fdad0d7e817e767bf16

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 823.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 13044eeed83562861babbb20b8bdc1c97f1f2b203b0d7b60f5559c238ad70e76
MD5 e5297c0096728f86c86139b193ed131c
BLAKE2b-256 3fcab6aaeef09502e819576fbf6304934b16e29b98375727001b000242ce350d

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d7d656393b793ec1442e6a94b1d961820b49b6d157a61ec49b38df5f85b74d8
MD5 df19c39d8f8bd90e22c215cb39d13823
BLAKE2b-256 b9a125c79bb61b0d2a12b2fc33aad672a6be5c656926115d712d39baa2eb7201

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e4080172c8926131e5b9cd760c66ae51bc8b93d66846d94512f7b9ff20821c51
MD5 95ce11601607fe2c885f34fa860a3682
BLAKE2b-256 ecc90bcf4c3b4d4aa46d3003d157ece31b8ef17b7cab176452277a19af7e197b

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 06adeca03959d4295c79a7fedc675cd55a57094f85dbf7ed0d92a6daf4d5272e
MD5 6df58bce537dc13d6e49822a001b6b10
BLAKE2b-256 6193cd1ae5af8fb1ffd7bb9aa2a60e9d6521e71a5ade26a662b2f7c356a832ea

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8141e6d7ee77696c0d547ebe5b13cdb34ca33c0bcc8e397cdd74627fcee2c829
MD5 8936469b4c0357a2b7dbf0d438ab4e14
BLAKE2b-256 56f2693b4837410c266e5574b9ccab8a02db222036568f31895a2d4a08363dac

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6b00a05e3ea9610b9630e4a92a88913b12a1c881f8a875bf1dd695c4a757799
MD5 d2e9270f0ed965424a14d6815127f8a2
BLAKE2b-256 10b6192a24cbb648ba985e588bad269ad87ac68690254789b9758cb2bb59553f

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67a53c68a27924ae1b8608511b9eb6855ee62042f8fd2366527d759d1ba2a284
MD5 07ebde274f7760a1fe8dd116634beec5
BLAKE2b-256 760c5e4088cb8957246fdbb188469516dbe35ea0d7bd117431a7a1f1ae9b7593

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1561c95d6dd6315b75b321ea6377a7052c9ad731d4704552266cf55010009898
MD5 35e13f319f1309dca1c5db7d30930813
BLAKE2b-256 739cb724056757a41ce70260ed68f292ac2a136ed50205b1dcf6122db9547a86

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1be3ff849461eed5987df4209b7d5dda6e1e1d7155eee935110f88c483d88e7
MD5 a285cde947312b7201f6c467cc9ceb23
BLAKE2b-256 ee4bb336a524a212cacb939e415c1fe3a373b4221afb074e3cf269d7ed8cb9a4

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 32402ae11615aa5ef9e653b95bf77b87587533d3ace2b73642bc6410635c15c3
MD5 daa19ecb86d8635dafe6d9725d6b7323
BLAKE2b-256 59624cec3fcdf60d1dfa1ad9cf272bc90a8e8a58ee002aa451dcd4ad94bc9199

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 843c83d9bc5782b3fdceaf6b6128b9ebe085b01dfe2395286dc98a84d2c6e517
MD5 47efd933d0fef020a158bc5839551a2e
BLAKE2b-256 85c1fb535003b92b9f4cbc49c3e655ab180367db54b791fde4a200ac7dd60c7f

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b2752e71792ad147516b9ea5e10f79f96d1fea0cdd26bd7a9255e54cdc1edbf
MD5 3af776b067da06c44f592f031b3f8631
BLAKE2b-256 c2bb90f63d5f9ee364e4bd5e2d333576c23c4001a3e5d332726551286b93886a

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 854.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 61b6af00b90752043a15f9cc84eefd388148b48581199fed37a93b68335552f9
MD5 031049e34d26f0b18f3295af9eea672c
BLAKE2b-256 879cd23eb3ab09ed20038f7926d2718d4ed1a26bf1f5e4b7cfcd5c9753b00633

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 948.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 88a17d48c184fcbfae6206856c948206b390af49d5ba7392fa9d29360f8d1fb5
MD5 f6cda76f59b92ba51dcb2a24d039332e
BLAKE2b-256 9c291bc3f501eb614e67aa3144bbe090f0797bd7dbe3d8b1140ebc82121ffeab

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 823.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4a4727ff05abe4169aa3d88a239e6e77a1516e116d1e3b88b5e81742a8ed304e
MD5 c7bd300c6bcf53ae50d7e29949235892
BLAKE2b-256 da09b6b096ace393cfb0c2542cea560ced9f47042dee52c6f11d322038b31293

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e2225b620b3303876d7d5d596110148ca63266a20dba56e4816d78a3c8f004a
MD5 68e4e7c972ed45bd12b20e323f0d55c5
BLAKE2b-256 8f0ccb9c879ac7d1b5b9b453f36ad090d22967597910a84137cb8813afa0dd36

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9b6bda845dffe9ca081d311c0ae80cc7e02765ebade79d5a63af2f45cf4276ac
MD5 bdedaf76ea413dc99e0a5d6ce69b4503
BLAKE2b-256 c8781a7cee188e50e9f9c399255537682a7314dec53a91afe60100adcb465b7a

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 740cda06cb90852891d9854695299c4a385e0e37552f96af502f3d9e17916868
MD5 51d7cc6dcff1853cb84bac817bfab3e4
BLAKE2b-256 898bcee54b092ed31bb5549f0c97d8b763ca6ee55e85ee31f50c4e4dfa7c7f00

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca02d8df7a2ddb878cd7365e35de592ddf775d88ea47542495d5f5c5588bff08
MD5 fa79873dd1d68edc3070017299d6b91d
BLAKE2b-256 0c0a055a98c9fab7fc0cffa2d89fe74a281a8ec4b496c39ebc2ab87fb91ee968

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56e7e6f23a62825caf9ea42e5619027f5b92cd53392a6a20d2cb38f4268981c7
MD5 e87503c4cf1f84656fbba3fba79ed75f
BLAKE2b-256 8a6c3c5f5a97077e35109f961760d3eee44147e2756fe5d9fd44146a31289e31

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 944e32cda2632b223f9fe5f60e78256dc84cda3cf429d7e2ee704f349fdf35af
MD5 5c215a46405b0303e72cec8cfa516dd7
BLAKE2b-256 d245d7bf9f885941ac78df56e3115ba714f6c4f78d9d94a68b146e9c4e368f06

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 693d64c95eb4c2acb12bb38515b62871b2e8f09af9b3d6488beb897517d89745
MD5 4045c2b165449d77e8de9cdd22d570f3
BLAKE2b-256 a3e59a1a45f6561d95c976506840a4954d23a5b1bfcc383e3cd3e03a04b12280

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b07233d0c1edaea8265f245dea769054dca05e6f62ef664d2e84f24d0dd30752
MD5 6f6fceaa3091e98f43917d77e0ac372e
BLAKE2b-256 b8c0c5956f21acd8ea01e61e36ec2f1960541a0636856567b840080bd531695a

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b819675c40e75cac5a72123f13e19f229f22dc870718500eb2621bc89ba6399
MD5 eaa10d0ec11d9f0fb8448e6bfe0cb985
BLAKE2b-256 082b47d3ed646d05f03ac663387f22783c23da09b362dbd41555e16179127ee0

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 941898bb058b305d84b4ae35ed2ca6aeea17302eca77767e68b27fe26b781825
MD5 29a936fd494aefb53b9a0cc8481a03a3
BLAKE2b-256 7ddbb67bb9d5674768cfcd76abbd563f27a146af04ea65deb7fe7d70361ce00d

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9e0f6ba0aacdc74f17256bf386c43f0cfc3bf633d589dd45c9cd69a17625dfc
MD5 494f6ab4e2115df8034301876904cfb5
BLAKE2b-256 9a4b9bb904b46ca347f9337bb2e0e75cdf721603b4d7e45d881a65d5c2cbec1f

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 854.1 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c97d853a37a47119d0188d2bcb11fb23ceafee1051fd74538024f6085728e390
MD5 53b2a0921781c17cb69c30f2271e3735
BLAKE2b-256 b499e3a7ef3d104fcfba07f9bc75997ec77e88b491af7afa1044569e85587861

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 948.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7c6a3dcfb5dc0a4b16d91eced252b106907c0bce841d22a9ea785d20b3b683b9
MD5 913e4e9cb49c71dc40ec0e6ff4217cf7
BLAKE2b-256 19c669b6acdf6a4b148afb10e763c3ca8428b6db648d500188fd118755c05ca5

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 824.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fd299fe70f93834c0461389e7354aa465c1de29f5a0b752a72af53529746ec72
MD5 d8b7be8cfbb1265855a22276a03078e7
BLAKE2b-256 84c5f8aef291619f2ef78bf24c0b8c29271d7fa6643ffcbe9c36726bb68412e8

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9095d9d7354f5fd6731f83bd00ab556f26aa566829cf2f48154ef654272560a9
MD5 3bcef9caa8225444ec6fc53e58e70ccc
BLAKE2b-256 e54618c95a9127568561cde66576e7ba90f275fb8653f44d533af8a1abdab52e

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f4c854bf71519fc1172b2b9e41dabdc2efbbdd33eb0b5cc52d2ad8fce841bf71
MD5 1fcebb9d33452e38bfc72e83e30b3932
BLAKE2b-256 8732d23d2e4afc35718e41a6d360371751ff7de848713839ea7d340e574be769

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f5ccd08963096240fb29be586d71a656a353298fb4fc23fd5d68756542d2d3d5
MD5 871f844605953de03091776472fde7d6
BLAKE2b-256 f42454a0d1a75d3e2d1435376e4c33cbe91670e5c262a0acab0dca433de9ec6a

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f21f650b47c08f3593c7b3599bec4aaeead87a6242eee90bede8ab49cc2709b
MD5 3c6bfd4b44a705f3dd68b9d3b3dd2201
BLAKE2b-256 3b0d656f33803391b0b0f44dcd98bd6769090cbcdf241bece1ec8647fef4b488

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e87c340ea0e87b3f1f96d26faee8632f6e1c7ba67b75be9ac300e2ca518ab7fd
MD5 6e1eca5a1316b08405e8b40a761955da
BLAKE2b-256 9478b7a9cef416845d2346a408729b45664b9eb8ea4a1d5ed8f6559156b1b0ed

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e065a37ed3a215aa0db5da80110286ec45774dfc42a440bbd6bd3f702059153
MD5 918d00d69cbcd9b2c79d77ead7f5b09b
BLAKE2b-256 f75760139df7f8ae183e33e2a3a97aa56f4eedde6d81242bcaa4ab39b2d7a95f

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d76636e6db4246367cce304e24b8fab682dcf6da67d9379acb6c601eaab2344e
MD5 5b5cda335beef018876f4c1e5916c238
BLAKE2b-256 247604d770f027b4059f0f222335e957e1b0692429a2363cc562f64d8f789096

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ba58f8fd5173cb9b2c4ef2f2c0db1a42e0a19fb969cc72ddb342d7aad1934e8
MD5 90af55dfe00241279843df6e02bc3c96
BLAKE2b-256 c3fbfe5ea59aa31214841ec61d2c435eece6a316c472c6c78bb84fcaa2b0842d

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a0afd314f7b4599676a759c8e4e78f777490ed264ea3f6149bb55c5d7e40be9
MD5 2fa7715527df1aa3a03e6c925192da4b
BLAKE2b-256 1f8ca6bd2a050b6752a36007911f553e5a74bb44004f4bb8bef88024371aecdb

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40813e0dcc997883d22bc7421126a3ab3db628705e54c8fb9d9580677613beee
MD5 4471772cd55bc4f9a451e61a74cc5962
BLAKE2b-256 f3bb038c6c1fe5bed9395f65ff47c3dd837b702703f1621df4db546393dd2bb4

See more details on using hashes here.

File details

Details for the file xcomponent-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: xcomponent-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for xcomponent-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d252e042d114ff7e3562a0bb88743e7516ec93e121c657cfeb0c065af2933fea
MD5 8f5e9409a00d1ef49308c786c5b78c12
BLAKE2b-256 1164eed8dfff8f42a9dfd6545af86e36e6a3c50a2c060b268b238ada9e8bd639

See more details on using hashes here.

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