Skip to main content

Honeycomb OpenTelemetry distro which embeds the C++ SDK

Project description

honeycomb-pycpp

OSS Lifecycle Build

Python bindings for the OpenTelemetry C++ SDK. Provides high-performance tracing via a Pythonic interface, and ships as an OpenTelemetry distro for drop-in use with auto-instrumentation.

This library is experimental.

Installation

pip install honeycomb-pycpp

The wheel bundles the OpenTelemetry C++ SDK — no system-level dependencies required.

Configuration

The SDK is configured via a YAML file following the OpenTelemetry Configuration File Format. A default config is embedded in the package and used when no override is provided.

Environment variable Description
OTEL_CONFIG_FILE Path to a custom configuration YAML. Overrides the embedded default.
OTEL_EXPORTER_OTLP_ENDPOINT OTLP endpoint (default: http://localhost:4318)
OTEL_EXPORTER_OTLP_HEADERS Headers to send with OTLP requests
OTEL_RESOURCE_ATTRIBUTES Comma-separated resource attributes
OTEL_SERVICE_NAME Service name

Usage

As a distro (auto-instrumentation)

opentelemetry-instrument --service-name my-service python app.py

The distro registers itself automatically via entry points — no code changes required.

Tracing

import honeycomb_pycpp as otel

# Initialize from config file (or uses embedded default)
provider = otel.TracerProvider("path/to/otel.yaml")

tracer = provider.get_tracer("my-tracer")

with tracer.start_as_current_span("my-span") as span:
    span.set_attribute("key", "value")
    # ... do work ...

Metrics

Install the system metrics instrumentor:

pip install opentelemetry-instrumentation-system-metrics

Then activate it programmatically after initializing the MeterProvider:

import honeycomb_pycpp as otel
from opentelemetry import metrics
from opentelemetry.instrumentation.system_metrics import SystemMetricsInstrumentor

provider = otel.MeterProvider("path/to/otel.yaml")
metrics.set_meter_provider(provider)

SystemMetricsInstrumentor().instrument()

This collects CPU, memory, network, and other host metrics and exports them via the C++ SDK.

Logs

import honeycomb_pycpp as otel

provider = otel.LoggerProvider("path/to/otel.yaml")

logger = provider.get_logger("my-logger")

# Emit using keyword arguments
logger.emit(body="something happened", severity_number=otel.SeverityNumber.INFO)

# Emit using a LogRecord object
record = otel.LogRecord()
record.body = "request failed"
record.severity_number = otel.SeverityNumber.ERROR
record.attributes = {"user.id": "u-123", "http.status_code": 500}
logger.emit(record)

# Attach an exception
try:
    1 / 0
except ZeroDivisionError as exc:
    record = otel.LogRecord()
    record.body = "unhandled exception"
    record.severity_number = otel.SeverityNumber.ERROR
    record.exception = exc
    logger.emit(record)

provider.shutdown()

The LoggerProvider can also be used via bridges such that opentelemetry-instrumentation-logging work:

import logging
import honeycomb_pycpp as otel
from opentelemetry.instrumentation.logging.handler import LoggingHandler
from opentelemetry._logs import get_logger_provider

handler = LoggingHandler(logger_provider=otel.LoggerProvider("path/to/otel.yaml"))
logging.getLogger().addHandler(handler)

logging.getLogger("myapp").warning("watch out")

Deploying alongside the standard OpenTelemetry Python distro

Both honeycomb-pycpp and the standard opentelemetry-distro can be installed at the same time. When both are present, opentelemetry-instrument may pick up either distro. Use OTEL_PYTHON_DISTRO and OTEL_PYTHON_CONFIGURATOR to explicitly select which one runs.

pip install honeycomb-pycpp opentelemetry-distro

To use this C++ distro:

OTEL_PYTHON_DISTRO=cpp_distro \
OTEL_PYTHON_CONFIGURATOR=cpp_configurator \
opentelemetry-instrument python app.py

To use the standard Python SDK distro:

OTEL_PYTHON_DISTRO=distro \
OTEL_PYTHON_CONFIGURATOR=configurator \
opentelemetry-instrument python app.py

If neither variable is set and both distros are installed, the one selected is non-deterministic — always set them explicitly in multi-distro environments.

Current limitations

  • OpenTelemetry C++ ABI v2 not yet enabled, any features relying on it (i.e. links) are not supported

Building from source

Requirements: Python >= 3.10, CMake >= 3.15, C++17 compiler.

git clone https://github.com/honeycombio/honeycomb-pycpp
cd honeycomb-pycpp
pip install -r requirements-dev.txt
pip install -e .

To rebuild after C++ changes:

pip install -e . --force-reinstall --no-deps

To clean up cmake artifacts:

rm -rf CMakeCache.txt CMakeFiles/ cmake_install.cmake build/ dist/ *.egg-info/ *.so

License

Apache License 2.0

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

honeycomb_pycpp-0.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (19.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

honeycomb_pycpp-0.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (18.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

honeycomb_pycpp-0.1.7-cp314-cp314-macosx_15_0_x86_64.whl (14.9 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

honeycomb_pycpp-0.1.7-cp314-cp314-macosx_15_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

honeycomb_pycpp-0.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (19.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

honeycomb_pycpp-0.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (18.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

honeycomb_pycpp-0.1.7-cp313-cp313-macosx_15_0_x86_64.whl (14.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

honeycomb_pycpp-0.1.7-cp313-cp313-macosx_15_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

honeycomb_pycpp-0.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (19.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

honeycomb_pycpp-0.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (18.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

honeycomb_pycpp-0.1.7-cp312-cp312-macosx_15_0_x86_64.whl (14.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

honeycomb_pycpp-0.1.7-cp312-cp312-macosx_15_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

honeycomb_pycpp-0.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (19.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

honeycomb_pycpp-0.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (18.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

honeycomb_pycpp-0.1.7-cp311-cp311-macosx_15_0_x86_64.whl (14.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

honeycomb_pycpp-0.1.7-cp311-cp311-macosx_15_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

honeycomb_pycpp-0.1.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (19.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

honeycomb_pycpp-0.1.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (18.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

honeycomb_pycpp-0.1.7-cp310-cp310-macosx_15_0_x86_64.whl (14.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

honeycomb_pycpp-0.1.7-cp310-cp310-macosx_15_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

Details for the file honeycomb_pycpp-0.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcde8422c472d50946e6edebe75ec1cdb17387e177c7faee092dd46b640112f9
MD5 7f671490b0cdf5ce9cd4afcdc74eab1f
BLAKE2b-256 ad50c889c4f4192116d1e8b0a1b7cf9fe3704741f805a54ad33939775b9b82e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e61ed4e5f00bdde9daae7d6d0a4661c6648512598c61fe3f00e9808603e18866
MD5 bf4c18ca21db15640be5dc59a7024955
BLAKE2b-256 75b0c701453644e213a2f03309189a316aa863716041ae7f44a8da410fe8903b

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6a538ead395dc883aeccf21a3a2fa4631f0bf24c2451246c6ae74c38074a9938
MD5 5fb54c91613ce268327c5312a42d237d
BLAKE2b-256 4478d1bdd6cf9a595f97600896d478f872b332ae3d954cbf4a63910f092ac101

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 79eb087aa7723f182399816d677f3257aa12ac2c9f55494c4d21d09a4c7b9c8a
MD5 9b0fdbd0d9d0c63493a0be6af1230793
BLAKE2b-256 c9802ed2df4b9fa95d2184eb01e2a45691995d39669e0fee9fe28f664da3313d

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a39f66a46e347e33217052baefe76fd81b804f77c8409819806aa55e9e7580f
MD5 2edc959662cb5a8235d0c3193e9da0a6
BLAKE2b-256 def4d6736ecbe694233a645db3d72483ec043bea43d28bc46925a4dde61383ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aef7a200caf9a8f313cee7fb3bdedbfc71c656ec42b9b9d7ca3da8d2acf16965
MD5 dcb5ed85cdb64de63d27cd913edc513c
BLAKE2b-256 1fded72bc5f6f4de1275c889fb9c34afb06b678d9d3992490dd8c8f97cfedc6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 acc4ca2c5cda29f8e1605b8742160ee513320c99e74c69aff9bf8db8e923c2aa
MD5 4fa1faa51c53fbca5c1c46db390d8749
BLAKE2b-256 0ea401defa4323b081e7b1c1dbdbeddd8ca43cafc4dd48866809c268ab40d7d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3178a17c915c42ec39bb17b70ca9ef700f96f9dd1ec8973254a165535cbf3305
MD5 67d065d462e737bcc90762d4e2aeaa2e
BLAKE2b-256 fd7f9c8c090f93a4a9d2ed41f0778750d48f79b1fe9774e6ac71e3173c828824

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f2857ef4e24304eac2c2a2169845478284174fa3a3e1475279c239fd2c5bfde
MD5 fb4d468fa602b99b28f8e3e2b4dea807
BLAKE2b-256 dcf5ff873e5933c5ed4c14d6ef949f6222cd988be6415d7f70366eaa65ff3b56

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9318920ea432ab7aaba6b09de409ea248e6dc357261fc46b8bd4b4e0579a3e4
MD5 e0c541fa620be4bd6bc3bf1e37837b53
BLAKE2b-256 208e15bd6508041516eb52b2ef7a080c3ea93b64fc38d2db45a6d4d6e2d5fc0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 88b600e8a121e95d4c8c8983ba16e3c2cc3ca39c21e8320a6d30c65e0e0aa61f
MD5 6303f91e4a9c0eb46cdbb71740fbc48f
BLAKE2b-256 919950b19bbde6e1e71bbea8a0473020116980e23ef2a30c5873335cc9c202eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 105c7468b8ff5ad88865d2bd74a38d9053cf2346e68be00ec02e331ee61b6dbd
MD5 32c0a4b789224e215615a04788b05655
BLAKE2b-256 1e48d8215c58015b72ffd45ab68fe675741c4f0ce75efe1d6567b38d29cf388e

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e1903eaac4c150af7ee9524e0247504e2bd5c0b4e3088db718ee45c9019cc94
MD5 4ba4bd9ad6135156298612b19a638c9b
BLAKE2b-256 98e840bbce8892a7bc8e4fbeb494cf2ddb0b4fed2be13eeb41eadfa516debef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6592e55babb9e9a5b5312ed1e25f6e743f19d7a8ab337a6bff6331b4eecfad22
MD5 9e7c322116787b5ffd3e8d8779a7dcad
BLAKE2b-256 8f58a2454fa481bb394c7fc6b2e174e15450f6a9b5fcea6a59a6f74ba0bc0181

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d3b19d4f91f7655924b7d99e9151e39087042c5f17b6781c1753ff56800bc960
MD5 5fc46c71d26865d33d662edd311d0c23
BLAKE2b-256 cea4f9f5631e8fe4e44475f9876d121aa11698866bd85401aac6fed0c43be783

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d56f30750b4c1357bfb9c06b0014408a0ff5622e72ee209e2f538f3e800f54fb
MD5 f8121ead8f927c82d53494d359792d63
BLAKE2b-256 5964c1dce280878678e0e997c98dc401adb01e1b39ab630a64a85ddb0912a405

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd36a7ee36e3bd71b769ce0a0b800e52fa0e9470f498b9cb9e55951f38611635
MD5 35f47ef93f2b4c233352f64d77a2bf92
BLAKE2b-256 e28979711cca8d2808e56cc8c9b27f68d2551da98ee6829b46de57ebb942e24e

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46cdf0665ecf4849da1100a43d5568f611e4eda15fbf0e72a2ddb4edfe441c24
MD5 8da3a5850155b04f8b28c3ac15ecb91f
BLAKE2b-256 c4cdd8bbc2be84f7b85e01dbe27388790a59383f4889dfd8f90bb112c7a3abc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f6e39fa5075bd54e8e9246acbf5f1983e0b87708306f8aa55c1e22e2f71b8d5a
MD5 596cc18977d548ebc3c02e6cf9bf8bb2
BLAKE2b-256 8510242ccbb6505065678f9e7487dc93c307c3c91cfcb0b51fdf90806394860f

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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

File details

Details for the file honeycomb_pycpp-0.1.7-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.7-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f37678cce95369f3eb17bc4ab9e39e528606c50ec8e4f93633d8f3c14131ecba
MD5 7a056a59a08a3d47ffdf8b3ed2a6e001
BLAKE2b-256 a9249ce3c1cd54a8e8dcac0d4ddb1b678173788333af6b6f647f3ee84c1a62b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.7-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: build-wheels.yml on honeycombio/honeycomb-pycpp

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