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.0.tar.gz (77.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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (357.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

otlp_proto-0.10.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (445.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (360.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (185.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (225.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (211.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (182.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (198.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

otlp_proto-0.10.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (357.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

otlp_proto-0.10.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (380.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

otlp_proto-0.10.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (445.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (360.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (185.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (225.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (211.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (182.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (198.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

otlp_proto-0.10.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (358.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

otlp_proto-0.10.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (380.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

otlp_proto-0.10.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (446.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (360.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

otlp_proto-0.10.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (225.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

otlp_proto-0.10.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (211.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (182.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

otlp_proto-0.10.0-cp313-cp313t-musllinux_1_2_x86_64.whl (356.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

otlp_proto-0.10.0-cp313-cp313t-musllinux_1_2_i686.whl (380.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

otlp_proto-0.10.0-cp313-cp313t-musllinux_1_2_armv7l.whl (445.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.0-cp313-cp313t-musllinux_1_2_aarch64.whl (359.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

otlp_proto-0.10.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (224.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

otlp_proto-0.10.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (210.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (179.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

otlp_proto-0.10.0-cp313-cp313-win_amd64.whl (89.3 kB view details)

Uploaded CPython 3.13Windows x86-64

otlp_proto-0.10.0-cp313-cp313-win32.whl (85.8 kB view details)

Uploaded CPython 3.13Windows x86

otlp_proto-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl (356.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

otlp_proto-0.10.0-cp313-cp313-musllinux_1_2_i686.whl (380.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

otlp_proto-0.10.0-cp313-cp313-musllinux_1_2_armv7l.whl (445.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl (358.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

otlp_proto-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (184.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (224.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

otlp_proto-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (209.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (178.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (197.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

otlp_proto-0.10.0-cp313-cp313-macosx_11_0_arm64.whl (162.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

otlp_proto-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

otlp_proto-0.10.0-cp312-cp312-win_amd64.whl (89.2 kB view details)

Uploaded CPython 3.12Windows x86-64

otlp_proto-0.10.0-cp312-cp312-win32.whl (85.7 kB view details)

Uploaded CPython 3.12Windows x86

otlp_proto-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl (356.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

otlp_proto-0.10.0-cp312-cp312-musllinux_1_2_i686.whl (380.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

otlp_proto-0.10.0-cp312-cp312-musllinux_1_2_armv7l.whl (445.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl (358.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

otlp_proto-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (184.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (224.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

otlp_proto-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (209.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (178.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (197.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

otlp_proto-0.10.0-cp312-cp312-macosx_11_0_arm64.whl (162.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

otlp_proto-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

otlp_proto-0.10.0-cp311-cp311-win_amd64.whl (90.0 kB view details)

Uploaded CPython 3.11Windows x86-64

otlp_proto-0.10.0-cp311-cp311-win32.whl (85.7 kB view details)

Uploaded CPython 3.11Windows x86

otlp_proto-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl (357.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

otlp_proto-0.10.0-cp311-cp311-musllinux_1_2_i686.whl (380.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

otlp_proto-0.10.0-cp311-cp311-musllinux_1_2_armv7l.whl (445.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.0-cp311-cp311-musllinux_1_2_aarch64.whl (359.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

otlp_proto-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (185.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (224.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

otlp_proto-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (210.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (179.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (197.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

otlp_proto-0.10.0-cp311-cp311-macosx_11_0_arm64.whl (162.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

otlp_proto-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl (170.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

otlp_proto-0.10.0-cp310-cp310-win_amd64.whl (90.0 kB view details)

Uploaded CPython 3.10Windows x86-64

otlp_proto-0.10.0-cp310-cp310-win32.whl (85.8 kB view details)

Uploaded CPython 3.10Windows x86

otlp_proto-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl (357.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

otlp_proto-0.10.0-cp310-cp310-musllinux_1_2_i686.whl (380.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

otlp_proto-0.10.0-cp310-cp310-musllinux_1_2_armv7l.whl (445.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.0-cp310-cp310-musllinux_1_2_aarch64.whl (359.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

otlp_proto-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (185.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (224.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

otlp_proto-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (210.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (179.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (197.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

otlp_proto-0.10.0-cp39-cp39-win_amd64.whl (90.3 kB view details)

Uploaded CPython 3.9Windows x86-64

otlp_proto-0.10.0-cp39-cp39-win32.whl (86.1 kB view details)

Uploaded CPython 3.9Windows x86

otlp_proto-0.10.0-cp39-cp39-musllinux_1_2_x86_64.whl (357.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

otlp_proto-0.10.0-cp39-cp39-musllinux_1_2_i686.whl (380.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

otlp_proto-0.10.0-cp39-cp39-musllinux_1_2_armv7l.whl (446.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.0-cp39-cp39-musllinux_1_2_aarch64.whl (360.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

otlp_proto-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (185.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (225.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

otlp_proto-0.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (211.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (182.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (198.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

otlp_proto-0.10.0-cp38-cp38-win_amd64.whl (90.2 kB view details)

Uploaded CPython 3.8Windows x86-64

otlp_proto-0.10.0-cp38-cp38-win32.whl (86.0 kB view details)

Uploaded CPython 3.8Windows x86

otlp_proto-0.10.0-cp38-cp38-musllinux_1_2_x86_64.whl (357.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

otlp_proto-0.10.0-cp38-cp38-musllinux_1_2_i686.whl (380.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

otlp_proto-0.10.0-cp38-cp38-musllinux_1_2_armv7l.whl (445.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

otlp_proto-0.10.0-cp38-cp38-musllinux_1_2_aarch64.whl (360.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

otlp_proto-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (185.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

otlp_proto-0.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (225.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

otlp_proto-0.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (211.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

otlp_proto-0.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (181.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

otlp_proto-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

otlp_proto-0.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (197.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: otlp_proto-0.10.0.tar.gz
  • Upload date:
  • Size: 77.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.0.tar.gz
Algorithm Hash digest
SHA256 6f64fbc7ccc2aeafc48709f9b67039e7111cac1477ef053bb9cdf6b2f72c85e3
MD5 f0963f5d967894e87b479fff6c55fd14
BLAKE2b-256 6cc33767c76b74f830436b263f542e00c9c7197b084f8a0e26cf0634b7cd7d7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b197bd832eaa8a4e5547fb4cee87aa3748d5dc9ff9561630d37568a8f33b82e6
MD5 6726d0bac5d99cb0246edc10c7fde7c7
BLAKE2b-256 46ab364529d117525158262122e9aa765cbb71aebe005900b3e31f6e17dc3763

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d85df8906938370772972c7174e33d065b06167e9ec4805a72211969936fb6ff
MD5 03171b148d2a14be04ec0c3e5c28bd49
BLAKE2b-256 17150948455e2cf6180d3a25a179bd5a6bb81e382537c87185d6173d66dd0e04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f5db224eb78a411835e3312bf9346ee27e2c1c9d78b4859e5b829dc6717fdc52
MD5 e2d4c5e5a74e5d0a4ba21f2eb09e97e9
BLAKE2b-256 870d240537dcc48e717255215134923393fb411e52ac4647952d18931c17b39d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9bbea120d4b2d49bb16e80b1becbb54cabdee20df79a2a2e1a2c501477a3d6d
MD5 01af7695c86599bb5e2be4820e51e51d
BLAKE2b-256 73d5c59eb5ce9020fdb6cad353e1d6729b96c1734cebbaec8afb0d0219c0ccbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22a22d3b12de9ec377168062295a73e049983ed815a44e9132f6e644458cad7c
MD5 e435a707d619dc39b6b218a6e7fcdbfd
BLAKE2b-256 e0c6d1cadeca7b28cfa61e3d55d90dcde39436eb8dae3402e31a0b591aa12e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7af87c6ea9c587f5f67430c1ee51cd972bcb03ae8a10b80cb2dbc18777f37b3
MD5 e514e0abbdca359566337a7f6e59dd34
BLAKE2b-256 857a0b465b067c4d2479bdf0b2a2126b5794ede0f28f88d670725fa72bb1b719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f453c5d4c215e1a18f2507e70320bc91124462fa14d6635cf9375365d004c7be
MD5 92fbcae05bfafc93467f34a78b6c18f6
BLAKE2b-256 d2eb64b6fa051fc1216da993dd71d802318d8d222c98a94db1225bbb93a9bb94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f44296fafd2636e87cde27519acd349789d0ad3b0070bffe61c3377a054d6e87
MD5 8fb4e23a34f2649536715bd54ba85e03
BLAKE2b-256 e64d633c7079d281d3cda79dc1a28f250a8c3c1a67524398c6e340eb55fb88bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5acee3949651c7a90cad7c5d2b826f1b63cf610a829e1c914280a68d39e362f8
MD5 bf132406b62fae213d367f9607c31c3d
BLAKE2b-256 b45f89ca8fc7aa3f75a3a326c48f79a24fe8dcbba4e88017f51727c0701febb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8ce2ac29cb73bc88bb835dd61f5650c9adbaf6ceb258cb698ec2ad76dd3cedf
MD5 469fc9bfa0ca25035efd878ee4084d03
BLAKE2b-256 1710af3c386b3bca274bfb0bb4f027384a6c2e7682107fe20b3ea690c18d5eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d7c73017a11105504ba74ace7693f9d5e83fa16d38c2e53e5dac68ee0726efc
MD5 5c868dee698ca74e53d9385e38f48e3d
BLAKE2b-256 62e494ea32015435bee68cdc5cbeb3da6fde640acee44a59241a58352a40ca6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e8582d7a9da00d30d776749bc9ab5ea4fbf2cd2ff2206a4efffe0aabdbcf1d5
MD5 36759c60a630476310ff4e5d42e4bf75
BLAKE2b-256 a2f49b98d5b35a0e64ee83671ee98dee354a3f0ad8a0ed9adb9945cbd0d71d6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec37944e6e5f759cab1f2eeef03a591efcb934494c638345802a3c2c1e1bde00
MD5 3c94b474460ef35752a1b7ddb462d295
BLAKE2b-256 b7384deac1f3d33fee7bc10bc778a43ac1d96b3ab50fa94161a9d99ba65313ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38e75a219d4ada12c749799bb4d2c283888931cd19e5ec8f4c528558c449a550
MD5 3e00990d093c9ce7cf492f669c8e4b0b
BLAKE2b-256 32deeaff35de7f1034f13aee8455ce76f965adadfbc8567feca2c6e6edc95105

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f3538ab3345c0e595c8e2776719d6d964cfb429746734d79a3443897ab42ee1
MD5 0b5ca34bd8225ad43235424d721806e8
BLAKE2b-256 0e0ef1e1a92edf8bb73c0e3b04dbe328b62c7122d0003e8c44f4ac86a2bb70c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0bc1b78d0b24e4d2480319821c7e0ecc54c4327ef2ea08cdbbb004526514e920
MD5 cb222386ea3d1ad5301a4a3c3e47f094
BLAKE2b-256 adb30e8e545c04034d55bfba3b9ae71d0f77a3b6978631ac1e2138e1607a3213

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56c9f7ea9bd4edb8ae3dfeac3f5a8534fbe142e7b563b6f0fa2f2dc66aaf349f
MD5 675cb464ed2c616ad18a8c8dc8189a66
BLAKE2b-256 36e0ea102be485b3328812f671d1bca53a8eaba2452e9d253c5808022d67c757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32bcc9d1286fe03221864cb132721470814a15939c4d1898ecb0f46a0dd0abaa
MD5 7292b511cf7cc78aa7b80d5c1ff161a5
BLAKE2b-256 a0405a51adba0cece98598fe026ee6809447574459ecde59334535262bfd2001

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 342e460edf78ca10508c619b1b5983ca4e655eafe5af2673f3444d47f84bcf86
MD5 b440f8787b9778a62051b12b99902e0e
BLAKE2b-256 4c2b70fe01f7b68cdf9b1eaea3caf079ee212f37ebcfdd0f7d74de63ce8ef092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a8f1125f455ddff1c5deb18fb5aadd41d6c9b91056f158ae2e0101747ed6e48e
MD5 ade3f2f09974abf70cb3a4a55aa66854
BLAKE2b-256 30de11401f0de628659ac667372fbcba7eff1605d9934de59b3ce41c2c3b5999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e5328d5d42b2cc0288f6935212a7dc7fc961219d10248c6f841ce1611696a41
MD5 8dab0217747aeddd4c2fdc776fbce0d8
BLAKE2b-256 1b3eea71bc54a739a6c3245c75f76e0ab4a1ecb0ec9bb476b52d4499bbcd484d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd4462489935b92a2b9554c99450cad668e382a85a00dc633a0febb9deaa3918
MD5 011c1dca4b008bc262141960150d25d9
BLAKE2b-256 5dcc6ca0bb2a8965358273a58f5b8d95e51ef8e021e5e0bb249aa12aa3db82bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b30327dcadf65c2b0b5e35c26d5badf6097070318f21275188cc18cc8a63463d
MD5 71f61c67622a9cdf700c5a7bb44e3bf1
BLAKE2b-256 043ca4157da388ae0459e52e12e03ba9b6391f3ce3c36408f29b398999bc7414

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38da894d76a32dd9d67c49953e09297e434d0fd7bd296f7d637302ac2f0dc5e8
MD5 35fe01125c53080abba7cd1890ba5830
BLAKE2b-256 1dbb5791d19144b66bbf25254e0f4f38c8bc53993ef6e56b169f0b60dbc42208

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1cef22e18e4a9a79e428cb4f8cd743b05a554bfed6345e8b63054ad6b531d93
MD5 25f351b965b799a98d134fe9adf6b25f
BLAKE2b-256 cbc53c6af7b3a058cd048dbc8769d0487ad038ebc94fb1f19f683db112999264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca1ce475d84aa540457beca486bc22724a6b483c31869b61f4ccbb817abd0c24
MD5 a18d4615e4796d62519bc99c60af157c
BLAKE2b-256 be87a6da870c0f9cdaccc7a84c6f54f1fa2ea5082f15dd330d7c7684a0bed01c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afda622ddab67449ea3b35ffec7f09797c8591034c8376805eff2770d9144e07
MD5 ae7e73fe27d1a1093551bfcaa4da8406
BLAKE2b-256 1f298baa1083c545232db6d1db3dc1eaff334d1a3dce47ff2adea0f6642520e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b6abf3799fb52f2898d53081887fa25e66546c89e6254dad07e4288ca9aa09b
MD5 f7b8f82faa6717cf7216dc60136203b2
BLAKE2b-256 2a73e33dbc24b4c705c5586c35373a1374002c969a4cfa2413c25841b7fbca5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0e058006bbbe897bf5db079db6135bc9588ae102e318349e3e63070171a4dff
MD5 0aba59b91f1aba2d68b763b9241dfc1f
BLAKE2b-256 cd0693f58ee074cce31aa54b88bd2878bf612d857d454883fdf2262ae42feb16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd99e5ac4448318bb3c45a7baa8dec316ee515f0b3a1b3c9483fcce11637cd15
MD5 2181f0b178ee28ddce6cc13603846395
BLAKE2b-256 fea49cc2c53726d3b8d3e49da16961c225c90f4a7cf26eec8552767d099971a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87bec53f26bfc233b9b2c93aa2322759adeb384586e0fce7322e39eaf6e7c409
MD5 d40e45286163648afaca3b5b89cda358
BLAKE2b-256 9bf6ad223603f9424525712eec9be6ac4b6b71b10da8b7fc3ff2547b89367d2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a0f2bd0001625bb9517fba8e99f975b2d955b1d724411163526c4408c4fadc2
MD5 177b7a7631c5b09ff4b6fd5c8df17a3d
BLAKE2b-256 265d97a39f12f5dbaf27e41df829851bce53333f674190d250b7a3f7b86bb0fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f3cbe2fbaf39ba5a70613ebdd317f9d9bfb8605231caa9389b43f85b17aee32
MD5 6baf78e685ed57b3e64ebcc1628e81d9
BLAKE2b-256 550698ba41400ef015a082c98cc0a0751628f01d021e8607ddd2566de2a2d5ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2220dd161721e49381835565f504f3150477af6631992a96150fd9d1ca0210d6
MD5 7e0d8fd5189f0a989d2ef7166f31ccf2
BLAKE2b-256 ec8d7c2b5cdee1cb8a35911eaf2a77d35b4ab3b9a6ec6bd9edc8df4c8ed1e6fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ae80d22d704e653130d396fb84ffc22b801c69c902ab6d3e4eaef6fb982e2e1
MD5 32d58f89afdc0f362092c89ce97876f6
BLAKE2b-256 3e547a31c724abc0ff9d16ed6564639aa292f883ff22748d08c33ed08bf4b620

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f83b654e652472d77c63f2f18c6aed0b2b8966fa9a127257fdc4bbfab2f56d78
MD5 b62b25617fe266cf010ed1b6dd73de38
BLAKE2b-256 d68534558d3991da92cd65cc09ebb63863ce62c56eccdd09573d9235384c6660

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43a95357d2790c68b213d64e8a498afb355ab21b9aa6ea739d3672c94693ee94
MD5 93fa0de6200d31147a07c507b6c9ff2d
BLAKE2b-256 a70f655e89f4bdbef1b71a853cd1968fb9033d54a31736bff369d4a5d0a608a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: otlp_proto-0.10.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 85.8 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e30cfc77fd19cf38002a231c3767da4f7624e977513f9397171ef7d07733b751
MD5 dd4b722af927d30861916f56d669c001
BLAKE2b-256 ad4d8960bf9267c452feb6a0e86876283dc85df7ac8b86015b8cc1d7e07ddcfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 059fe3fdf7fd1af710bf0cdc19f5c1c19915a90e851ad9845fa1dbc22be71c03
MD5 f1fdb1a9cbaa79e6f09bf851629c1728
BLAKE2b-256 8cd1baeeb0728de563a3d81e7be5d1dab20bdff71bb1805f81dbaa3c1ea9a0be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24cab2e4fadcfc6c6a30c7dd85f96f450238c3ea9faa5d74fe9a4707ff6d7aba
MD5 a5ad76f19ed3e24a2bd0c9188a24aacb
BLAKE2b-256 1bc8b24241ccde20e383486ec516a5cbe25c657d80e297365c820888e8be1dc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9831f1466ed31069937cafc77fb5b74e9b1c953719c027dbac3309c1b5b673f
MD5 3f60024bde2f584985750238048ebf03
BLAKE2b-256 7c4e67d071c922a6e74e6cb3497de33641e800e3547ca7b13bdf9c4483ec819a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 658675b345d01d87952f900c0a64ba726851ddd27e94e3411591fcb3dcb093fb
MD5 8c95d1572a689eeaef27dc8cf574ff42
BLAKE2b-256 ba811fb74e4b994493d5d075353c6894c5dce9b3b59b394bddb7f0181148cf17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db3d906ea6dd668d88e491775d77d93df3823c9917975fa5c9a963d7406abea8
MD5 0188ff245bd396234ee7e6f1884b52b2
BLAKE2b-256 17652b42475b43d67dd851b7372a975ecba880cdbf118d57808dfc64bd5f09ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fd8efcc7c07ad17fb45cceb17f1cd9320a540fc3e2951107218b68fa002eb57d
MD5 d97733871e48ee978dae7978433f42c6
BLAKE2b-256 3130cb04433837ad280d3dea1f1a47f32af6b729da154ad21638a70673a045a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aae33c6172bf27062a96b7ccb8b6b894888348b179711ab41a5e3c949e0d8d3e
MD5 236c364918f9c2bd92c92f74dd6c6cf1
BLAKE2b-256 c3ba9e6ace3d403bf55b96ab87e5902a3375294599ec7c1eb71f123d755db543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0e6a5eaa37fefb75290e62fa716e3d75d8092b8cc9bb08cb9eaaf191e4ceffe
MD5 037bd5f3d5df523914ed31685f1be9e6
BLAKE2b-256 97b225ed5ebc5931e15288966f66381148cf9f383406a88f29b61b7754ca7098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70a7b7b370830fdfba6a3153aab53e1e6e982d9962cd54cd4ea23cd8a6068761
MD5 53723459f87c8659bd1bd036c8870705
BLAKE2b-256 d22f3b77e1ec567a1c673782a8800ad7eb59f4af20623b2d6f00c6975647c1e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 20771496166526b9749891b457de03ef43ac409db6faeba679754b337c5a67cf
MD5 8717fd29b7d5b786da074bfcf998ff30
BLAKE2b-256 67360b32056ec63f94c9d42833797a2b1ec66c15dc0320046374784514aa05dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e109b0855ce8715abcda66e9a0e8f06a6d8db2089b1dfcbf74641715566e17d
MD5 d1483f13f159329be76da49dd9b41646
BLAKE2b-256 1c6d4be77d402ac4d199b6891abc80d018b7a2bf55b7a1f480609bfd2178cf51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7166be3b40fce506545f88db7133bf8f2abe3fd3db4e3b1455c80475995a9fc
MD5 014a6491fdca66fcd5a1a2c76ac37cd0
BLAKE2b-256 0cfaf1b88373d795ac45cbf3ff35affb5711febc732ddca10b6271fba9c93f4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 52f8ae5df62b5c3d62573a40e489293325492706cb388df5b9364bd4f90b9b0f
MD5 e16059570173ffdf13c11e5982f7001a
BLAKE2b-256 05f2c085ef1c1e955b9ca8d1ccd9bce0e6813c2473b6500568ddbe310aa9fc55

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: otlp_proto-0.10.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 85.7 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9d53dd4ded5c35d02040b6593106fb5a20fde8a99ae20d94d8303f2cae6e3594
MD5 61f19d5e103082946acdb518a34a0104
BLAKE2b-256 bac8960dff345281986e901e79ab8abc9ae10d035d6e1b129773d520a83f3173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90ed88a6549017525d252bc2440cc14c49b94688c751f5f45c506a4d5ccfba68
MD5 bfc774b5cbf7c7fc59ce992e0f3cfc8e
BLAKE2b-256 e932986e68d1cf76f66ac2762fa2a9a84d8a58b346509e77303bc052d93aff8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2d7d3ce64f3d77bd79ba8279ebe452e62ac1c8b5a8b9ed3cf0bf05b2ce8d58d
MD5 139a238c8ad3409e37411d0076613159
BLAKE2b-256 d9eb782a2589dbb97cacf4435b94f0c25f4d31f95b9ab83962b1486a175254f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f43f8609608eef420b8fdac36342c531d276c81c9cf3386e0a0b27aea9d91fbe
MD5 ae3e3d1ea33df813d630e6fa8b3545c3
BLAKE2b-256 0b7d1e34041f24f0ca3835f261a411250a01f3d4b93cbd90c644d5af222546cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 675706e6e810e9b8409371891dc0a57e218ac91f1d4ca00861073b049164f9d7
MD5 ea4db7b561a85c4927962c2f9541b2ce
BLAKE2b-256 aa96b05641cf31c3b761831e57920f84ae29c72e51198c9f6529a9bcf9f54dc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54ad7fbd49b015674f6ada502b5ee4f110019ca8bc277ca749b9ad2f5ff9e07d
MD5 dd713be6a20d30e5ffee0fdb1bf5b154
BLAKE2b-256 4226a7367674e82c6d30dbef205785db5497799860c960f3b39d1538cc3ce1eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3fe20809c44011e17a119c3f3067af61bfb7b768e7b2b6826fbf5ec1f8618acf
MD5 3883e8a06b81279a46b13c37364ea6e8
BLAKE2b-256 67dde33bde52c9749feab3becea93aed35c219ab9c1b494c2ceadd67ca4cff19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8e20020fd568055bdf29462718f02995e8e5fce104babe1fae140a25e1e5fd5
MD5 a5a4ddc081be4067b5128f78767d5320
BLAKE2b-256 7320221befc48914f7cc6ba4f42225a7620a9bde6d1c7d85ce9c3bf6a5084973

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa605fa1372ca9521e40938b9437e72f97cabce536c9d2e4d6c06cfdc3199ce0
MD5 6956f9be8c293b6617f9b568af835a42
BLAKE2b-256 5ee9d63ee3ec8d63a03c74c88c70e07116ebf50cc068e0497e5b5e5e8fb4b2b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 568eff917d8dd38a4fe6f490f562ab0dcd9ea2a1e9ab6a0078b4de9e69794f6e
MD5 9cb67b66cb2030febcc43966d81b7447
BLAKE2b-256 fc17bf643726d422477cc6d3934781563ca57a8cd3bd63ad3a8ba1d75d1dd83d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f1f7a3eb04740a59a67d1033593073a45a4f946fd38dcd49b42836800510424
MD5 eadb29c0fdbf17635360c6684c7fc0d6
BLAKE2b-256 e2fc69affac19e66754758e224cdde0dab1dd25a39a665796ea4150d62659e35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 049c6919716d10ea2818d4b0e7ce8a486400ed22e3190b7a2f11acb2e2ca0987
MD5 ac9db66f3abd1f14d161b87db99fe85f
BLAKE2b-256 bcb196135abeced970c324733c55b6a1b59992f61cd0cc53ef96b2de59fe0900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 75398a410b4115f141347df4e1f27cea57869e5f0bf733895859670b8743835f
MD5 3e75cb14919d24e3ef0d052bdd48574f
BLAKE2b-256 c85d39d5f619ebcb2535cf9bdf6cb7eba0cc6b13256c8c4c521e1772a29cb5a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2db1d146d4bd9a8520325d55f4bfbe1db6db85e429a8544d1a459b7fefb2e2de
MD5 cf6d4016137d0c83eb12eac2adc8239f
BLAKE2b-256 276151e1ad8e8af5d680c96cfade1355926b5ebffb422941d873bb379bc5907f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: otlp_proto-0.10.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 85.7 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5d866a8085233d492e73a5463cc25c17d459cc41e2b5f80abb72a6cbac69c8b3
MD5 587456d3e51f9ec6016f88816786a5f6
BLAKE2b-256 0e6fed8da97215520d8c04f7d86b81298e1e10777eeea4a57abf23b82c346d3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21795e2d2a4affed0d9e79f7e86d98cc486a72f03e7a63cbae5283ccfa5d2c7c
MD5 b514cea8a7790e8b74c7d2bb9520d790
BLAKE2b-256 2f6fbc86fc5d00654bdaed8c71b035eee3c09834f1429ca782c0fc8afcce8fa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a416af7d66dc066513a6bb78653c0d30fd71aa7d88c711e8fdc01637a645ec66
MD5 c06ddeb253dd16229912b7dfece027f3
BLAKE2b-256 40f7f02bcaf02581ac4e798b2fb1909f02c4f10cb159d1429905f01e551cf4cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2308c6257104beffaa46f04e1a416152f5d05d9e1cc12ca4c207c2f96b83821
MD5 b990f46b9ee30b757245ef0101e6d52f
BLAKE2b-256 8d1d9fd29e708e67dfde7b64d15570d935abd27fd4ad96a6a38e6f8250d5c316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38dcd9d72c4cd78620160303703d57ade2d552dc115e340872b618ad53600343
MD5 397e3b26ea6eb81d170601c8c6da40e1
BLAKE2b-256 9db9e75407496dc61f0c17938b0d8ca36b9e34286d0dca3290d57ae95d0e5e70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ecaba7f37437e6aef1fbb6d8bbc74df6324696db0f45755d19658dfdc361c81
MD5 8bda72014e91d1683469020299476671
BLAKE2b-256 23697ab3db57a47b16c95386f5021a2547025804b90d5d11401c44775b35ec7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 abba9a9313850128d693b931030029dd7b7d4fafb633ced338a23bef1ec2f162
MD5 c98ef6612e1a4049b4358bd49f07b482
BLAKE2b-256 176145654ec7af77398b850ae4f040a535ed7145a63dede4542c6141275cd308

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88c39f100a0a2433c3292c9865651c5a11e0594c22bf6ee4bc6d9d9e0f30b226
MD5 b8e76a50e6f0c1b25d8cea2a52821093
BLAKE2b-256 fdb4eaeda3fa79f8cf1ae589984be5c1bb35b5dccfe6748ccfb2ce28b4f72095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea36aa9a156e26347846f0630422dc2c1a611ae4abe2fdcf808e1772ad680014
MD5 8600bca0d0dab9e7844b54415ef848c0
BLAKE2b-256 19409b32260078a87b638fc67e2d296ae22d3a9e4c597c33b877b8bc60f5246e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27e07fdf040deadbd1a4347c02fbcf968d264aec93834103338272610c006aec
MD5 4298fc59e592aab739ab287d75b22a98
BLAKE2b-256 5c417d97134883fe94c6e2c4b5b5d418e548acddf91b21eca3d8058202171cd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 593027fcf144bf6fe4d6a4103c343b74ed43803e7da60f78bad6a1199a1a677d
MD5 9699a17668d81ad5b25c02539c6a46f9
BLAKE2b-256 389f2c3f3fd9fb8e8d831d0d007bf11ebc5c33ccb2be95249847f967addca7ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd1211c6991e0fe10bf8ec1e30c67548e71d457fad6bc7fb1b27af1b288d6c2a
MD5 16b49e4af1777df0b097c14c2c6a16ac
BLAKE2b-256 4c8bae98d17bcc349f0fd5c5a68abeb66483a716e48737825bcc153fc0bc7de2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82f5f428149d61f463a435fdf81009611f72f6176101aafa8d8665f9c26520de
MD5 bcec7fa6ba1c18411be63841239798ac
BLAKE2b-256 44919f27965a468e4dde265be6b6556c80dc53cf7563409983badc1ba7d3b667

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 363eae8a512dd85dcb3896df6b49e94066ad0b8c97cee1284dd58cf2ff1a23b2
MD5 8f01e740dd785f359a763750c6e339e8
BLAKE2b-256 d3198679202c9198afa1751bf8e00c852781cff054e95ee105a97d6fff453c61

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: otlp_proto-0.10.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 85.8 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 674a56faa51250d5a5aae88d9adb272a7edc353085cae8a5e0921adcc1de22d2
MD5 be7711170ff163408066f106e5624770
BLAKE2b-256 dfbe2e3efccc3149b9d2abb97bdb266af28547bb1aed1b7eb15dd270b1521062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 335f08bbd5174be9bff7b0e8b2c24fc4ca3e02d9afb0de2a51d3260b5514dae6
MD5 5173442f01681c4b4592e75c5f091b51
BLAKE2b-256 4326aaf5a7a28762ce02ebc640fba61416ee950952b2fa2aeb0f9e9b12e81876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d16184114e99e3edf7fe2a116b24f9fe6cd7dfe25047b829263437220ad30626
MD5 9a5cee5481bcdcc1e108247a6cc14ec6
BLAKE2b-256 304c8365eb6973876ae53d28c6cd2887ed7a302ed89cd2b7aaa6d429ce9823f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78f0d2a9ce6cb4a60f576eb954c0cd32072921469f2e66c7ea5d4bf6aef1b063
MD5 40bc9b29fcd9405ee2e8b3f228c58d14
BLAKE2b-256 bb3c90e5d598a40d319d3e323adc2ecb1ab23292adfdc21c0242d4076946fdaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c1236e5e73d584414661721e1ec92185ea087ef83a5b54bf999c1a2e2f8cce3
MD5 9d0dc17cf56be3bef9043e541f0546df
BLAKE2b-256 2fa10e5b2a89b071778ef2ae733f664a3684b2e139022c05c79660b0d1f653db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a189b2420b057d1c10d723c6c79584adb31565e5ff9a377732aebe1cb65bf7f
MD5 95e99f156e7eebe4ef8936356525668a
BLAKE2b-256 33346b6ed46cc1681404a98dc46a924e80690b3992a2bc044437932db65e0faf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15ff259cffbe4fe9724f11403efda16f5411a04dadfc4cf2e4c75ec34fbf1e8c
MD5 e0ee001d55f4c3bcc711b7b1f8c89111
BLAKE2b-256 0e671d547dfa90925635eb18df5c1f571ce45122361dddf334fe6a2ffe355ae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ffadfb743b2742a3a2b5fa17accd15e716168acd00ea3852f2037e770a411bd
MD5 f523cc16bfcc6a63fb32a54ad8e5325a
BLAKE2b-256 0a96202a0309147f05f4ba5283e74417cfc9f850b8a38c1d37c384a66950da97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d8d852b0c41db216640b8c742fd2af7b5375a61464192b98932336492ed7000
MD5 76fd5265c4d4bdb16ec3200de54437c3
BLAKE2b-256 8b90ccdee46374e00f95ba4434e7fe4df105d2ce3dd5a9e96b19af32689c9ea8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea6836b16ccd0edd393cef9a91a54e6098b8ab91f272dab219eba6a4376fe7e3
MD5 72d2890a9e3f6fc901437fa23b87504c
BLAKE2b-256 7e71819aaf8b2f0a1663703daf35e894bff32eca9ee47f5fc2a5b614e6a94e0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba295e16717fdda867648e728cc01a0bf1f1e2e004f9fda61e22e1bac7c0cad9
MD5 b29b65486ffd0c9298b1c372cfb079ce
BLAKE2b-256 fb71b14c7939e15bef814ecdfc6d9c1e49d0dae3f7a63e7946e6102c1488e6c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: otlp_proto-0.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 90.3 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e552f24488673c5ca1c78674beed269e587c391405248f19c7e576ddd7555e32
MD5 a1a1cae875ca591c12f231533d43205b
BLAKE2b-256 0635bb41b088e88e32460cf914bc8980f54ad3c5835b3fbeccfa0fb55252f326

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: otlp_proto-0.10.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 86.1 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 621cd0c0a715cfb6735555b624339bd692f98ac47768328f1e0e740c6b5139e6
MD5 38fc3f3b9f0f55b63a14596bc9bc2b36
BLAKE2b-256 7bbd6e01d573aa578b9f1326365ccb089309e425d7c648158b0283d316d258f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39e14fb15fe1f117e05a3470e2e7b37f10e402b96a6f6c3aded609a4253889a0
MD5 2cdaa924d686a9b7bc5a6040df4a2d55
BLAKE2b-256 f6cffa019a6c391549e6870f53ee7f64625e2498052e702eb98e25c3ab4f6ac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14fe183fd3e9938ebe744d8d7eafa422324a502940df2343c9369a6d246caadd
MD5 2fb0f0c0acd6445959b3b29dcc9de0c9
BLAKE2b-256 ae8fcb8b97618460d0201efbb98401e9e0c9120f9b074f228270ef28da930470

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 960003253a6870f58105a5c80930ce52ab6a2e049c95362b3d36486283f75522
MD5 9cd86c0629ee11d01d5c363f960c4630
BLAKE2b-256 f260da8f35212cf098e397c49de1cfeaea86de8eef5ef38b3f39a79756d79358

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1aadb5ebdfea44c1f6fab59a225213b0c64eb34b2d51fe85c879ad1d9d1c5eeb
MD5 c864c5b58ed3da050f38d09dd0549bbc
BLAKE2b-256 9a70630005a302649f04fd9cb89c2927becb6445d49d0ee0ccedfcc32f4a1e96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d77c46ea0c479099d5542bdfb2d21e95668d8b809aa1b0eaaf4c48039bbdd5f
MD5 4a937a9e9906443714cd3b06f687a25f
BLAKE2b-256 2bcbd0021324a8f299e48bfb255678d5d64684c7d0e402acefdffd963c5306e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d959ff187be777e5b03f9cbe627d79a9f5364bbdf2d9c72f565d60fcf9e48dd5
MD5 1fe8df42a290442a61428b5a5d7f6976
BLAKE2b-256 7b9d731c81482675420450ae716f6888634a86edd5150ee97686b8a3c0723248

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 60b678ac7365ae48f2d247106e502904aef1db54f39ee5305bd38fbf3bd7bdb9
MD5 34ac6877a195c60519a87ebc375564e5
BLAKE2b-256 f08a2b06afdd30ee4bfe9070662c4407537435321991f90444f3e6d9baa648c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b705dc78363253223c26512d0a2b4fb6c9560f601f7bbd55aecf9aad6fbdc120
MD5 e083b2da7eb6db75620982c56e30bd46
BLAKE2b-256 ac23234cdf212f9f7157d976df1fe6c44e77d77e7b79b6216f289c31b0dc41ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61936249e832a204c80755d562076c697faa05fd4998782c981540bbbc1a2ce7
MD5 56b54390f8a2b713f3f7d46a9a6ab244
BLAKE2b-256 7f1bb75a3435648add743160f6290c684d8f611ba58e7a714a24b8508a6fc551

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af895ddadb8d5bf3c831d56ef20fdde14338897a1301ff86fab9213fcb314694
MD5 600c82ff944341b51e6bf6aac08d7083
BLAKE2b-256 bd092f5056f4717daa427b18d6ca1cbd49650e87747d7fe6926c6409aff09c68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: otlp_proto-0.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 90.2 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c6d7111397d47f7c3f3c9e28eae4520e3d395e401815d11ee0fe2026475ed3d8
MD5 fb9ec244467cd6fbdad3f3006afa0511
BLAKE2b-256 d4fa0638fced04a9c5d151862abec2f7202169712b61e6c2d34ca784965f2ea8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: otlp_proto-0.10.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 86.0 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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bf720129d3d7384448edddc70f925882a1620da92fc04e51c99ab73513cd3eb9
MD5 16f0a5884ab0add0592c8cd3ac7cb31d
BLAKE2b-256 5ff619f152ea9d00bbc73e1a8141ba67276bf6e4d21dda18caf4e735ed0dbb6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 495bb985699329ed86d034c70feea0e00c0f006ab8cecbd754aae8bdb070baed
MD5 5dddb7fc9d577dcf23cf39602c17e08b
BLAKE2b-256 7e0fd7f158eaba6ac5964230442ea315978c70b47753f594dfbb9af30a52553f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66305ed183624410134cbb072c003d4e8d7c915fb0e3a27e213da86cfc2b19fd
MD5 ebc38db59bd7171e5736e4fe0269c971
BLAKE2b-256 692aba3e821575b9cb66688303b01d2492c257779662d2558a65c03bed53274b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75829c483ba8c5b490f9429db72b43ff8d60383dd1eb6a0e590c2779cfe28298
MD5 662d27f000c306dc022a838290be9e54
BLAKE2b-256 4ed15447d354b38c912eead323f1c19ebc659e60c0be04a2b1d7d0dd8309c840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 338a02eaea3550de2fbcb300525cec9f2d94140d97b0fa64f9837026e7733bf4
MD5 c2a23712c6da05bfebb18196da1ff13e
BLAKE2b-256 8eec4c37d49ba19e3b4b4ea046e5ce70891b14599df38727f76cfe1bef6a231c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb6c6ed220a9dcdfe6e2467c23407c22fe0a93a26000fad63aee9a627758a4dd
MD5 859e05536cf9b94323c44e9eaf0ec601
BLAKE2b-256 74656438a87dbfc6806e3a053aa0642746542fe27416e68ad31fe1fa4b90f614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63a895919ad396634ba51bd2a2946f9408b61f3b3432f9a6cd13b45687707b29
MD5 3b60666e37ac817d3bb5efc13d497d20
BLAKE2b-256 025a2f31d2d094343200d2688dc76e596ba5989377feefe2fc614a04c130f1fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8031f52af78c7a03efbb67e54c20f6a918629a48df14437e6ebf929af261c96
MD5 61439d6cae3228197aeb49d599568ac6
BLAKE2b-256 090f1a86ead4e61f16734f8400cbfde0047d71982b68676a0359beb00137ff81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 844ea31c326e082b7b1f1fd7a22c973481b9e42b3fdd2be46ffffdc9509d1e3f
MD5 938b047869d4420eab43a602ad5b767e
BLAKE2b-256 73f26966be40a1842416c990d2a06a29b8e8f6dc381c7991b3131842cdbcc8fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36244d4ac8304025ef49b0386e523fc32466921475ddf43a28fbe7033adf4d59
MD5 798fa7aaa4bdd873b93068d49a2c6185
BLAKE2b-256 9733bda986ea3f232ca6167f68049a40dd51bd94138b3a8c653bdb7bd4d44135

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for otlp_proto-0.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 51f149a6b736e0d726e110343040a4d12797d75b5deaf3d6214a46b9311a62ee
MD5 cff790d75c7c71b89e152098d9d42fa6
BLAKE2b-256 e4ad347fd79d270c44b4cbff879909c8cb451131c1125b508e1b17cebe8053fc

See more details on using hashes here.

Provenance

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