Skip to main content

gluex-rs

Python tools for GlueX analysis, conditions data, luminosity calculations, and HDDM event generation. The package installs the gluex Python module and the matching gluex command-line program.

Install

Use Python 3.10 or newer. With pip:

python -m pip install gluex-rs

Or add it to a uv project:

uv add gluex-rs

The package installs laddu for channel construction and generation. Confirm the installation:

python -c "import gluex; print(gluex.__version__)"
gluex --help

Python

import gluex

period = gluex.RunPeriod("f18")
print(period.min_run, period.max_run)

GlueX conditions and luminosity utilities are exposed through the gluex.ccdb, gluex.rcdb, and gluex.lumi modules. The command-line interface is useful for common one-off tasks:

gluex info runs f18
gluex info rest f18
gluex lumi --run f18=2 --rcdb rcdb.sqlite --ccdb ccdb.sqlite

Event generation

Generation configurations are authored in Python. GlueX turns a Laddu channel, an optional model, its parameter values, and any additional scalar branches into a versioned JSON execution manifest. The JSON is an interchange artifact for gluex gen check and gluex gen run; users do not need to write or edit it.

This example creates (\gamma p \to \pi^+ n) and writes a model-less configuration:

import laddu as ld
from gluex import generation

channel = ld.Channel(
    "gamma p -> pi+ n",
    edges=[
        ld.Edge(
            "beam",
            particle=ld.particles.PHOTON,
            initial_momentum=ld.InitialMomentum.uniform_energy(
                low=8.0,
                high=9.0,
                direction=[0.0, 0.0, 1.0],
            ),
        ),
        ld.Edge(
            "target",
            particle=ld.particles.PROTON,
            initial_momentum=ld.InitialMomentum.momentum([0.0, 0.0, 0.0]),
        ),
        ld.Edge("pi_plus", particle=ld.particles.PI_PLUS, output=True),
        ld.Edge("neutron", particle=ld.particles.NEUTRON, output=True),
    ],
    vertices=[
        ld.Vertex(
            "production",
            incoming=["beam", "target"],
            outgoing=["pi_plus", "neutron"],
            generation=ld.VertexProposal.t_exchange(
                incoming="beam",
                outgoing="pi_plus",
            ),
        ),
    ],
)

config = generation.GenerationConfig(channel)
config.write("generation.json")

generation.config_json(channel) remains available when a JSON string is more convenient. GenerationConfig.write(...) is preferred for complete scripts because the same object can configure and validate every generation option.

gluex gen check generation.json
gluex gen run generation.json --events 100000 --run-number 90000

The default seed is 0, and this command writes generation.hddm beside the manifest. Use --seed or --output to override either default.

Users can also run a Monte Carlo generation in Python rather than using the CLI:

report = config.run(
    "events.hddm",
    events=10_000,
    run_number=30_000,
    seed=1,
)
print(report["acceptance_rate"])

The optional model and additional scalar branches are configured in the same Python script. Parameters may be supplied by name or in model.parameter_names order:

scale = ld.parameter("scale", initial=1.0)
model = ld.Model(scale * (ld.scalar("polarization") + 1.0))

config = generation.GenerationConfig(
    channel,
    model=model,
    parameters={"scale": 2.0},
    scalars={
        "polarization": generation.Scalar.uniform(-0.5, 0.5),
        "setting": generation.Scalar.fixed(7.0),
    },
    pilot_proposals=20_000,
    safety_scale=2.0,
)
config.add_scalar(
    "calibration",
    generation.Scalar.histogram(
        edges=[0.0, 1.0, 2.0],
        weights=[1.0, 3.0],
    ),
)
config.validate()
config.write("generation.json")

Scalar.uniform(low, high) samples on [low, high). Scalar branches are available to Laddu expressions through ld.scalar(name) while the model is evaluated; fixed and histogram-backed scalar sources are also supported. Set config.max_weight if you have an independently known bound, or leave it unset to use the pilot estimate for a model-backed configuration.

Transfer proposals

The production vertex above pairs the incoming beam with outgoing pi_plus. t_exchange(...) with no slope samples uniformly in the corresponding Mandelstam transfer (t=(p_\gamma-p_{\pi^+})^2). The range is the physical (t) interval for that event’s sampled beam energy and final-state masses, so it changes across the 8–9 GeV beam-energy range. It is not a fixed interval and it is not a separate uniform angular proposal.

To restrict the proposal, provide t_min and/or t_max; they are intersected with the physical interval. For example, use t_min=-4.0, t_max=0.0 in ld.VertexProposal.t_exchange(...). The example’s unconstrained uniform proposal uses the entire physical interval.

Certified unweighting

For unit-model generation, this library uses a branch-and-bound envelope solver to obtain a certified finite upper bound for the proposal weight. This avoids tuning a pilot sample or relying on an observed maximum. The generation report records the certified envelope and proof statistics when available.

When a model is present and no manual bound is supplied, the generator estimates the envelope from config.pilot_proposals proposals and multiplies the observed maximum by config.safety_scale. These values can also be overridden for one run with --pilot-proposals, --max-weight, and --safety-scale. If a pilot or manual envelope is exceeded, GlueX grows it, retrospectively thins buffered events, and prints a warning instead of failing.

License

Dual-licensed under Apache-2.0 or MIT.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gluex_rs-0.1.7.tar.gz (152.5 kB view details)

Uploaded Source

Built Distributions

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

gluex_rs-0.1.7-pp311-pypy311_pp73-win_amd64.whl (5.4 MB view details)

Uploaded PyPyWindows x86-64

gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl (6.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (6.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

gluex_rs-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

gluex_rs-0.1.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (5.7 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

gluex_rs-0.1.7-cp314-cp314t-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

gluex_rs-0.1.7-cp314-cp314t-win32.whl (4.8 MB view details)

Uploaded CPython 3.14tWindows x86

gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_i686.whl (6.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (6.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

gluex_rs-0.1.7-cp314-cp314t-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

gluex_rs-0.1.7-cp314-cp314t-macosx_10_12_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

gluex_rs-0.1.7-cp310-abi3-win_arm64.whl (5.0 MB view details)

Uploaded CPython 3.10+Windows ARM64

gluex_rs-0.1.7-cp310-abi3-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.10+Windows x86-64

gluex_rs-0.1.7-cp310-abi3-win32.whl (4.8 MB view details)

Uploaded CPython 3.10+Windows x86

gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ x86-64

gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_i686.whl (6.8 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ i686

gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_armv7l.whl (6.5 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARMv7l

gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ x86-64

gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.6 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ s390x

gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.6 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ppc64le

gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (6.6 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ i686

gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.2 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARMv7l

gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

gluex_rs-0.1.7-cp310-abi3-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

gluex_rs-0.1.7-cp310-abi3-macosx_10_12_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

Details for the file gluex_rs-0.1.7.tar.gz.

File metadata

  • Download URL: gluex_rs-0.1.7.tar.gz
  • Upload date:
  • Size: 152.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7.tar.gz
Algorithm Hash digest
SHA256 ae4a2e98cb2aa9108c8ce0dafa712a6e972f13ce0146b6df0fd39ad78a80a611
MD5 b64c1bebbefe18ecaadae2187c91af81
BLAKE2b-256 f660d82897ff0dd2a34df5ac35bf31f89e0a15f6fdbce4a46ed8809ab186b2cb

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-win_amd64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e4795f8dbf4caf7e1df63f967c095517e8d9118552fba8b64344aac0ff29111c
MD5 73962e850f7d4d60fc04e9ce992f1c49
BLAKE2b-256 dcfa04088bee3d095386fd98385f9d2d7cd63d174d0f419aaa32f5679bff7622

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12bc9124ff51f4b8db70a98fd5b631e5a7be2cc1b6b7b9100d4ea41b7b2bfec6
MD5 fdcd6dd2f50f3d8f29182943fc42f394
BLAKE2b-256 3608ccdad745c7f1836ab4d462754a520af83bcd45267545a072706896da78af

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dacbeaaff25c607c2a297690a4957db257b1de692745c616fbd822120d9d4a4e
MD5 db92f596173d3c44a52b3cc7a2ba15d2
BLAKE2b-256 d0e63f3308be66809db5135963a0daa0c551ecd198b74569e44adafbd18faec8

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5fc81dbe2d685f547992631e67adab71e1de90346e3182621413df2a01e765ad
MD5 c12a337b64745968a848e78f86561e9f
BLAKE2b-256 429355a4f832c04bb2089e0adb5d44425cf376bc93a3b369628d16ce26296cd4

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d089b112bf0631a454df7aee8de034eff83bc6cabe237030a32f581626e382e
MD5 3ff1d0cd65364218ed514886cf052362
BLAKE2b-256 07b0a464420b0157cd72dd0e9913df9dee4668e00cfebe774d804b476a7e4e85

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 539356995271563c825881b135c569e92bcdd37590d63da299de962fe1d7c02d
MD5 11f828e2adee728aeebcd78f4c13a33c
BLAKE2b-256 55806b3566c3fef9810f3f59483d70d7bb7cd584a037d6e00ab1e3abc4a85859

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfa768ea46a6a0903dec26203887dd05774f70a92deafae1fd37f9651d890eff
MD5 c1d36f2eaa150ff3fc7aec1f0ee4b06e
BLAKE2b-256 668e7827c3915049c3460c3267ad01485587accded83a1bbe6564dc6b38803d4

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae3c723c94cfd82ea3e24da34c81a593d25b776fd3d813a24ff07bdd04d8e96a
MD5 db00b2116928addebdd9b8b7bc936190
BLAKE2b-256 8bd21921728fa241f42f9527ca72128f3a308e970de510055d553ec6dfbc0b5e

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: PyPy, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0f5768335315ef31ccd9c21f11a3a84935b778d6395f251423f00440a41ccd3
MD5 d7901b30f8c6848d999b8841668d4775
BLAKE2b-256 905f0a334948c8044311a04d7cf413cabdad40bd981205e5581e437e53f3dd51

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d882ae50c45eb0745c84f1cc641e768edcee176e48d059807843522528c94e98
MD5 b209035978bd20d8211f15c80147401b
BLAKE2b-256 99140dbbe97cf75e454a12480c621d921e4ffb83fcd1c0065d66b4d7b7e0b8b8

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec075721cc3a9bc6127ff7aaf7a5572522c28ec10708699ce1666fe308e36ae4
MD5 2b69eb9b0748263196ac6b10f652f00f
BLAKE2b-256 235d50a8545e799251279465cc4b6772606068bb2344d5bbfc74d94862e6e83b

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51c6bacb29aa65cbe6a9c033f55f69a361918d8e199706a2647a29ad7d853ad9
MD5 cdf755874623c247896baaaf67cdd5e6
BLAKE2b-256 7fe7aaa3069710f5ccf463ccbff57ffb8c94dc5338d94fa5ddcc6c54632b04d9

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04e0eef957a15e5f9f7b4920f085115dcf0f94408e06ac4ae779238e6f70835f
MD5 9528b9278a02dea480d57ee9c7c90635
BLAKE2b-256 2ac8ded2e0e3bd7e1c0c59165803670ef124ddab5f88ab7c186f826f1714915b

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9633625b24363690b1bc320773866763638e5f1d058bbe6680a65c4ba5806812
MD5 de1fdefd050ff74aa6adb32680e62ca2
BLAKE2b-256 0246101fb76b1c427d6d18937bc2bf2bbf68bc123ddf147eebe441d4b1a9077f

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-win32.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e88834e857c546fc3d985241fadbd547828ede5b6272920e292249f2790a4465
MD5 bc3d520a48f44c4ea4a406e2cf539524
BLAKE2b-256 658b61e1fb61bf9f6ac75c0738ee5b32fb61a2fc275d98e24fc35a04fbfa527b

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39e19c71e7bac1e0da489fb14a7c625c64f4bcdf52aee32da488a40b8e1a7c4d
MD5 a1817030a57d47ef9770a6dc2c1d1e67
BLAKE2b-256 8e816675de0b972025db12850f47e40abddecbdcd00b8e584b4dcaf9779e3e05

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 579228b4c3316bc00166b14ccda27267ba001f09d0af1e028fe6c228df4e1922
MD5 b01a0a4a9f42541134e792733f69d278
BLAKE2b-256 a1e9a9fd774965ea1cb33f0c56225ed7acd2a26e7ac50a264adb165e729f7d13

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 151d00bf3327a2f20b22ef60cd692464eaf68cb79b94d95308692e59ed925226
MD5 85390dd69c232fcfb5c6e6b32752909d
BLAKE2b-256 b9dfa9cedf1ed955c1ac01024f55a683d9de77fb135d71f05fb7013ed721bb4c

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 add847ae4aa198eec44cf20ab1c6d682936467fdb9a9ce4a1804dab41469c018
MD5 aec8acb0720cd7f46c091eba81979a30
BLAKE2b-256 c83a70b947212399cec0377f959feb0bbc6cc8f8382eafe08c93ee41ec429d86

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da276ad33424c91c370f0b55c17bc17a4155966d73ae99a648bbc7d7ac75e4a2
MD5 9e640720210a89ed5cb8ff948c924636
BLAKE2b-256 024e9e5611359e4e72d64d38236b3563339f5fb80d9c440585bacbfd307e7496

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c64d9ba1ffded076ac358bf8f542b12430e3c46b03bfb241b721ba817e988aef
MD5 91511886239ed4205315370384ccf497
BLAKE2b-256 d545e1be0b2dd8f0cbd0b266b32cf6a779491596c23f900860b39dbd7284f152

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53e8f9d45c70befb352e837477d406f6fc959e21c3b32b4f5658f8690ac614b1
MD5 64ba4df72532859c35aac36478ea2b9f
BLAKE2b-256 c16a1225ccb33636bd9033773d0c4be82d95bd6c55dfafa65ea89321b4bdc016

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a98c2f889b5fcbe1042bad569aae4055688b7ff88556b60830fef054a7b3742
MD5 4a110fa2aaa4323ac149193eaf2a33ca
BLAKE2b-256 48ce664da925645e4737a4599660d37ed91e752aebf519d52d6af6eb121eff0b

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37c2fe78dd14d9144d5c6b21f72c6fc4a93c716c38cab0ddaa5e6b91e6d4e9fd
MD5 e549fcb8547b572b05b582951609c7e9
BLAKE2b-256 9278d91d7fb1fbb218fd2816682f61977642f7f8dbced360b006439ea97a10f3

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94d6475c8f9b091c894e0a064a11af258d6f8407d74d162ab2fed91c350f140b
MD5 1199fd123951f8be6af3376f908dcc6e
BLAKE2b-256 072457f9aaeac1aa95b07f03f14eaf37817a23d2b35f34a6e1546852ec737faa

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 535f4c26c6d8e0e59b698a5705570640885bb9a666233495a69b132a5204dd28
MD5 7a7a447eb4f07a63462465559e5a4055
BLAKE2b-256 b2fa8056d944ee692ef9f088750f49e253ec841f0ac52e605575a3afeee537f4

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

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

File hashes

Hashes for gluex_rs-0.1.7-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f88fddf01cecf9edbc79e94256bf936e29739f26ffa33abae1ed8205c312e0c
MD5 a95d885f676a1acb14f11793d0c43ae2
BLAKE2b-256 3ecd2f3808596b9eaf6e20ddd4faf9f7d5b076b921b8db886ce605e86fc5ddb2

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-win_arm64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-win_arm64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.10+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 3d38429271c17f375a2e53b1b8c22b95c3e43c2287de47ee189842eb80546c7c
MD5 28d0db0aeabd141fd22c743a770a647c
BLAKE2b-256 782049609722c12bdca33b1bfeeb31a771bdea0e6655100a6890f0309f2c6672

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 a31b7f5a8d808261eb9ebcce0a2eaf958f7a022131817f96673b178ead3bbffd
MD5 7e165e7bbfc81d33acfb36d29f94ba35
BLAKE2b-256 28df9ca88c945458e382fcedc04f68dd79debe043f57b849c86a97d27c84b7c4

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-win32.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-win32.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.10+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-win32.whl
Algorithm Hash digest
SHA256 1931a795038f83c2d79ff02ae7c1b4cbe1298326cac1221fc80ca07c2f2b5ee1
MD5 15dfdebf5729ef3804ecc1f47be44710
BLAKE2b-256 7f5b6ff846660a256857118ce36cdd1ee320c35107bf91f900fcf93c196eb213

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5052b68b849b046e4477a7b14f83053eb233a463a44d8b0f464db098b98afe26
MD5 73b5f948e288454e9e4a60a32d1d943f
BLAKE2b-256 216119716b8576c62774aa3a580ab866bde61abce162bf421231f48504bcd81b

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_i686.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 731283316673bdab9e72e33534248af61c5b6ab06847f4686aa7cd1df053d350
MD5 6202fb43b6a0f1ee04d2830ea9593451
BLAKE2b-256 4d46da1ad53963f36d543c135827a970bcaa3e6b5c761bef63354bf4667965b3

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d84500e51145fa8a977c3963e8259c07c36419fc73cbb2faf4b367cb02065cc
MD5 c5371722332df93b9e31772ea95cecaf
BLAKE2b-256 2d1022c6aaa19bce15a0a07b2127b842cbba4500f3098ddbab1b2e08be1f2603

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.10+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c9fa5c6ed6fdfcf39966ccdca2c9e7420332e3ca04706f77d8d42cadd97fbf3
MD5 ac32c50b75350028ec151c23921a8de1
BLAKE2b-256 a3b5afb45def9d743d8b1e0cce4c38c3dfbb0f4e7ab8de7ef8fd7ebedf6f3b03

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 6.5 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b22ef8fe5b4561b04e6d2db30de28fc64bcb9a40edf04c2029782e13107a3a3e
MD5 8e49fe65f33c40aa390d646e0a2515e6
BLAKE2b-256 113ceed4df6c536444fc1a4cc144a8b231c5b718dba6db7db313100acf174fbe

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9d1ba345e054d51d45313d67c9b4bf50633d4c2b0634e8c3fa1a4b010d7ebdf
MD5 28922695ed6c0bac76b004e88ad0bc18
BLAKE2b-256 1d6f1a7e88bc62e7c008bc96e39c078de3bd8d9247dd13421098ada252764508

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d341dfc555158bc8500c9f08d5bcef57f43aa047638503906f7a4232d1157c93
MD5 a9bee23ed710c638c1e3711f2af471f3
BLAKE2b-256 309a7a24cbbcf386fd74d43b3824c7a70f7095d1f42efdb4b9a315bbe9127620

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b17493e8ac28e51d9bbf49f25fa0f5cae29a0bc6de04ee14c32cad46d4f8f3a
MD5 a31c425ad1e6c02b6dd87a60fbe5a4b7
BLAKE2b-256 b155e4e4cd72e6e77966ccd89ffe69253d98665720825eb74e0e914097e51083

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 6.2 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ddf8f02ca93d8bdec7600df05011b49d0b2c6e590ecbc14b750d652849693082
MD5 fbe30af6744cdb72a373c4ec5e16f14a
BLAKE2b-256 d5b0aabb373319def373cac71d12152da44cec52bce75c09a6d91a6df0c62d60

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: CPython 3.10+, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b25fa0db1b6043bb524da55d6131b16acfaedb679cb7bffc0a0b6e03d1e0eb7a
MD5 8951a5c2036b771a045ab7c43022b9b1
BLAKE2b-256 d8944380a29eddd495e006c15465b8c4518d0747af4f0f9565b7518cff54c0df

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.10+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 550436aa9118f6347cb402708104849300c28b4cdb82293e029887dd00b0a65d
MD5 902ddc268d78d6837998de04fe20ab32
BLAKE2b-256 33c81c0e2ecd2d47e00d272f592f72a9b078d2be1913d6a266b60c90b591a550

See more details on using hashes here.

File details

Details for the file gluex_rs-0.1.7-cp310-abi3-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: gluex_rs-0.1.7-cp310-abi3-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.10+, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for gluex_rs-0.1.7-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 097d00b1538b91ab078960e77d27d977ff81fc4e9e97eed8b21c4f820be9638b
MD5 6fae9f204d1e386f4c7b32f46cff5490
BLAKE2b-256 d398a309c5d0fe931ff35660095937a7d22abddb535a918fcf5590e5f5880e56

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.7 This release

43 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page