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.10-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.10-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.10-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.10-cp314-cp314-macosx_15_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

honeycomb_pycpp-0.1.10-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.10-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.10-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.10-cp313-cp313-macosx_15_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

honeycomb_pycpp-0.1.10-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.10-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.10-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.10-cp312-cp312-macosx_15_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

honeycomb_pycpp-0.1.10-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.10-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.10-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.10-cp311-cp311-macosx_15_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

honeycomb_pycpp-0.1.10-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.10-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.10-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.10-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.10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76e0ea964933db0869a787bfbc81bcad006a1aae98188cf46f7125ebb295797f
MD5 99ea16df2f0f39a680a3276091922a8b
BLAKE2b-256 7c72433a3c05641fd25c290c198c3e8e1b00d3ac48507963acdcfb54cdd19e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 180d75bc81d8cfd5b058d2a9e7bbab1c9f628da5e0ed2925995bf70d7b508526
MD5 a7995d4fe6caeb6df7f6f72617cd9b32
BLAKE2b-256 c3bc0d72436ee304abc56d6c499623b94fc553e4a8e38dfb6a050dda8018bafc

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9325ffefc330dd46a2aceb91e68dd1be925042fe1c0040d1863de445bda92eea
MD5 cbf1599807c9837837dd143649922086
BLAKE2b-256 9123ac178b27295a42ba27bda37ee2993bed2dcc65d5a1cd1df737adf5869504

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6768d4ad3058102646663872f9a19c583ff4a632c7bf4a59d0aa580a1de21093
MD5 999770e535fea67131da7a400aac1528
BLAKE2b-256 0230a91b6c9b7ee07f455f695b07d50c54284bbc3d34f655bd344b43b99b0f0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f91adb0b2ec7cc7edb930e0b16093f04e0c5b939d9e78ba6d0ad9f0f7a04e8eb
MD5 ce090f435f03d26a6be0a7c38b2e5a68
BLAKE2b-256 2052e000a26c1621e14e6a83addc95522705c89a5e68af39b722e72a3d7c1660

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a94ab9d8da00d77fdf755d919bdf78a97359be38624060ca315dd5759662e628
MD5 5fd84511f0e31cd6fdbd49f95fe7eadc
BLAKE2b-256 b40c9fce17bf57cd8cf50306a300ef87f4d766e55a22224890517a791074c78f

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c6822b923eb310e6ff1baf5cd9bbf288e4dfb4e1a66f5d3afe873a1d7004d9b6
MD5 b9c71a7de0bc2dfc436dadacf5f728d0
BLAKE2b-256 841ec27f6e645c032c66a164deab5551a72121bdc3c7c05af2848d84e1b1fd21

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0f3bc3819b6b6ef446be636e3af42fc4680d965ec31cbe3e29271948381b4929
MD5 d488a4b1202701f59e0d08f9e91b485d
BLAKE2b-256 1191d5226c95a6c708458e7db44c5e22d31b7d65025e9fa3946538b28ec5be94

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5e50b6d8e35f34bddbc0be70888b77b03208f9bd7e8ebaf1a1153fa607e8418
MD5 39a4cff6272a9b10a59642b4fbd13fee
BLAKE2b-256 ab4ca15748ce47701462e861210515a5a8d3bf99f09f9c686a0f63674b21e1a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76b92a611c05d566e77310be6a21f2e0dc71fcb51a25fe9a45d283aab0d374f1
MD5 84e6bbc89763bd1bb717a3db2023876a
BLAKE2b-256 4e2035ed700f76323f4b11cbffdd604e3bb19c19733f0b36d35daa3b52a2771f

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 08dff62ad4e85582c5dac34b7d47e341572422c1202e8d7d8560b7cb0f0b44af
MD5 f2110946a7ade83f3aef1ce69e2dac47
BLAKE2b-256 5f355693c32ee909485c78f59498b6410e51131fc557a545fbf20c222fecb47d

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 52f8f9cdbfecfa59b7b47956a62f05ab2e6aa054b729fcd97ba86534d1f20422
MD5 135f4548f0310e50bc50f32de460a2ec
BLAKE2b-256 1dd1ec14c6c4cecfbbcfcf4bbf9ac343a7e12adad2e97e17b39b15fab6deee86

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 789993d09ddf3ba7aa11a570e10da293175556426f0b943de1ea7a62544088dc
MD5 7be121b5b8ffea8c5f10c14c57399306
BLAKE2b-256 40dda928e8e7ca62e6466be3e6b3c88fdfd22c025d45b11afc890c866da2ce33

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca67c659432342726ac34949ee85fa1d013ba02ce86989c352c33f447f8d9f9b
MD5 10ccc6060724ddfdaa24171e1e370987
BLAKE2b-256 526491208e193b4f728585dc4145e8233034adc79aa59b9fea7b6ed976b4449d

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 57346b5fb4eb1f1248886c8955ef3b4c9bb55702bffffda1acbdb48d21ac3077
MD5 4e62f3e1341c6c07f8f364070c2b3798
BLAKE2b-256 c5925fbfbbdfda0c1cc539eb517401f233577c0c7942030de615a8d8d0ba58a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 bbfa7979a38354504fdc5733f9760420f9937d94d63d98c4fd2331f04ae7f47e
MD5 4b5ffe2898da1070294a53f64ec7e5f0
BLAKE2b-256 55d94c73f70789c7478c1fc9342585add74676d0ae9909f06f18cba6d16b9a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49c080399989369ac36d796ff8bcb029dc3348e1f57b369943e95fa3129d67bf
MD5 de167792650072342012a32edbc24c27
BLAKE2b-256 55bdb0205aac66efb1a869aaa30aae848bbe27efa54827eb32993840904bd18d

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1194c85a9b4fa6f85f961605a2b6af8fba740ef0dfb9b3009a120704dad6d55f
MD5 9745571b9e8293c3d474741a2c9d90d7
BLAKE2b-256 78bdec3ea6888540eda6ac8c4d000e9dc6b01f469d0bc4243de5948ed35377a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7e116ffd02c2f2d22e0b6e63c98e0f891fae9cb1b1f30c28290d88b545d71bf7
MD5 8dbc332f7415552acd7a6be234680e9e
BLAKE2b-256 779c420f3b42dfeb94aa0a9c701c6c4ef197dce79130739ddef12b9b7318abfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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.10-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.10-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 200c628622843814203b575d344470891fba1b63674f290ae0e079041658deed
MD5 265c9561dc48febe5ca20291b711d9e2
BLAKE2b-256 d59e45b4544d0ee306231cc2649389fce9db12b234eae3bd63e1cf21476fbcc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for honeycomb_pycpp-0.1.10-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