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.10.1.tar.gz (57.5 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.10.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (362.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

otlp_proto-0.10.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (385.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

otlp_proto-0.10.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (450.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (364.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (187.2 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (190.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (229.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (216.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (186.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (184.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (203.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

otlp_proto-0.10.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (362.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

otlp_proto-0.10.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (385.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

otlp_proto-0.10.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (450.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (364.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl (187.2 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (190.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (229.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (216.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (186.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (184.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (203.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

otlp_proto-0.10.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (362.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

otlp_proto-0.10.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (385.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

otlp_proto-0.10.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (450.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (364.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl (187.5 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (229.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (217.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (186.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (185.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

otlp_proto-0.10.1-cp314-cp314-win_amd64.whl (90.1 kB view details)

Uploaded CPython 3.14Windows x86-64

otlp_proto-0.10.1-cp314-cp314-win32.whl (86.5 kB view details)

Uploaded CPython 3.14Windows x86

otlp_proto-0.10.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (177.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (196.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

otlp_proto-0.10.1-cp314-cp314-macosx_11_0_arm64.whl (157.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

otlp_proto-0.10.1-cp314-cp314-macosx_10_12_x86_64.whl (165.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

otlp_proto-0.10.1-cp313-cp313t-musllinux_1_2_x86_64.whl (361.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

otlp_proto-0.10.1-cp313-cp313t-musllinux_1_2_i686.whl (385.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

otlp_proto-0.10.1-cp313-cp313t-musllinux_1_2_armv7l.whl (449.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.1-cp313-cp313t-musllinux_1_2_aarch64.whl (363.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

otlp_proto-0.10.1-cp313-cp313t-manylinux_2_31_riscv64.whl (186.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64

otlp_proto-0.10.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (228.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

otlp_proto-0.10.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (215.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (185.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (183.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

otlp_proto-0.10.1-cp313-cp313-win_amd64.whl (93.5 kB view details)

Uploaded CPython 3.13Windows x86-64

otlp_proto-0.10.1-cp313-cp313-win32.whl (89.7 kB view details)

Uploaded CPython 3.13Windows x86

otlp_proto-0.10.1-cp313-cp313-musllinux_1_2_x86_64.whl (361.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

otlp_proto-0.10.1-cp313-cp313-musllinux_1_2_i686.whl (384.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

otlp_proto-0.10.1-cp313-cp313-musllinux_1_2_armv7l.whl (449.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.1-cp313-cp313-musllinux_1_2_aarch64.whl (363.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

otlp_proto-0.10.1-cp313-cp313-manylinux_2_31_riscv64.whl (186.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

otlp_proto-0.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (189.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (228.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

otlp_proto-0.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (214.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (185.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (183.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (202.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

otlp_proto-0.10.1-cp313-cp313-macosx_11_0_arm64.whl (165.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

otlp_proto-0.10.1-cp313-cp313-macosx_10_12_x86_64.whl (173.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

otlp_proto-0.10.1-cp312-cp312-win_amd64.whl (93.5 kB view details)

Uploaded CPython 3.12Windows x86-64

otlp_proto-0.10.1-cp312-cp312-win32.whl (89.6 kB view details)

Uploaded CPython 3.12Windows x86

otlp_proto-0.10.1-cp312-cp312-musllinux_1_2_x86_64.whl (361.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

otlp_proto-0.10.1-cp312-cp312-musllinux_1_2_i686.whl (384.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

otlp_proto-0.10.1-cp312-cp312-musllinux_1_2_armv7l.whl (449.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.1-cp312-cp312-musllinux_1_2_aarch64.whl (363.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

otlp_proto-0.10.1-cp312-cp312-manylinux_2_31_riscv64.whl (186.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

otlp_proto-0.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (189.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (228.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

otlp_proto-0.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (215.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (185.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (183.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (202.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

otlp_proto-0.10.1-cp312-cp312-macosx_11_0_arm64.whl (165.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

otlp_proto-0.10.1-cp312-cp312-macosx_10_12_x86_64.whl (173.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

otlp_proto-0.10.1-cp311-cp311-win_amd64.whl (93.8 kB view details)

Uploaded CPython 3.11Windows x86-64

otlp_proto-0.10.1-cp311-cp311-win32.whl (89.2 kB view details)

Uploaded CPython 3.11Windows x86

otlp_proto-0.10.1-cp311-cp311-musllinux_1_2_x86_64.whl (361.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

otlp_proto-0.10.1-cp311-cp311-musllinux_1_2_i686.whl (384.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

otlp_proto-0.10.1-cp311-cp311-musllinux_1_2_armv7l.whl (449.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.1-cp311-cp311-musllinux_1_2_aarch64.whl (363.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

otlp_proto-0.10.1-cp311-cp311-manylinux_2_31_riscv64.whl (186.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

otlp_proto-0.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (189.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (228.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

otlp_proto-0.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (215.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (185.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (183.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (202.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

otlp_proto-0.10.1-cp311-cp311-macosx_11_0_arm64.whl (166.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

otlp_proto-0.10.1-cp311-cp311-macosx_10_12_x86_64.whl (173.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

otlp_proto-0.10.1-cp310-cp310-win_amd64.whl (93.9 kB view details)

Uploaded CPython 3.10Windows x86-64

otlp_proto-0.10.1-cp310-cp310-win32.whl (89.2 kB view details)

Uploaded CPython 3.10Windows x86

otlp_proto-0.10.1-cp310-cp310-musllinux_1_2_x86_64.whl (361.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

otlp_proto-0.10.1-cp310-cp310-musllinux_1_2_i686.whl (384.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

otlp_proto-0.10.1-cp310-cp310-musllinux_1_2_armv7l.whl (449.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.1-cp310-cp310-musllinux_1_2_aarch64.whl (363.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

otlp_proto-0.10.1-cp310-cp310-manylinux_2_31_riscv64.whl (186.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

otlp_proto-0.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (189.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (228.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

otlp_proto-0.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (215.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (185.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (184.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (202.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

otlp_proto-0.10.1-cp39-cp39-win_amd64.whl (94.2 kB view details)

Uploaded CPython 3.9Windows x86-64

otlp_proto-0.10.1-cp39-cp39-win32.whl (89.5 kB view details)

Uploaded CPython 3.9Windows x86

otlp_proto-0.10.1-cp39-cp39-musllinux_1_2_x86_64.whl (362.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

otlp_proto-0.10.1-cp39-cp39-musllinux_1_2_i686.whl (384.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

otlp_proto-0.10.1-cp39-cp39-musllinux_1_2_armv7l.whl (449.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.1-cp39-cp39-musllinux_1_2_aarch64.whl (364.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

otlp_proto-0.10.1-cp39-cp39-manylinux_2_31_riscv64.whl (187.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64

otlp_proto-0.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (190.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (229.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

otlp_proto-0.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (216.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (186.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (184.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (202.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

otlp_proto-0.10.1-cp38-cp38-win_amd64.whl (94.3 kB view details)

Uploaded CPython 3.8Windows x86-64

otlp_proto-0.10.1-cp38-cp38-win32.whl (89.6 kB view details)

Uploaded CPython 3.8Windows x86

otlp_proto-0.10.1-cp38-cp38-musllinux_1_2_x86_64.whl (362.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

otlp_proto-0.10.1-cp38-cp38-musllinux_1_2_i686.whl (384.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

otlp_proto-0.10.1-cp38-cp38-musllinux_1_2_armv7l.whl (449.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.1-cp38-cp38-musllinux_1_2_aarch64.whl (364.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

otlp_proto-0.10.1-cp38-cp38-manylinux_2_31_riscv64.whl (187.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.31+ riscv64

otlp_proto-0.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (190.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (229.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

otlp_proto-0.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (216.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (186.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (184.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (203.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: otlp_proto-0.10.1.tar.gz
  • Upload date:
  • Size: 57.5 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.10.1.tar.gz
Algorithm Hash digest
SHA256 6510427858e2eb3003b19406cd43701f8ef181c03c235b7143ab9020bfdaba18
MD5 f48d6d079692c1d8186a0d485fe5df44
BLAKE2b-256 2ab424c0266cea6142f5eda911d4734f7f99631a81635c66f1a9d94bd8d67273

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c2d9e5292a7f42b74628d35707405762e52c7eb65acc195f34ae0852a0c3d26
MD5 b1ce3845328cbb11a0c47b39910689dd
BLAKE2b-256 8fdb5c11fc2356c34364b28247017dbfe2dff49cea7b575328c3cc9054baf3b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21a9c3dfd5c6252835f76ac277269401a7fc3ab2a3c362d0456d729de84c18ec
MD5 e8566b4f07985198d4a285a6b843f559
BLAKE2b-256 b72fb7deb0eccdde7ff63b117619261f6605319f4bdefb01f602144b2d8edadb

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e3fbb46103a7a543e82b98532c526a671c2bae7135cff917b785e5c4b728b2c
MD5 6342f33079d65f3b87a0568997d7027d
BLAKE2b-256 1ce1bfd379f3956e1c598d1e48b7e67ce487fad94b1acd571c92da6f60c169df

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cede80271e5d5934071963dd3530cb85f17a8aa24737787fcd9820ba89604a2d
MD5 cfb4fcf617044b1836e1a668e3b41aa4
BLAKE2b-256 18d0c17dfdf0917778b1c4d8dfd1f99cedb35a5650df9dbac8ea44c5cfe36fbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 9b3f0efab2a626da2b9c924c7131bd535988e1460a9512e44b889b8245fecb00
MD5 bd2ee6a4239ec7d472de4acf5e8d31d3
BLAKE2b-256 bb140997ccd4e71feda31f63ef5c57dc73e6ea0519cc020a3b006bcd26a38b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.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.10.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00c3d609d1d2c0996e6055bc13694372673564c7d81b732b5e96ddca4ef6a73f
MD5 dc48953e6514abba39ace8682be4ed56
BLAKE2b-256 04229a7ccdddde1d260375a3a1f83bb346b82c6fd874b0e1701e8808c3bd1e29

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7f8d8783736c43ab295005bdfb115a9fc4b005833601e27b16d05678726a994
MD5 29d8b8f5c37be8cd03e24e7c3c7ed1e4
BLAKE2b-256 a2ec4cdfacc8220f03ecec1be45c4b3d04a27ecab3a185665102e20aacfb9fb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b16dfa5d08ee68f55e909157e386221b52cadf27980ed8b227697c530ffc4690
MD5 c12d255975cbe998ae9ce4c4a7e68a0e
BLAKE2b-256 8e1a091392cb389aef4378de435a7cf2ab6b048e0f8e4acdee38f84373faee1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 673af1877ca3b3acbe4aa53e0411f0082f6f3b8b08553ce8e4db111f5129e82a
MD5 c867033fe27c59b4afd00ec694a5de73
BLAKE2b-256 82a34b0797395222898ca0b7ea953d5f46bc27b0b716605b1c99edef45a8892a

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87f300c89587482f447c167474988f6360295653cc0432afbb20b7144baf4188
MD5 645348d02bbb38aac9cffe91e8952dcc
BLAKE2b-256 9eea310f981e6673504d5b3eb21971a2dd3274429a6eedad3fe2607f0734787b

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 116be28124e0541c92662bb3236a5a16c3bfd7c461ab9b1ba73097dd3feefd82
MD5 2cfdc84fe7e32650f2210e54f1cfe3c7
BLAKE2b-256 9bc681ca1aa5dc21fb20a61432d16999d47dc0898f37b5d5b80375d51ec0429c

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99c2b57412fe88143b358f8574ff992fba150b3a0137e53b34bc691abe321bdf
MD5 44ce054048f4fc3983eb9f8e0085f24d
BLAKE2b-256 0e30bd393ba9086f9cf31a1f56b6054885baf1f6809f0dc634b0656daaf21af2

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8974c2d3df8724a181ca27b2f3ff2343fdfad32747cbca9e7932759b3b4a00c
MD5 7efc1ddb5aea86b27fc6791cf661d4d6
BLAKE2b-256 7c3e3b78b38384481a48ceb269d9d7b05cfdb9e95a6230d604048ea984d979ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2245230f3fa77dac7f182074fb4adc4d31a1e53d61b19f2bd213d0253aa9bb26
MD5 fb3f4ae8554e17dac906f9624e2cc03a
BLAKE2b-256 e783ac2b4e556da0ddca13cd12e297e41e84d76d668170b4e1cb54249dc6f028

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b264720f30f7c05c3712da5c3e9f80a7199bdaa7ce65507b17f3f028adfb260d
MD5 a5589da735aecc1e54207338ab6e04d9
BLAKE2b-256 138bd15529e2f3b980a3ec7a6e354aec8ac3d071e64bd67992720ec8c5faf8dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 11f4ed135f72806dec1a1fc35a9f4a08702844071d28d5079c1b2a0471229b1c
MD5 9772d9656962fe2bf17109d22f4059c2
BLAKE2b-256 0e3a8a5a864f700908252d80f572727c5c5c2a7e527551cf42c6da06ec135893

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.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.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bae43b40900dddfb5b7992aa7be94de8cf43ae4ab869bcdc9e2945fbaf2c0817
MD5 4d82dd2563eeb1daa6a06d736bc50bbf
BLAKE2b-256 3bfae7c7d8a7069ce261c5a1b80d58f52b57d37525c40d9dd065b744b759f6b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15c7b272d265cf1cfdaa052a189cb9178104ac263d1dbb44a4c13bcad2920c93
MD5 8be346d4d8339d73cc30157e9c471746
BLAKE2b-256 9ef8f328fac6fd0ee6901c30fad74b8dd6a92f91b020e751c4c606669c706839

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3761ee617bc2b7fd432007594e1c845ce2dbff52ad6ff94c01f894e25392a24
MD5 322558f14fafd48a4205ae160a6517fe
BLAKE2b-256 8f1e3f4bead9975363ebce114f40a8d820c32f4f610335b15c84bcf6e7597607

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dfc76080d6bdacb13e282780980d208d1040f1d17fa5a1997b8045ae62d93d37
MD5 ffc09cd72352e28695af33868a238da5
BLAKE2b-256 97f48776b1d18a290e3a6c084f64452d57f95f6bb4093eb4152399d11c1683df

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33f6bb71def1eec658de106da5e9c6b440c62403ad5a0d01535a2fcd5ba38f1b
MD5 a08a19af4b7f053d0c4f26b512c6fba2
BLAKE2b-256 0d2f8b6bfc9fe06f0385ff1d2348c99827abd9707e04d8467e1bf512c8e3d935

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b9dd79de5a7dc93e6abd7ce34368b7e4095c29892c3dd2dded908b4f142fcb5
MD5 69ae6f772c0edc35f68444a9cc5ed099
BLAKE2b-256 21f5d6a11b8e834ac3aa43d9690d958156f2f90c07e33167d8c1700285ed820e

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 145301edfcdbd4b576037c933927d533dd0383d80a3e1bd6d52a50cd4e21132a
MD5 342385c3a57091fe53f63065bd58416f
BLAKE2b-256 5cecb5725c2b4e532ebd7e5733dda1836422cdf57c138d490294bc9cfddb3521

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9220d7ab9ef3b7698244a4116ace2089ec3351bbc1a74ada8d5190b6fe403e7
MD5 be2544f07218ae346f92b364fea4f001
BLAKE2b-256 d7461db5bf960789f3946a47e8fe31a9a3a1d71ea97c3296dbfb2de6c357e89f

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8da87389e75f27c5c0cb33842b3ad95177c505f14120a7d646823ad8be21df0d
MD5 6cb06174ee0beec235d195a77b2c582a
BLAKE2b-256 dbf9619e5fc856ded52906f40d9c5d2447a400c427e019f0be5a9b4d70127c26

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a79ee9263bf0ba45a622af2336f17ce8fb6ee92b1cf7af64c99cbc4e5aba4f7
MD5 9c30f00d42923b9c1b9581eba251f6d7
BLAKE2b-256 734ee83e451938a4fe4db04a2ce161d2d61ca63d215f55f7a56f128a82fa5c73

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 527d71d753cb40e89612d3322b55cd89830a2b82332cb622071374c35bf7029a
MD5 9bbba693a2d36312960b3a39820e9701
BLAKE2b-256 9c0cb045705fd82d9320459d124e36c9d1aa847720983684962896a730e86a8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.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.10.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9fe5cbd77459a42349de43e8b28b059762745e6b294a0979cdc8c21a950d7f15
MD5 e6340f37f2570d260c3b36918d1d62cb
BLAKE2b-256 6770f63b57d3f5b19456901ee440c23dcc7223869529a5becae23f967e80a6ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba2ba82c7c476cbbcbc2689f67af6da347ce92fb4fb5793443e0f3310f9adf70
MD5 da3784a76d6a98b2e9299d9c2f30f137
BLAKE2b-256 213e6c8e00a695864ecd93e4079d7a7399ffa12564aceeff3f60d9f3776e033f

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4a4a21cf0f81118f02b4c34cdaa6bd5480ab8e342f677c3d83c000f50f7f01a
MD5 38f5f7df59f852e893cd2bdf65e4a0cf
BLAKE2b-256 4b4f6d0686895192544e16f75e4699c26b0ff230123f31ffcb3edc1471128747

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3582f6e8ead3940238a7669ba8641ef41d139adaf26b6880aa3e4cc4b5e92c54
MD5 f4dc3e2b94561c7b2bded7aaec1074d4
BLAKE2b-256 8989711af7e3c4a91da0150c9fd406a3d64d7b0996efadba891a3db7431a1db8

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 268080fd2fc75f895c51542c8d633d9467db92fb1a3119380aa79ef0bcd354f8
MD5 393879f1b287791906f3e2d6cfc68a01
BLAKE2b-256 70c9ce8f32f2ea5d8090045d5d92cb6b40a097fe21b33bab4e63aec5b7bccef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp314-cp314-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.10.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: otlp_proto-0.10.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 86.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for otlp_proto-0.10.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f1e277c711b562a2a2cc7f0359c58fa12279d30ccd46dc3e2f6f39a1f6f47c73
MD5 57072dc75b4665bf75942229b65e2c40
BLAKE2b-256 97fd5ee2b3a886d2ff825c1e7c3a6f01d70a56c5277e445369f044beb8ec3ae9

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp314-cp314-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.10.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab43a06c69c48f4df0299f417fa95770f62a83da24eeea2798e8cb7582771404
MD5 08eb48e7fc6633c1037fc8c8e874cf1e
BLAKE2b-256 754939019ff185f53a31ab8395287ac93b624c8b332de5a0550407b536bff574

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp314-cp314-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.10.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b62983512189200170d70d595f0ad6003dce8c8d7bd00c65e6247546f7d9f65e
MD5 437c9b3186b1775c22c4719abbd0092c
BLAKE2b-256 d6746c93a4521d209fc144731f2885e3c876482d68142c702d50791580f8c49e

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp314-cp314-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.10.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3858d510338fdc4e94a08a9584dfc11654190f88796026d742c9a93d024c5c1
MD5 61b6b9d71502914166e6f165e3214cbf
BLAKE2b-256 21a74937c884c1ad05ea8a665758483935f3ede89ec553950a91702fb08b800b

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp314-cp314-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.10.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f337bf12e3f2df272a6a06d7e60b0cde061518dc7007c0b1c4bad728e4faaa81
MD5 6c7e231c0cd3de17fb51ab8bd9543f11
BLAKE2b-256 506cf2df24b0710a3b8468aaa1eb035a90e39d6419ee151027f4b3074a2ba891

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp314-cp314-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.10.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c677f7e07f506f7d42aa362b027dc6d88f3c9a8df838f7ad7c153fd50a9ae63
MD5 48e6d3d2253e30dc62934a079df49a65
BLAKE2b-256 4c7aae3a5b5f88368cdcde86efae2d46edba55bb9ddb8e3d2ed0e1d67ded4fd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55cdf342e7bc405737c71687be9712d0430ace4ed150ecc55d58ced1f0e20ece
MD5 533bae94cca6e55d347bb8b32e6da195
BLAKE2b-256 f1978d3c574ecdc3171fea7cb4e5fe0600050a0c632ad560b87146df75fe4cf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe8bc047e1578fdd508c21d9e47b4ae5e149e92bbd25266581dfa575fded7b56
MD5 3b04a2c9e2abe9bd596b49faa375ec3a
BLAKE2b-256 0ef44dc28762e829ec8e3420ca81f0af1e62d0ede8043306f3aec80cf02f40ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa77bf5171f00b03aaac9de88776cdac719f7198c88a566089266cd1d34ed044
MD5 91b51af00df2d76a0f1c05a98fad5402
BLAKE2b-256 baa87f8d131742f7210006ca2846d33d8b3829e11f0a8d71b1fdace06d430dd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a78850c4e6a21bf7c608b081adf6eb56dc6f8248ecc5a9f172e5364e9507e0b2
MD5 9ed4c3e9b52c055b78f52d3e51777f0e
BLAKE2b-256 d5926b0dd4e3fa66cd029cf45d7dc071c1e98808655a2242c6d8e9cb84e565df

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp313-cp313t-manylinux_2_31_riscv64.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.10.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5facbfe22ea2595f2151779cb57b7418be50952481c7eacd1fa8b8b88c5c85b6
MD5 c99d434d8724b464c831d87750ef90cf
BLAKE2b-256 9f0cf0ff697f02618ea1e704848fa2e9298d77d1d0ca266410036aa44fc48183

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9f5ad4f6db3c4561291b6f9fda91d6c978c55588d8cf43948f49c6b9a76b76b
MD5 ae167477773e179cc84e4f0c40786bc2
BLAKE2b-256 4ece89f936ac6d6546bdf0c2edeac9280ba0b6e06ef0c63d147850529ce87e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a00db97e8ee45226bc93773b7f04050ba44f4044e9c4f71f63122d8955e178e
MD5 c00d8aa7cc791643f48901bc9688e367
BLAKE2b-256 cc1d14906c6d4516f92b39a435d31e0a8bc92e274feea5a5221f75e7581fbfb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e8c800c58ae5e80ca625cc096cb89774b0e41dc25642d79ab875bf5d57b9923
MD5 0c40b298de125b460775c9416d4853e2
BLAKE2b-256 b9981dcb714a511b94c83067f42201d071b63715eabe5c5e905e4a80138196f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 89b7b902997ce771abc358501d23109a9884f7e642b349e0dc00d02b4837b746
MD5 4d8d6187a74ac34af9891fb126f0b188
BLAKE2b-256 e5b82ce38fe41970588648d0447a0dbed1326068764bbb6d96420ee01a488db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: otlp_proto-0.10.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 89.7 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.10.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bb98d6dfa951863e395ba4d24366af54b2ecce17e9cbaf6f18189b96219e5426
MD5 b50b6b6588ee03ebe3f1e6169827ce02
BLAKE2b-256 163f8670e4338bfffc0a7729119d0f145b0d756f4ef3d11e0ca5e971c30b8f07

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b31594b319042f8388ee1600a5dd781ab0429cb887749dc57d8ce3e5fd973c1
MD5 8a74db03ceb1e950e9defc3ed4122b75
BLAKE2b-256 c5726c1e586cd657ae80176fba4d183ef3f405d03016a4ba9e6e6f63c9946ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63d5c4462651a2e92bed46b955ba0c7c93f4c4b7be45810f45f9e23f94b66ec4
MD5 6ffc7758222afb8c850f491735736fa8
BLAKE2b-256 9947639137e2839aecaad94e0f4ec0bac2fac2c7d74172e0f0283b495f5c277d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad44357738812b00c3dde7fdd7272d2b56dce75ed4694b5587a9b63fa92bde9c
MD5 40df3b0d214abe135040f62c04c01727
BLAKE2b-256 bef8a434aca02ed8e3ae2016b5df93e16dca166353b07b08c4618a77284f95d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c32bc2649f262778c1beda57e3dbaee4ff240c5fe768d7a3eaf10488fcc9a71c
MD5 c151155356c9168a5383c0f1ecffb89c
BLAKE2b-256 5428654bce4a27a51e052d51cdbae56aed76e3ba86a3740ff6f385f5ee335e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b910ac8b1080400c683996305d689adfb92df7f39d1de2463fb0aca548b4fe7a
MD5 6a396290bb1b054c4f7419a5eb779f2d
BLAKE2b-256 649e9f41a081804850b9417cbabd91d7049dc3d1e94f9ed6b5e239bc16e690a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp313-cp313-manylinux_2_31_riscv64.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.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d72638c0796095ef2e29a76c77493fd7c1dcd3a939b0dbe146a42f0b9dafae1b
MD5 58f072afa6ac77ecfaecfdc5a18b5172
BLAKE2b-256 df759db09552aca453b9d176c702f1f611a30300247efc1bb0098b2aa90d44c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9bd8513850923edc64dedb353232aa6cb658d865e7a8c5db90d65510512d456c
MD5 ba206d78b417f4c1c2333bb9824da3f3
BLAKE2b-256 59817f1296254e7c0fdc1a093c726cd08bdbdf55c3ca9ec0b70f042cc726650e

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89c59a5b5b388e9cce22f8958a1f023f4421d7d27059e930631e9ea7c85b6f1c
MD5 4d2bd6dd8e917c5938bfc54dd3da3751
BLAKE2b-256 2a263288e48e34fc44ad6cefcec5f7a940cdc855ff19f5e4e80ef11fb4ff24c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ccef183320bbdf84635f72fb844edaeec426be6aa14df330fe26dfec0317c434
MD5 0d070a9bc439e99f2c4e8f54eace16f1
BLAKE2b-256 768101607c3551a8c4eeaa05a6b168922f2a7bf798953937813d9b9e9e9b5101

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a160dbfe748e714c3e11d562df9acb282f5b71ad4754a2745069fa1ab30ed76
MD5 2c13fbf2bc0bb6051bb04a597156a830
BLAKE2b-256 15a65c591d5fbf561283ca15d6f0faa814fcee54cd22524f931fed0abdc1e8a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0751673d5ffe90fe3bf48b39ef6e89f1df147d697c21461568f766e8f01b283a
MD5 9e9b820a7df4a3447a275202a3c83ef0
BLAKE2b-256 276b0860d8cd80d6c6f980e102cbd33cff35094f230e83684f87cc2fbb1f7572

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0efe42cf89b9102bbe14b7f4bfefd1bc7f17523e9aae2c7a04b8cf5e0d071f9
MD5 ea14ccc5e3871d9688ff76846fbf3d37
BLAKE2b-256 8f5b4ebc52fb7f3d178de56846021a4cad23d1622f261dbbce34dd7518c1ad24

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d24100490ae8a0be934da6196a4dfcff57cca47ec794184c86a633f1093975e4
MD5 b002fbe46ba4711254c4dddab90eb35b
BLAKE2b-256 2f7fc5aa247d5dfaa91e9a35d14a6fe8aa1e8dc80a551041a49fe58593b6ab55

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e4dbd49ee701e853ac206a12bb8189b9963a19d4ec2d9d9f8e111d30e2c157ca
MD5 95870ed722e7a6f3a7e29585cf22405f
BLAKE2b-256 fa02adc7d7b5c0f74a9b4ba39926a83fcfce1d3a94e9e3b267ab7a284fdd5de8

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: otlp_proto-0.10.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 89.6 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.10.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bba6fa9ec3c7062c2d87796e16a1101ab77c3c6d2d4f4fdac38573c0eb7c13cb
MD5 0e77a0d6c778aa6b51a588071b5d47f2
BLAKE2b-256 2e4a8f9badf4c151f2d15e4588d00b918324556b3f48990cc74a859dabd22b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cab29f8aaa35b4ce4a2f5ed3ac4c28cef2d9bce5f59dc5041aa5bf09bf72a7fd
MD5 1e34c824b289aa06604626c453c181c9
BLAKE2b-256 01640fc032e8848b2ddcda1088f39fb9d6fc807ae4b3db38689f0de51476a872

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f410818d8a62f3f41f9caeb4c5fa78c5f23d125708ec7acf3cbd0e976c69222
MD5 05c661f5b34f12c342dd25cb207b5f8d
BLAKE2b-256 34226a9162475163c351d7c5c2b87fa35fedcaaff9840885f8e6793c6d05199e

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4fd566842428c4b4257787be56ec75475e144ecaaad8add2d1ec220c996f595f
MD5 8fa75ab504cae2af4c3b311478ae3da1
BLAKE2b-256 9743a50c1abd43e9329ce60d37d34199a58ace3c7984fa7d9bb00a7375622dd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6115f077fa195b56526e8e614cde43d7a3c471d8c94470fe2a73bf98eda8b10
MD5 53ff5f369b58d9567decf5ecab7de76c
BLAKE2b-256 0d25396deddf8aca4608e3c82914961da7c2972af1c081df2025e2416e121c5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 d5ef3fb2fda71e825e599a46c45470270a977f4f772dee178e71fa3b6d1e1ada
MD5 9529c602a31934b43b393facfdfcf1d6
BLAKE2b-256 936709401e8fa493a548b25dab0bf8af610123225bcafb0388d15fda7c2200ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp312-cp312-manylinux_2_31_riscv64.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.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bb1b5ebda73f8f4b212662698590067ee886d48cc7b7ed0f875c10eefa4ef6f
MD5 7e93deed1d1e7dced6ff83b3b2357080
BLAKE2b-256 fe52ab71c392efd44e7a1c79c9011fc043064f1364103d44da5555c016104a87

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70199739d6b700525c97cca13b225c0d1b67e04dc3c0417756dd28eca2cd964d
MD5 ce75555be997ba4eea7c9bcd4a8556ed
BLAKE2b-256 7d8d643e6299d56fb4f52c1b79b26cf1c51d593eb19744b1594853a73ecf16c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47fb40a2dfe6c4da3967b1d325a30389aee49a219ab7cfe2bdf25f5ef3df69fa
MD5 5c6b969bd66b7175f7cacad7aad824dc
BLAKE2b-256 44d6ae0ecf985ba0b3175aa3a93cf40b33938ac79823c1ec3cd63e3eb14fcf4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac476dfa09f45943f2900637e98432857ee8be47eb14fae0b473720f8e8b5c2a
MD5 097290241e5a88719e5d3a19bd5a07bf
BLAKE2b-256 620b0351a943a9d678716bd729a0d81bd6bdaa69f5b26190543b12bc00587088

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f1bab0c82a3970476b070b200b96535477fef5658fbd19a138470263aa9b273
MD5 d7f3e84ae1247e494721642175fdd0fb
BLAKE2b-256 456e1006e3d513e01b982664370970dfb4cb5e5b9b8bf88c70c7d5b891e68de8

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 289ec1fa5a2f77eb69fe73e4af6f8e50c799803109d72090433031f620e19243
MD5 e69620405b7d49de60ce69a8cb43995b
BLAKE2b-256 1d780facdddfe5d86bb71ba985f38998b31863f49c712a4b05e4c29051c0f535

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54a5f465379481eb5f41c5279991111c157eac1737bbc7b7140178e105f45ea1
MD5 bf23dc3576b39e0f9bc83096418c5ded
BLAKE2b-256 0ab6a1f6d734f61517abd4b54ee7402952ca03316902091984d9accc32204b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cefdead3f9f6d2a0b4c9e2e27639a52c39c186c818aaa872f28408d6c3d802b
MD5 e70e967611cfdbeaf206abb7d83f8615
BLAKE2b-256 861e98fc23e34527124c5d115ffd66d94283fb05fdf528f8e367ca4063ad8424

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b5dcb1ea1f2eea97f309af212276809424826212e2c5f452389b9ae680335d2d
MD5 682c15f095a480007f2ab2c598c26e6d
BLAKE2b-256 dbfb4e72e9573e6e89ae513ad2ba98835ec575b0e3cc77d75f357b85bdbe8dff

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: otlp_proto-0.10.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 89.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.10.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c8ea205a21fe8ff4d59b30936526c5cf7e9e21d69a7ac36bf42097a991150ef7
MD5 ce5668351a59eb922c7a259c75063ba3
BLAKE2b-256 2002051fa6c6d8d0e0f64a667ae144d09b06280aba4bbe705aa67b08795989b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb8b79dd7eeead713cc1ac930d3362de886afa590df28121bdaeba9d0b7a6ef8
MD5 284c0617a0eafab5e5bb1894c5dbef0c
BLAKE2b-256 b6c9abf2974e4e753a87b726c6c230cf4771adb7c06355bb5109365801e8da75

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6189b975c1666a57c11ff40e85a79ca13e621c753817b5c8c98bb2b3bcef1a07
MD5 6dabdb4534d8c6934e153f338e99de0f
BLAKE2b-256 679b9098baf71220a7594a982f2c24aca50514c4547d3742f0c87cac555657fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 143b28c7ea30c1f574ce89bb7f66c98611b248ed59156dacccddad540ee81484
MD5 412a20370c5e020d5645f793dd1c86fc
BLAKE2b-256 68586634eaf44fef3f265ca4f0a5c094874d20501019aa0b45485116e855d9f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 572de617b52d885658d1a6f3aed2ee4d0080f94f7695a2cede1a27dc16cbe72a
MD5 2fa81629fe5cdd60e8017f079df4f8e6
BLAKE2b-256 34be3a733a1779c7b6a7beee29acb6e0a8a22148050b9f59b8e1adfb1c3bb787

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ef47b2616199de0bc088d6fb9d73b6fe93506b757a79924d2fdb0121cedd13e1
MD5 e58506e8b39dbcb1cd56f2497d621c89
BLAKE2b-256 6b47741ef8c6ba6a0d4a936113ab47ff0049e3c9bd4a7aefdef7c35540947e8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp311-cp311-manylinux_2_31_riscv64.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.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48fd290ba51118b4a6b7dd0eff7b465cac8f28f17536a44919d008c264db7988
MD5 f4bd8435238eedbfa3f15d2f6ea62cad
BLAKE2b-256 2d0408e4f19c0f4cbbfba5170533f7fc65e3b218dbd9cc762ffa39b91478b605

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b12f803ae958e32a6bb9a16ebe9a8a17bff0dbfdce57f740f1dd370a99017bc0
MD5 67c4f99a547d6351f523ab66252974bd
BLAKE2b-256 ded70a098e3d814d653108493ce83f61a6344dae79b043016c9671bed29ff3be

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcb4ce884a0cd7e98864784a8c6052036fe6803870269756e9e0ce33bba78616
MD5 e21cb22e56cd3e3250ea258617b9507e
BLAKE2b-256 62945785645817e035062cb354d65fedd86ccedeaf3a3eb3174737a4cc56dea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fbb313de80d9a6dcec8379c453fc7650e1e5aa36410727920d66d3f4f5e35c6e
MD5 2bd4712442517bf3b4121337e5b1dc25
BLAKE2b-256 64d628bf2aa96f9e88ec02a3be2cea17e9e632ad26295bb41ad8829342659292

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fcd0a1a4806603e37dcb69404e237146105b029d7f09cc3939ab1a58cd46a61
MD5 c89393450eed8e64e1dc39099367792d
BLAKE2b-256 02bc76b739d06f6047f73b5fa4ec22345f93885181bcb2c713ffe162279b43ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d3969a4f97588eeb8610f0abaa2e235a0cae8f874077164ae9458563fd29fdc
MD5 e8aad3658809927afc8767140c8dd0be
BLAKE2b-256 5ccfa9c7a4f7d5eb5867d763f50b2703b59a530346aac9cd6c8be8a3a4a67679

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 888d2f45832b9ff0dee1760db0459454df1994c20673f774d571aa75db166b8d
MD5 22f952dcb26c9697115b4b8e5278cb31
BLAKE2b-256 d9a7b44e36a7c8d559bfde5368ee692c0171c3f6c7d5a618457702ab60546231

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de2857d506a7dcab88c48d22bf7e213136d8667a6409d1c69aa1e8dbe0624a6c
MD5 6c76d71e9f09ec450013ccbd1c289524
BLAKE2b-256 d1f32f4fadca31bf619295b22c01a5afdafc0d35d506c685443a6224f0cb7b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5279a8a65d0e1f8efa37f91eea59884f8bf4b3da3cfe967a44c8ffa54dedc80b
MD5 d808e7fd36c684671b724911939ca7c3
BLAKE2b-256 b55a3fb033f22ed299e3f072315529aa9092c8cfaeb7a579aabca827e8a27d85

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: otlp_proto-0.10.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 89.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.10.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bb77e558bb28bd8ba7f28029414fda6deacf0d1753994100ed437f55afea4df9
MD5 d477216d2713f618d37d4d0e9b033078
BLAKE2b-256 e80166bd0d5dd56afa0e3fe7f9bea66058b6f07e645390dd0fcbb023bd1e4a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1423c634bbc143db77b5981fadf35b79eabc9915d7927949913c5674bc9aa41e
MD5 3a556130f1deef5d3aa427de06efa687
BLAKE2b-256 f55ddcf2289b1f8cf6a5900d754e5c1505d1afbd0b2a242762079231ff1aba93

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea9a0fd0176df6d70c9ce8426b7b9f310f6bd7a16a3abe50ed8ebfbb111c85eb
MD5 21d3f6bdb26313802cb95658f92622c2
BLAKE2b-256 c786469efccdfb0935a438f75c8e5b00d228ffa6ce496a95363cce9a86551736

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 233096854783f6a08c2196cc40326e0086c40b14b46cdf32f35a755eb6cc2d0a
MD5 a02744fc8dea0c6bd9feaf34d57d6bd0
BLAKE2b-256 e0acd137fc3b09c172437f0087c713c44c204274c08a64618d7584c5b4dd9115

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8db21eae065ea87709c088e07fbb11e23555dbfcee5d0eddca259198b9f1f596
MD5 981ded00009a8c1a4854dd545028a143
BLAKE2b-256 9a1de325bd4ca37c545820d44005f2f74df8df609ed74a91b0385909f0ed53a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 266cedaab4845228f73b5a4d089c8df8d29341afde7b441769c7eef3f6338b20
MD5 a8a967abde3ff8018d9ed5c71ec6f28c
BLAKE2b-256 1e7e64dfaddbc13f141ed454d918c458e7a68496b3fb73e60d3bce1fc7fcbec1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp310-cp310-manylinux_2_31_riscv64.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.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 019540cc607b4baa6d2a32150cb3a7ff25f3acd36b86bb181cefd887c6fac363
MD5 8bfc89bc22c9f982f715f60787354253
BLAKE2b-256 2726fd5f8dd723a740cc4cc0598fd00132d8f275f3efbd2f7cef4d67732b1e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1dbb01bb0effe986aa4756a8ac29940156b3b84ce2989f541f9c2dcc5b4766df
MD5 6be8de66aa4c4138231f261b3e03197d
BLAKE2b-256 3d7143226f86bedfcb0da7777800f6fb7eca3ea4e707aca42de0df7b96a13da1

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a40ef02050c606947c5db880b6d533ae952ce48c3957656f8e97767c0908a39b
MD5 7636cb0048b9fd938832ad3c4b376f9f
BLAKE2b-256 a06c059e77313e79ca1388647e0be479889a1f3cc1390d787419f7e17a29d272

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0df462ead270905e01ab763accf450127022511d08d0cec99d7ccde7b7a112f5
MD5 3b8324dcf0f8e35a92d0bb05b443d015
BLAKE2b-256 dc9a80f73184663a860513338becdf94bdb60e7557ff7717fcf6be09145c7110

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be290b978edd2798d1b0d8e5593d3e6e6433d1518d6d8ae590023f40e7854f98
MD5 ccb8042ddb4e1f6e7deb9f14c68fd1ec
BLAKE2b-256 41ad01e041c93fa7a3abcbbed002cdf7b3e66b906b868965b5d2a22723bba856

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8301f4b0c3e2376ce69d673ce0e96d45045d97e31303e228ff6ae4b278bad30b
MD5 ee20f3b2b954e1919e19ad4879f20cd7
BLAKE2b-256 25a080d1aa0979f51bd4b2a7bc3e596306b2f5d53e6086794c223f10837bf860

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: otlp_proto-0.10.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 94.2 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.10.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 27bb7a2ea0100d7cbc16f290df2ebd8c909eef2e58e9a43d85b046d59fd4880b
MD5 26174ccbf1798869ad5983c17c5e43b6
BLAKE2b-256 2da63dd6966b698891a9168d0a99ab26d1f6c7bf472adaed35659f72779e2440

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: otlp_proto-0.10.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 89.5 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.10.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 18cbbc1c67cb14ae3c433082d3b0723883beb4727591e0e7008cb2d8e2a14feb
MD5 1b53596b46f1b57c3917cd44116211da
BLAKE2b-256 3ff7bfeb29bff87a1ef9fc6be8337c7b79e40d9d84a79432585bf3a428be0e01

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ff4788d5e23c61f99cbd94b89981a24a2a07a09eaf3b6a49b82ef2554daee4b
MD5 b59a026c37b4c750b7c5b593e20e5033
BLAKE2b-256 b37ada028bc581057d0103911bc72c13a279aebdc8b7fa3de01629a7566080d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9231e80e517e21b1dfb04eadc7948cf9b00f87aed5a376f13e9c5a74f4d51819
MD5 c97fd7886ba3d38b206b746d95b655ce
BLAKE2b-256 77b16b895192fda075d33fd2767f0f1026207091d40fc364932bdc348e7208c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8127b3195556a8eb92fbd4cb65e2d384f1df648b328ee43573832d4c2be9ecf8
MD5 d93a40252a1aeaf03684586ac13c263b
BLAKE2b-256 2ed09fbb355c793c5a901a59ce6a70b3691f9f1e7a0e3b8ab216f19846c30233

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64bd835b4c30c736b9e7adbbc8f54d350a0b97e1994b840c442da266e5ad0e57
MD5 3c50222b426167753e8821af20651447
BLAKE2b-256 826bb57d6c9bde112b52e0578c57954fba8b8f9634a7a7bcab05b5b89163f1c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a3c180ca1bc35973b6fb4f420856cdf88a15be094dfd3b7a2bf15e45ac54ebf8
MD5 6e9c83f0ca33d5995529085feb176632
BLAKE2b-256 8aebdd36106b0a99657439a822178e4898c5a8a8169b9851de74d3ab28640482

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp39-cp39-manylinux_2_31_riscv64.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.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbca5fd0221c8ae341639b06f0c33e4ce25d52911198d649128345e1ef706af9
MD5 f6b77a590a10df59189f0b9361b68553
BLAKE2b-256 ee3b988898e9f92785caab99b2ef58a42f14ff538dda25738cf055185cc68244

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 958a287057d3b9204329b1104709d3d18c90deca11d53f1ae034a745ce840ff2
MD5 50846583f6a657c38f3af8bbb6d8ebbe
BLAKE2b-256 86ae864c3277a300ac4781d53b6c272babaa2006d2690c7f8a05618dac2b8c0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0748b6dc37f09435548028799aee46b1e5df669a7a0f156b3a0b7508349a7ecd
MD5 d300d98515eef025af4cfe7a0f78b7de
BLAKE2b-256 ffef7842b767c5690b17555bfcaec4f21118162ed312fa7043d1e97d6b2b31ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1e18c46d3da0cb5de2616196db5a40d48f70dc9f89a8a4e188358b834f465cb
MD5 83bb2856b9b43d56354c9161560f614c
BLAKE2b-256 d5730bcceb0fbfcf572493735b2466572b3cefb8baf769298f5d8bdae95c7a58

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 233353284312dd5b3c5774323faa7e04f4e25601ad6b9edf54d900e708cc0b5a
MD5 923ea1c2c817abcaf17de85bd54da01e
BLAKE2b-256 94d33bb1f5e55beb0e842683c6fd50048b2b0d0caf1da4d2acb57a653c909c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0d1a464d38bb3df971e4eb71e984c18d253fab7a76ad60a91c7186dee40e1d3f
MD5 610c633518bb1dabde1d996d12173bfd
BLAKE2b-256 39b59fa8c2db28fa76baa01751cc1f75c7dacf9eee206ea6a62549aeef2ced8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: otlp_proto-0.10.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 94.3 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.10.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2a4b374e75ffbed5ddd0d5c1aa04678ffe304351d215e1e76173d434c02bb1df
MD5 a6129d3c89a8a9a76a2a25e5ed0d74ce
BLAKE2b-256 1b3121ded38665db4b34ea56c260300f223f7534114db4728dbe828aa70f6d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: otlp_proto-0.10.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 89.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.10.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6505db23c6ee7fec555aebd9420e8e7d75804c3843983cb2b437693aadbeaa35
MD5 50d7c528cde2f2c4beb9f02a821370e4
BLAKE2b-256 75afd2b8c3b6ed69b7a7ec4b600a14eedd52e2999045cce6aed184a546883e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92c86e5ff04451a1e3f2626f965076a1040a1dfabdea3a5672fc63b0641b1d95
MD5 3652e1054f00d6c4f3bc3d65570b7446
BLAKE2b-256 7e116166498e227911d36de4c2dd77465b0f7fc4ff9ced7fd662cc5ee250f102

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea6fb036f121194b18770dce8e5b1a2e16c1d572b14543fe48dd035805bd80e0
MD5 315e8087456ef7db82474ebe8b9a3bcd
BLAKE2b-256 fd3f8f0aec34399e23383aba29a01681785e8e4e3bd3a3ef05b8e09bc45c53ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9af15d118ad459f1454cc1f2fed890e367bf88bbcc71a245f5438b64e8a2fb2
MD5 3de8728f374d5cfbd9229e6610136b9b
BLAKE2b-256 4decb0e0420185312d54145abff4d08d593d51a4c9ed1962b1bccf94c541bc90

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b8f575900bb1a2d8a4d912e872e945dfbede7686030442763cfb36b7848a81f
MD5 16d0aa7a1106e75a58443cea22ca8765
BLAKE2b-256 fd91d8eaa5a8d4d7d8d1562fa8959493204add801f1318cbfa9dde1a08a162bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 3bd2bb58e34f33021392d26ad8926dfd7dfadeca76dca3b5b4667da0423e2693
MD5 fc849ae7eb7d2813b7dee2fab703ecd8
BLAKE2b-256 a704f473d8e0c712d98104ebbaf2452c9e29dd0be0f0675446c6fb78a0a0cd63

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.1-cp38-cp38-manylinux_2_31_riscv64.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.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9d23e659d243c3bd63c9070c4c00e132751f2a8a3c1b4677a6fe559a059983c
MD5 f5030e399fbd8aaf8ef7c6373d3b7f6b
BLAKE2b-256 73e98c9ccdff7e4f9e1c4c186e7e7f4fe570cb854492ba608b30790e3169464a

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21dbeb21fc917ac3ff6f8e5e5c4d35f9529619b663033f087f3eca96f1392b62
MD5 0539c9e27721429cd01af99447c2c296
BLAKE2b-256 003aca798feb771cd2a7b173d99d2fc070d5261a2e9527daed278a96bde61ec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23b55ba78b2108a2f4a742f5950b120b72b1e5485634cc1ebac279bf06370af7
MD5 609a1150664e6aaa4560a6f7967ea071
BLAKE2b-256 32a614d9fb6ac7653a28bb51129c8f81d6d7216230246dd6210e2b967723ffe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7f0da53266e7a70ed5085e3b95baec5ec63808ddc04cbf6f7e7e90bb76dcfc3
MD5 c9240065ce70d2262b3e2e061ee166ba
BLAKE2b-256 8daa77c46dd328210194f155d546089d6e56120f16717662f7168bd860a98093

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11fcbac10d1bc8c275e2cb67d80d9a32858d7b93ccff3bb4e4005dadd262a122
MD5 4dc6b016b8c45fb3616fabb43f2a7746
BLAKE2b-256 79a02765a3e4b3eb9bf775e2431e825da88e9bb137e4c30e7d7deabec8021a14

See more details on using hashes here.

Provenance

The following attestation bundles were made for otlp_proto-0.10.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.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for otlp_proto-0.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bcd56521260abcf3df4675319a45783cc35551fe37beeafea62f24a4d2946694
MD5 c46734954ee6754a6f5a72db2986e355
BLAKE2b-256 253175ffd15f491e23ef33ea0778e4e3d030ab9e90a4a62bc03d8910ee524101

See more details on using hashes here.

Provenance

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