Skip to main content

🐍Lightweight OTEL span to binary converter, written in Rust🦀

Project description

otlp-proto

otlp-proto is a lightweight OTLP serialisation library.

It's written in Rust 🦀, and doesn't have any run-time dependencies.

It serialises a bunch of spans into OTLP 1.5 binary (protobuf) format.

Motivation

Tracing should be on by default.

OTLP is the standard data format and API, and the standard Python package is opentelemetry-exporter-otlp-proto-http. It brings in a total of 18 packages and adds 9MB to the project virtual environment.

A typical Python application, that's being instrumented, only generates own tracing data and needs to send it out. It doesn't need that much complexity.

Usage

from otlp_proto import CONTENT_TYPE, encode_spans


class SomeExporter:
    def export(self, spans: Sequece[ReadableSpan]) -> None:
        requests.post(
            "http://localhost:4318/v1/traces",
            data=encode_spans(spans),
            headers={"Content-Type": CONTENT_TYPE},
        )

Library size

  • 170KB whl, containing, depending on the target platform
    • 350KB dylib
    • ???KB so

TODO(doc)

  • link to pure Python library
  • link to urllib sender
  • link to test vector generator

TODO(features)

TODO(fixes)

  • validate what fields are in fact optional
  • ???

Limitations

This library is meant to marshal tracing data that's collected in the same Python process.

It is not meant to be used for data receive and forwarded.

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

otlp_proto-0.9.1.tar.gz (69.6 kB view details)

Uploaded Source

Built Distributions

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

otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (357.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (380.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (445.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (360.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (185.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (224.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (211.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (182.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (179.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (197.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (356.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (378.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (444.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (355.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (184.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (223.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (204.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (175.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (195.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (356.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (379.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (445.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (356.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (223.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (205.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (175.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_x86_64.whl (355.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_i686.whl (378.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_armv7l.whl (444.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_aarch64.whl (354.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (222.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (203.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (180.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (173.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

otlp_proto-0.9.1-cp313-cp313-win_amd64.whl (87.5 kB view details)

Uploaded CPython 3.13Windows x86-64

otlp_proto-0.9.1-cp313-cp313-win32.whl (84.2 kB view details)

Uploaded CPython 3.13Windows x86

otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_x86_64.whl (355.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_i686.whl (378.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_armv7l.whl (443.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_aarch64.whl (354.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (183.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (222.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (203.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (180.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (173.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

otlp_proto-0.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (195.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

otlp_proto-0.9.1-cp313-cp313-macosx_11_0_arm64.whl (160.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

otlp_proto-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl (168.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

otlp_proto-0.9.1-cp312-cp312-win_amd64.whl (87.4 kB view details)

Uploaded CPython 3.12Windows x86-64

otlp_proto-0.9.1-cp312-cp312-win32.whl (84.1 kB view details)

Uploaded CPython 3.12Windows x86

otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_x86_64.whl (355.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_i686.whl (378.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_armv7l.whl (443.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_aarch64.whl (354.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (183.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (222.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (203.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (180.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (173.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

otlp_proto-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (195.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

otlp_proto-0.9.1-cp312-cp312-macosx_11_0_arm64.whl (160.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

otlp_proto-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl (168.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

otlp_proto-0.9.1-cp311-cp311-win_amd64.whl (88.3 kB view details)

Uploaded CPython 3.11Windows x86-64

otlp_proto-0.9.1-cp311-cp311-win32.whl (84.2 kB view details)

Uploaded CPython 3.11Windows x86

otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_x86_64.whl (355.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_i686.whl (378.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_armv7l.whl (444.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_aarch64.whl (355.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (184.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (222.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (204.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (180.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (174.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

otlp_proto-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (195.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

otlp_proto-0.9.1-cp311-cp311-macosx_11_0_arm64.whl (160.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

otlp_proto-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl (168.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

otlp_proto-0.9.1-cp310-cp310-win_amd64.whl (88.4 kB view details)

Uploaded CPython 3.10Windows x86-64

otlp_proto-0.9.1-cp310-cp310-win32.whl (84.2 kB view details)

Uploaded CPython 3.10Windows x86

otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_x86_64.whl (356.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_i686.whl (378.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_armv7l.whl (444.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_aarch64.whl (355.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (184.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (222.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (204.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (174.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

otlp_proto-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (195.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

otlp_proto-0.9.1-cp39-cp39-win_amd64.whl (88.8 kB view details)

Uploaded CPython 3.9Windows x86-64

otlp_proto-0.9.1-cp39-cp39-win32.whl (84.6 kB view details)

Uploaded CPython 3.9Windows x86

otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_x86_64.whl (356.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_i686.whl (378.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_armv7l.whl (445.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_aarch64.whl (356.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (184.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (223.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (204.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (175.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

otlp_proto-0.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (195.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

otlp_proto-0.9.1-cp38-cp38-win_amd64.whl (88.7 kB view details)

Uploaded CPython 3.8Windows x86-64

otlp_proto-0.9.1-cp38-cp38-win32.whl (84.6 kB view details)

Uploaded CPython 3.8Windows x86

otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_x86_64.whl (356.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_i686.whl (378.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_armv7l.whl (444.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_aarch64.whl (356.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (184.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (223.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (204.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (175.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

otlp_proto-0.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (195.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file otlp_proto-0.9.1.tar.gz.

File metadata

  • Download URL: otlp_proto-0.9.1.tar.gz
  • Upload date:
  • Size: 69.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1.tar.gz
Algorithm Hash digest
SHA256 6e845fd54d123eed33e8b2c0ef6bb4456a2401c21eba87a3bc0df267972ed292
MD5 857440a83389db57f1b26aa8b62fb949
BLAKE2b-256 518f21ef5b8c2804eaff0a00c013f1660fb37490278a3ddd8a986947477f3138

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1.tar.gz:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c067e339bd89da64bd57aedb4a8d371446f5e12d32f32a43875e28feb10b7575
MD5 e73c3375ab0ebd3f377000d95b0269a2
BLAKE2b-256 5b995dfebf4e33394c9e5c3c664109c810ff35d6926fb9ee6d1ce3a574551374

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 727d343947b89fc6f9098250c2dd4d4cc3b9f82c30ae792d0a58557369a3a3f2
MD5 1fc5c5634fd2584e8cccb34e33b1cd7e
BLAKE2b-256 d49d2fc5326f1487912b48cd91c75461cdb9db0af1ef5d47b21ad59dd9c923e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd4ead104d70e1a7f356360f4d0130f0f587fd04ad65828675f29365ebf5a793
MD5 6444fcf3874e9ab5aab45bcbf6c040c0
BLAKE2b-256 6a3f61db776e2af59aa779d18c2ccce3b85490cb0ddd138a9ea4ff6963f9718d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e1fd683768057853df6d59bb18c2f8c9b1dd5de8d6b65eb09fa2e601c287740
MD5 4f40cbcb5a793d10acf47f09ebcfbdcf
BLAKE2b-256 92d9943601caad6b6d4c3e511636a6c95e976e19c0fa6055aa01ee850776d12a

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b43458fc7725301eacca1f9c15c21895c37900a37365af3b7dec044dcf9ae320
MD5 6c7604d424b68694e88b1fd7045baa4a
BLAKE2b-256 21301494369cd3549f8af5bf0ba424a5e579cdcdd70c36ba4e2f16d81e66da59

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 957d63bf4ab3d872bbd4dfcd4a6c94ea92f0c7ca5df8ae817ef36e05b4faecc0
MD5 72418a5351a848e5d6a8f2a833845132
BLAKE2b-256 764d926de8f9c17413a407c24eb115589464280eca1978f1fc79544682b1171d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21646709245b6cbebccd61f6e2a8515735d25879d4f412af10f955ca124306c9
MD5 cf78893037efcef0d46a4db785b02ad5
BLAKE2b-256 c08824042af63f657b9cee6d4c5d2868eb5ef0874fe31b11cc54d88453ca1347

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d2932ae792bbdab9911f2bef84d0549da12dc6b6b225fddd8bdc6e940e1d6ac
MD5 9b44700da00db07c6c010461e4940315
BLAKE2b-256 25bca275362e48176f0fa69018ed82e4a5234d2d7c6a60f15ac41d85bc96ffd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0bf5c6e2474dcdb4f9d5d82dfecdefec3fbeb98b94e1e3fbdf2186836423feb
MD5 23ba4fc2afacf33ac3cfc2103bdd5abc
BLAKE2b-256 e809a51435a393213dbbc6b392526970f89354dab84c101603d2618860991ccd

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fcaeb2789670646b5760f8edda79d3895b37171c5bbea789a2ef8002e2b6424a
MD5 596b583f84582d9d32bf578223d944bf
BLAKE2b-256 26d74a44a28ddd08763ab4eb036e7c97125238f419f3dd1a3ac19f575150b3e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84d32f80f24d912db809e213b251b9205fee4131e1c128c6b3d607765d6e9ef8
MD5 6555e5d1954f1e02770a492ad5c690ab
BLAKE2b-256 9507f70a0130dba0b399c6323d49ec600d09afea05d28f1e1f6594b76fe587ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79809a8af08357fccd57215a449b22bc261894a47e41d22786ad59cb32a4acb3
MD5 57cf18d462def81cc40966bf230aab1c
BLAKE2b-256 91cbceca99255de4d6140b2b296e9a27ba56751f9fe7e653b64bcfb735ec07b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92fa474d74e6c28288be7a113a64aa7e370724a28b00edb27143f6830e19f57c
MD5 c114e94f5a767c1f32197bf10c6f5ba7
BLAKE2b-256 96d29470036e29b47df7719fe7452c7c183aefb72d63f5524f51854e22c3fd31

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f9bc7768def88a8f261a9538dd601fa3e0b3f1953bafd7bacfa321a39cd6f5b
MD5 75f1132657627f1aad6360250ebbfe9a
BLAKE2b-256 b67a3e8a4859669082daac565c9eb18bfc6915fc4f10129770d8f13195fe8d22

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6773e3861d9f0bc278aab634fcb4a377b269de0737b7166d3a674c9877e7c0f9
MD5 5a00555bfbed0371b111218b1b010f7c
BLAKE2b-256 8e8ea74c499b2082d1ae1411ecfa7cfcba0db6a5cc04a5eb8068884bd26333f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c8133c3790eb430a54ada3ac11276f92ac64265828f0a74a2dfbc2e0ebd6b73
MD5 b93ce8913ba1f4dbb066116d03bd4b94
BLAKE2b-256 88aa2703bd1cfb95359561eefa8215a541f49ca3e765e528078b8d51c1a306ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a2230fba190240106c5a49af6e3bb364712f06fce8de5960cb6ffe4e5819e8d
MD5 cff3938876e64256bbef96690324200c
BLAKE2b-256 a661d3db54bab54b70892474b955e286b0de8b7c5e1aac064b6418ae63ddd0ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36e653d6e30fce19b56ab0773b26bdd71a5a00ca6d508394bbebd39e745d33a0
MD5 343c0cd808dc1a2617e060353c3b8947
BLAKE2b-256 dc219cecca389d236ea0f60c5e395dbd350a776bef621d65ec0ba8b90439150d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 629fa999f03fa0c86341957decafdaf0843a3708e9ad2333c13ae6f158c5910d
MD5 74f45da1b8a0d14a09a90306413fcf84
BLAKE2b-256 f7cf88fa5c0fde560446c1ab2a4826ccb462cc069df4c7c44cfdff291ae0bd9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5aea60ac08a337bdbf03f5f79cb6f52aa84ee6eb3900a9b0a9a9be07a42592d8
MD5 b1843819cbe9fcca64b06dd32784a206
BLAKE2b-256 eeb7eeb019f2f3eb0f8e1a262b083fadfb72b6d291ea8dea3cae81b650bd50f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cdeacf36f6fb8dbdd6c4b645d2e2b0d8e755b5a3487d30529efc850c7ced7bd
MD5 96b0072ba6c14bf5ccba8960936a16c6
BLAKE2b-256 180f43663af1efb060791fb54dc0050015e8c3f1f49a5b6ab409315925b4d79b

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1752ed8ac8d76bbddb62d00a18d3ef196044d4e816b576946abb5740f1fa3bb8
MD5 5a3acd20ad42f0d5295ac9c7570083dc
BLAKE2b-256 bdf854f8bec3aad9f3cc0cb50310d80a0c794694ba908004a3e62729c7990dd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08df1cf34080f010a14196ea483661287d9057835452e37de85b8db19620a866
MD5 46c1b847fd168f1e257abcdb3b9cacac
BLAKE2b-256 85bee3c13176209e7e60d3cf3f404ba69126bde2dde6cf92420732fccccf04c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc9fe7e4b1248ff1d69dc43e6afe6bc969b6a5d6f2a7212d2ce0153c85f015d8
MD5 3544d46857ecfef37f4f7aef8a7f44e0
BLAKE2b-256 fcaa70f73be7e48c3a2c27b0c2831731b221585bf5ddce95d50d59d228a4a4cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fba82952ed92e10a80a6792757ae862af99100793ca0c387d2f63c67352dd91e
MD5 5614a79b9e8ba8994497e6a8c3aa4da7
BLAKE2b-256 61bbd54cb6c4e75f39174e66b5ebe7874cab8f16e13c2ff89d3dddf6a79fcbc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eeacc3b6c90202bcbfe36b0f7bf482187c388a70250dc3b71bcbc7fa9b1ac2a4
MD5 8b9f149098a19e9069e2e81d484ebe4e
BLAKE2b-256 75971f04889e71a27f7201dd9f1ee025555a9beecc191614c4c55feca6c7317d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ef3ea779611a97fcd26663a94181646ff0fb3fc8795f6c62ce4787e22e826e1
MD5 364d0dac16fdfb35b4e390a3d7f18f40
BLAKE2b-256 61c2166939ba20eacbe336e35d18d52f73f2e5a58e14817ee05e87052f3731df

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68fb9e3c470dbf25b9d273943aeb9353b0dd31f7df91e6e5efa017b5d1023959
MD5 14cd034bbaa18f95533cd67f94e8015d
BLAKE2b-256 d78689efb3f8bd4140b113e5ebc3af9fd0826920fa89b16a8a1edf8e7eed13ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5e5eeacda32a09074418e417f3d6554cc14bfee49a8294a9993bd8bfb65419c
MD5 5d707a3097406c2b75c2f5ec4f2133ac
BLAKE2b-256 c8f113f31d31061cc388d0dbd142f122010cc42c0b78414240a2b157c6b103fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f4cef3fb836cbc909c1b29cc958ddaf3aaccdbbec72a8b2494b8dba99379a13
MD5 144c65f3e4fa587f1150874734a655d3
BLAKE2b-256 fc424e2e488980a7e6324a9db422ceba24cbc3e3704a38c94e4af4a5e81e4e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93f2869c9638f1586126d6d6f5cef13686fd353b1403f4f823ed0808b2ab0773
MD5 6b441403d1a31c349959e5fd2a2ff804
BLAKE2b-256 0b9deaec268022e5d7b3e4f4eeaf05b04760802f8b5fa20faf30cfb2ab11d647

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 956f820e3c84080b8fd7bae76e257f95a3ffaedbf750091d2c0eca75024689a3
MD5 b8a276e9eb0b8b99e8f2f9627e0794b4
BLAKE2b-256 733cacdeabe41feb74d505600df5404843317feffd69ade4732977b784173f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70a71cd33876a207e574e09872235396c976868cbda73165201e525a0a6b76e4
MD5 46bdb3471302b6644ad8c51d5a0efb96
BLAKE2b-256 4b77c85fd7343525d3d6e46da1ae4c1dec96e645869a2832fa28ab41abd193b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf07f41fed78e4b33da27d5ce3a77df9173e3a375aa369e754fb89fd5d5266e1
MD5 e616c05c30a1da9444bf22393ba05f12
BLAKE2b-256 5c8c2b529cc8c65eb8b3363f63788daf0a633d0675bb40e3c0440782642d4d20

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70b2dd27ca9b99e44bcfae6cf6ef7737af82d16e594f45073a5678ea261918eb
MD5 d4430005467d35aba230888cc40e1b14
BLAKE2b-256 4d803449800ee0ff1221a7c5c63e52df683df8252eb5782ceaeaa414aea801cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5f6aebfea1125310615521a2a95bb1f255ac6aaa19f910ae6af871c03b6c555
MD5 6063a458a604a6a288fd0f6f3dffdaeb
BLAKE2b-256 98c72ce88560a1099cd9b793f175c53284980c0905f99c62d392b377282a1b57

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 87.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c235ac2e43b8c2e39a4cd9baca3124c4fb9ef9c4bab85f2de4f36d64fba103c7
MD5 f28f39daff209dbb28fdf31a5cd46afe
BLAKE2b-256 ecc5878509bceea4720558341e62145ffa63c777ba016354dc5b31f44f1cb942

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-win_amd64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 84.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6f3adb8850eba5e22b11312d448e84ba90b919127c935982aeee49cfe54956d8
MD5 5dae8d83a93da783cf960a46c5cd8910
BLAKE2b-256 148558faf5af568158715fb55d9b5460f937de1f37de8e2c63b956b04f10264a

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-win32.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ede7b69e7dd805b6362c0909cc0f055c80d2e6a01c8a6b212227f51039dbd66
MD5 ae621d84ec3913f88041bcd161ebf8d2
BLAKE2b-256 2a573d423a22e5af3c635bdb78c76b19374803cafd0aa39fb1527090153f1802

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a96411094f589f729925a1b7def25679375376cd69e1a1ea208281a75b095531
MD5 96bc81ab814d9585934db7acc7ff99f0
BLAKE2b-256 b2abc481948e082a88ef50d91f485792529eb6b84362d0d961b9caf77e07ba70

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 beedb84ceddebde4a62804034cb650cf524250d03b7c650505d93fac105ece99
MD5 701dfe49d7db04fd7e544b3cbf9de3cd
BLAKE2b-256 a0c07e9cbc87f8da575f2badb3120c52ea5726813578f5fb1c3c837234f84225

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dab3094df316243322302d650bb917c583d3bcafd2ccd854fc4085890ec06d63
MD5 164a114e53e55ec0587e080c10bd2dc5
BLAKE2b-256 682b00ac9862bcfe8a0748a383ee73f514bb2f611b8cea65f555e648d34dc354

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36b1b5ffcb15ca038d0285c977a947fbfd14d2dff23d0ad60595e6a19ac4df0a
MD5 95a0632179531f7843ac6f0b6bff459c
BLAKE2b-256 e40bbc8f11c597895da3c8d7f8691b851485dd43a90f5cf3b15693bb99ee65ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3aa088f4b5039a3521bfc22698b219e4938325711d86c1a5eef80e2d048953a6
MD5 723550b6ddc02d95b382754a33f8d23e
BLAKE2b-256 516287d49522a877cab6cf8604bb05a802b83404ebec1433af194f585ccd5715

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa371d06e8d8ada7f6ff995b561ab4bae982c880120fe98d1e4db926c4e013c6
MD5 9d2b690fcdf7c0d20d3f0a8f136d6c51
BLAKE2b-256 e57ebf0b6dc1f1ec0a1e79ead6b8f43a8c817917597f1052bd3ea06f072afcec

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 61627dab8754328b0982098d6554e824df725d45c8bf8258a024bf8459992825
MD5 e1bafb463f8b835b08080cbbb7ec160e
BLAKE2b-256 21cbc7ebdb8798d98a27c8c98f50c526d775425d588fbf0cde9ae9c6ddf3628e

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb49d43bf8d756f60e38ea1ff079fca1114eeb613e4013765025bc39730c4634
MD5 208dc85a5113a36b4ce09a8993453144
BLAKE2b-256 1875387fd15a0b821ad49f520b7f9930e4c871fad8ddb3fcd63a5ac2e2da346c

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4e47e1904b388c94ddb809aa9c8dd3dfdcee9b8b0dfe3754f593011dbb5ec71
MD5 19c6f5e8349035f7e85df0d4567563c5
BLAKE2b-256 7ce79389c004c10630cc1fd9ef1dad66778348b9461281408d8fe3f0a2210071

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 555913ad262eaa321fad33421e67b37ad1b45e62acac9621cbe7282c40f87fba
MD5 c6090d97e71357dd75eaa329bb8ee883
BLAKE2b-256 db3861b7eb44c80c32a864546ce7c2ed737708eb082b2bf9c6c4042c87b1f1e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0e7e9ab6d10bf8cfe00ce670f969ae5dbdbe8f50c307e637bfcb9f459f47d0f
MD5 d6bef70952381e5c5f18f80576187db8
BLAKE2b-256 d958619381a82a33b030c96973f8ed1f10402c465a30153d52bd66aec2422ba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 87.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2ede547afd740ae569f7723eabdc67c8c70c611794c8d649f491329bafc89e3a
MD5 d0a73fc0c003097c178829739af22f9e
BLAKE2b-256 5f61e5453f094a163357501e57641ef91a1c75483abe0d3dc4711753b1129b4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-win_amd64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 84.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c715ca274797fea3ba46db0bad5ab236222da98bb4605d29c41609b733728cf0
MD5 56c4d7314bce64492bce5a5611962950
BLAKE2b-256 6cfcf06029c2db7287cacb5bb2373ca1336cf4a1e53e733046c4c9cd7b5a9cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-win32.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7edf3b42c932fc396236dd2a2ee9af094ad21ce4641a83eab3fe81eec7a7c3e
MD5 961230e37a46f61cefa572242ba26ad7
BLAKE2b-256 7d26244b5e9c726979921b8a166133720cbe9fe15667e4961335318778d4792c

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f75c00853b8c4f45924955af84c217d28d58b640861cd0645a95d568397a5a5b
MD5 2ba219207765828d65870efd74db51c5
BLAKE2b-256 1a4bf5b4044dcf1c6c2a11a58df92b302f933290f6054f675dd1d2bf15b310d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ca3053c7903c0c02f81eb05cf45f650700d51fd661fad30689cf480ffde4e48
MD5 f8a5d895494452c9d7cc396ef6e3a004
BLAKE2b-256 db635ca1c0c582a5f2b3060a4f91c370a5cf770b971958ccee5807213031206c

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91230ea391b0c650da6b9f3f09840a542b2aabd38bec8491870b9b6cf6ef0e16
MD5 d22693a8bedbd823300a491af170870f
BLAKE2b-256 a0fe7226c109c46bd083c4560bc54a9ce6c2adb679ba8604cf1046aacf6aebb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 477b8af1bf51036bf7b02ef3719cda07c09380744d68e2510c0d5e6ea176037c
MD5 db8478d353853ad3f1c8bb732c19ea8a
BLAKE2b-256 bbfaf67b0325b2f796a6b900c15fd099883718a7bf1ecdaf886aacf98ada8416

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4db5430012f9c47730031661118e3ec3f8810b124a601751bd41aba5b52a84fe
MD5 364a74e67707a5b2feea2969cd43195b
BLAKE2b-256 88429b27bed7c851d1a8b45bc6ab2b50106c2eab0acdcb58199c9a86eedd30e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 639d901faa93bd6940110a32ec74dc535e2aa189a8931786cc9aaa39d287f80c
MD5 759e7cd3a5033b9a7daa3203c493a977
BLAKE2b-256 15590a5d5ed83f6130f5e437969960a9b87d17b1bd9b9a396aeb6c666d714996

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4750dbbbbfa90d7e47b23fe83174029cde975942a00f75a616c42ca6c04e6dd5
MD5 7e4b045d6b9992a0b1e8eddd5b67f177
BLAKE2b-256 8506f9047a4a23e3445db90c3ac5f889ac35913089e8dcb060ddf1a8bdfe7247

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67e120546325ed50ace43f9a358d4d32a5c3ff9159487ec9216f845c84a4d89b
MD5 3154acf2556fe931358ffa63467575b6
BLAKE2b-256 8d9a8b2d1c9b98cd002e62429709c245dcbc21b7f137a5aa6b087d550f9fb79f

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 117d7c679f16404c3116696c06a956c70e6d1c26e02fc844afadeb4142794c0d
MD5 4f6b5557ac466236d0e60be2c573a482
BLAKE2b-256 abdc9b21a4eed7f7c2e5811c7af9571425812350553da9bea03535c81512a736

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc110466793fda1d70a4673eec63a2fbc379b09b1c7c8569b599a68fe7a58411
MD5 cb93ba75f0dbe3d92e270293e1437f4b
BLAKE2b-256 8bcfab03c023f98c98b09bea449ccc6f61933deb3d45eecd97a45e389edfa2aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 455d3cd0d7adcbaeeb53f69359945844a438e588929e0c72f8f2b310c7d289ed
MD5 4b3f131a1dc41212ee4a59da4d01241b
BLAKE2b-256 f701101014c7608aa15f43fb9411fcfbf1a3989baf253c381a46fc2b5b4fc517

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 88.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 98c6befe296deb4a8028d835ae9582fe37b091db5a3ada509865b093d3c988d3
MD5 239c64013881f86c9a90ca48e319e65c
BLAKE2b-256 2b81e704232e4f6f8f93dfccc2cf0c50c54c4a6ee5c2a95ef4707cac4e5aee72

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-win_amd64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 84.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0a96bbfa2216819c61ad498502b0cc3241c0168fb2fec77ac76266012bedd13b
MD5 1cf69d34501d476b3ebdb0f98fced393
BLAKE2b-256 81dee811ddc69b0a67c0aefbe447bcddfacb73ab2ff15d10c0ab90cdb9b6bc59

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-win32.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd479721c98b265afdb6d531a4618d8d83a476dd372d5804e50096b0a5d8afe9
MD5 05d635a9f0bb6e5236d59430aa859ba0
BLAKE2b-256 73e6843bcf55a8200a9da833bd4bd616db4ba7063b39a27a4ed859029df619eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5a23cca1c3dbc796623268522dd292aaa2cf6b8171506d8c9d3fc9fab439611
MD5 76a77d5f4ffe9ea37cd80b9b8031c43e
BLAKE2b-256 d031c60f1bc7f871077f1aac6da69a2311c5af05fb7b253a6a1981f3c022c68c

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 489ec6e6139ce5585ac34480a5b8db52cd93c0cfbf9c5c785240e8c62069345a
MD5 dfebe584e04c5953ac2cabfab0cc33b6
BLAKE2b-256 cc673fe27668c6d51b57007e90f60b17b5ec1c85c078d8ff6ac4ea07c6f33a47

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fa37bf77255dc49c464c43151e94608e5d4b7f53f438ff175a18fd43506e47d
MD5 1e1e4abf84bf74cb2ae016c8ea455581
BLAKE2b-256 54f6dc62f482bc964c46d69b415e30252c3882226aa30f99ae3641d1054477b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02f7d69736734f163faab2da98576214423243d59aa8f1d4d99edc4b75c25e99
MD5 7989aea885cc0fa5408e00326c40eb57
BLAKE2b-256 68232b992ab16a87baefe912f2f9747ecbd1a4ff8ed4c1eb64a3fd28f83113cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59772016f7638068a30540b07f33ebf00900d3c8437fa25c488666b6972681d8
MD5 0ba71986f839860230d1eef7ce90f2fd
BLAKE2b-256 393eca29ad729c27bc7ab7c7c757342bbb8f55b0e271523cc7fddbcb86b52655

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ffae2a800ceeb8e53807c9d30fed44c8fccd560e5b5f1bb56f09c9531181f7f9
MD5 22409e9783895234d60addf47c77949e
BLAKE2b-256 91bbace849637210448c9801720abf2145916b0820e9ba336350b8eeb6304b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd02dd750c3fe3886691a4333b9bad49450745c07379b683a1c087b83505fc22
MD5 47f45c610421bd5db50e8daf5fa24ebd
BLAKE2b-256 25f356eba4bf7a250c11be055627775e19694de7b9aa4fee59663facc2db30e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acfc8466063e36dd4255fdf0ab8bca243dab45c94122e1657136d8428a5949c4
MD5 0486b63f68cb72bda3cb96b837500330
BLAKE2b-256 97b623a99bf08c278f03b6ffa0bd28d66b05884d1df4f3ff80c4feaa4990941c

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e946134b06769fd18312ee449dfae8cc3071c601e87299b32ca524a146039aa1
MD5 a7d4141162cb3ef2f743c2764d930955
BLAKE2b-256 6983d5f2ea1b3d5e9dcffc1c1a60e1994d8fc48960b3b498298cf50dbf8e2679

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7851e553bc1a102ed91a8c54779440617afafe4d10aeff1c679b898848495bf
MD5 7c439f89b2b0903ef9e301005d7386c0
BLAKE2b-256 609d5539815e58a7d85bbb906dad36caed27e6c64e6acb5c826c867e9ac2ef68

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2bb0daba8d5a15218b5cfc433f443f8fa66d512c398bbdf51862d392b676d142
MD5 cfb7b819a11de40b7cc7dd83623ed3d9
BLAKE2b-256 90399c2fa887ec3ce9a79c07a974395056bd7200084c40f239eaa0cfa67abcd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 88.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ff4bd64b748eec4d5f024af80ba380dbc10d78ddbbdb7d89970a89129d92637c
MD5 6502f6c422fdfd3efff7d20ccf6a4c32
BLAKE2b-256 5a424bcb15f1a9de550cf4441df3821ba45e351885978733f7f52943bae7e041

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-win_amd64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 84.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d64b4640e34dd7413010b3f9cd408654b3e5fe50d23bae700d4dbf0dea3284f0
MD5 cd01fbed5a9b5611c0c197787a62e74a
BLAKE2b-256 c63ec7a0ca20f1bde00a62d5b21dfb5f67d6e39806cbaf2e78da7a57415bbb77

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-win32.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ef9a341da7b451d58d28bc06d4450be750b6c90fb16a429eb9111ec6e75ec3e
MD5 5c0224f91350fc9b20cbfda0c5b64751
BLAKE2b-256 c70582826830760b75731ba97e74c0506e34098adda24d42d8fc8258c1f1d327

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57614c2ea96a8affd5bae7b36cb457f9f5959a455d20d18456ff999769f30af9
MD5 fe43de45613b91f123a7686eb36a7d89
BLAKE2b-256 a0c1a621d67cfe5e36dce9e7d94b3c8e624a2960a91f4d341c17240ccf3f14b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68c218ca7d83956d5eeaf85bbdd13fe29f7cdcd5aba3893b575f966c6be1a7b5
MD5 df38cc5f6fdf0c700a76799d67cd60d8
BLAKE2b-256 f184507f6fbee596b2d4f8b0134378d4d491bf9224f41b89014c0bdfe9dc1ccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6a871599494ed1bf9ed265e80e88021c4800679a3582f0fbd25b538e9fd17b5
MD5 94545534d55e4abec466e74ea8ae2948
BLAKE2b-256 2df3f4217b65279c42294248f064f599fdb63ee86ea0461c747a041ba1000062

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b17282aabc88a59a75e8ce2e05a3a495d91150845045f062e7388e7dfd32b3df
MD5 3e388535dbf44c1baaa202860bfb109f
BLAKE2b-256 cc5c5aa6a1880b86f7e875cc46f91262dd0a1264ae6e04fa77542f50e9859068

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ccb7ed8daf3141ab3a4462a8dc6756e8dd8b6975510679eae473a731350e388
MD5 b7eb63695fd90c6c5abf1f9902f26de0
BLAKE2b-256 ed02f4b9b72afb743ffc844c82b02a4e05ac9435556f2309815f1147526d2b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d0ac8484435b5c713150c8df0265ba66f9a4440387facd220c918a799c414dd
MD5 a821a14b96b63262893104d3c09ee79c
BLAKE2b-256 e8762c097ce0cf77c1c62c51eb3ef2f4c813982dee73f2d5cd0df6fb4795b7c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 601bebfb3df7f1560167d833c4d7b3ea11f42e983919b6bb2d794f0f0b3e6470
MD5 3ed6acb20839a949882120f38767ab16
BLAKE2b-256 9fb50d69ea52f070b71c844c568aae68d0cd4059eb80f33baf7cdb63dae8b7b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc7d25a9cc2eb77019b7e2e48b03f8afcbe0512af7c951a6dffcfebe32600136
MD5 440a0942c1796296c966605e78a8aa94
BLAKE2b-256 be20a306360bb3090f15d641734eea8e36ceb63be2cded95a84c192d4a183db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8eb5582f3daab23c1846eaf16539da9fdd60b62af338fcedb019a97e09c7d4c6
MD5 1fbc42941eea50e5affc5cd2208c473f
BLAKE2b-256 ed06d7bde72c4c057f8698f7ed0065e8d502d3edb2e475f461021d21b090613f

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 88.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 73a393284c00622349f7b76de86944353b38cf13e4f77af52abd05b9845ab937
MD5 47dfd2357c9ddff20feff02ccffc633c
BLAKE2b-256 77c230116a6d66a4aca56043c9952e7949d84325b5fcc56bf3649b167381ac22

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-win_amd64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 84.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 13673d89b9dab8ecccaa29f5d6f54b3f084ddfb6f0108d574e842406bdecad0a
MD5 6ede3b847c1bf45de082e78cdef8986f
BLAKE2b-256 53611d1837b3684e67bc6c8ca353697d121d5856e9d5ae88339c0ff39fe4e016

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-win32.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d1cb35d4ad81a0bace8404ce4843a5916d898e0ed97323293741f50d8085a93
MD5 fb3237696b439271e9421116d58ba110
BLAKE2b-256 8896817c58f0d300c83939f2a6e4a20c3d5b797323324f73081fb023d2cf8f40

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b431c2a51cce5731ce9ed6fa5049a3700358e918ceaef54b4f6aef66460fdebe
MD5 7aecc32bb529c6cc0168b38a9440bcc0
BLAKE2b-256 f7c69d0398cff12d8e2fd7118d71887b3fc2ee5f57762e8ac274b78974a21652

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f3d5fd5f88e43aa5fa2e369471d482fd08dcb504734f50812f1597f6211de55
MD5 541c489168c4d51a24cc6fb7ff9e033c
BLAKE2b-256 4efe7617bbb1e9b7632d6bcdde0f478efb0bf0ccd86d206fb82509b8a385d982

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9dc61b0e84f38cc8cf3d2be561637763c476e4dcf05ad7c57c4323a10b52d1d
MD5 7e1c15df11eddc7217c276323eea68cb
BLAKE2b-256 8998c9dd775c1d8b4ce2fcf5e1b4e5251df3b1aa147123cd4eeed27715781619

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27b291abb5ceca090f364d0096c2345b71c0e896d7a6fd430ad3264325398e0a
MD5 06366dbca1f9b19c14aa14d41ad3af2e
BLAKE2b-256 2e8d6d9944c440735af99b7c745cb7c01eedcdcde421567ddcbcec06e815095d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a38bceaf86ccf460bff3bcd20a5890f1328c3b0849adbae159a6802f0117ab54
MD5 1b8af6b928a00b760aa9ea5438ff5639
BLAKE2b-256 155fe48da85c13435d4f2956fed152c0043dc214b844db74f7c0f0aaf90db88b

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66da1fcb4ed3cf126a2fb103aa86d1d04a9c1bc6984deb249992370d4bec2e69
MD5 1e55192bd8b1f5a2fb7f26b50a5d0de3
BLAKE2b-256 71258c1bd90a27f4b2a4858b4e3088026260177fb506144c82402828e39f4c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1cf3d96aae9b7aa25b54024e7100db869139a9085e6ce48c8adf86a370892ab6
MD5 7e79753bcd79ecfd80364422a9b1674b
BLAKE2b-256 27e7c022ecc8caaab3c8594064a5173225d0a8a2a5a593136aba34d504e37128

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da659c68ef98165e3ee6ca788936c520c06cae4d9572e491d8852eeab77b83fc
MD5 9d7ce7ee766f66e73a7fd49d15f25cfd
BLAKE2b-256 d04a8fbc997cdf77d98d64ac0d946c459bdd2293711f595484a75460d9896d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0cddd1c31730422626298a7fe47590c4175ab65c9328a7568b3973013cbed183
MD5 68b22895b77875cb8a222bf51ff64f07
BLAKE2b-256 1624d3f5fc91ccc25f1c7b7b8f2b20b9e43ecdc5a1ab43567edbfbe075ccd71e

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 88.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2d48389bac17b26e10708517242da5c751b721ad00c3d4bea4bb2d1ff7926d03
MD5 46bd094180bfb2df8ebf2ee0a6bd828b
BLAKE2b-256 7f9b3788f9f88d383e2e236dd0a8d184449e52550d3bcd835736c6a30a553074

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-win_amd64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: otlp_proto-0.9.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 84.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c23ff7963c6384ae7698cc635b85e90369929306a7fb686eba7ddcfea9abc55d
MD5 c35086d1c493effb2a7aea1eb9785ed5
BLAKE2b-256 992d6e496c06908fad2333af7824b00426ed700d8462d78c73b9c00ddc9ec457

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-win32.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d848fbcc10e17912b461c5a407a4cb9fc44a05015a216b1d87b98bb20c6f5a10
MD5 96cef41a9ef8716aa9baa8348b8028b8
BLAKE2b-256 9c566f5c9cad3c754f1bd6b0776bbd0f8c7e9970f1966607a9b36f8d32f03012

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b061adff1032ad1cfa76809f84c17fd050f577096bde437a5513b90716325aa2
MD5 024de3c2aa25812ee87178af47232143
BLAKE2b-256 7d720bc571c0c3936c137340b5fa478ed59730b14abee65f4da2ad0ef40d913c

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0ed03a38886a464995f5aacff99c1c7a0f93393f5fc0e7c6334a004c8f148ff
MD5 6637dac96162331edc3ad09c8a5b872e
BLAKE2b-256 d6eaff9db696065dc2d0a53f153508d6479fd1c1a7ecc5d187d353532683b703

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eef439136111776bb28705424c2b2479a16b78983c931ce8535bd205adb072a5
MD5 8f4ea3f57e40ffed38ba6ef3a72e72ce
BLAKE2b-256 a787b5cd662d96cc047b3fe95ac2e76683def4725f270c64569946dcce1ef98d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf678409de9be4b49435c90f70dd44791354cca8a1527e5eda7e10c27e1f4e09
MD5 b859a8cf01a9d60e962301913abfb07f
BLAKE2b-256 d2812fa5f8c319ec5e9973f94d4ade5bd5d8e604705306241c5ee493ea0240d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c571f8d57eb96799969d521620898201efbaeaaf5b8bed39379ff7265354f22
MD5 eeabf691f32e9998714583a584f34d0c
BLAKE2b-256 35b2f12e1bfa201564102364a1b64285a8e8867aeb23055572f6474b36f3fc54

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ec59e08350f23fabe31e7f77d1f1f69c249cfd672c5a424a08b6ebd5f2a39b8
MD5 7b13e710a7d960ac1f7bd08c9eb514dc
BLAKE2b-256 d3cfbed873ac00735248c6a5ba0392525813bec8606ba281016a66f9efaebb71

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9d2bb7d0f59bb15efaef630da990b7290387494afb44db6125c91cadc7f9275
MD5 3b959caa93f572f0dd0d344f195a9361
BLAKE2b-256 99f3a9ff00e8b3b027024049d1450903e3cf95ed993bf830da2e71b54338f6c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a47dce957a7eb716566780dfeddecd07cc82115574b7192543240a99d6a3c8ea
MD5 fa8c94a206b531e26b4f6703e361151f
BLAKE2b-256 c4d06346e50a41b4d91c4dc88284283faf311f38a0d9e3c8625267ea8a8e1c4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file otlp_proto-0.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8d0d7f2e5bb289defc45611b6193a4b74020a1782a52218a45140733c2d7ec2d
MD5 d90f1d7647e043a5275959918bfa3513
BLAKE2b-256 0f7ba398b84c6fc8ae776227adcd2cc20ffb00dec1b0719039981182c4aa5197

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.9.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yaml on dimaqq/otlp-proto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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