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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

honeycomb_pycpp-0.1.6-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.6-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.6-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.6-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.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 290247a4f1a3fe3b84f3b1c6768e37fc32b0626c2a83bcf5d94ba160b4586837
MD5 bdee389f89fe9b296833ec21a56bbea7
BLAKE2b-256 0392a356376984fbe869717228606906d338897e4d8a82a1705d80feb8fedd28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ac0a53c369a65ac99fbe95f03999d4e314bf0ee75e69846078b90c7c41825d7
MD5 0465e23fbdd74337f92321152f34d60c
BLAKE2b-256 5f67a60f8384ea7d231d72785cd78a1530acdf85213c0a33c820bd6e6116145d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a946bd4a869a42c33c77ce49aa5a274c76a3bc127d1df73075d585fad4bc9a2b
MD5 2add8d2113aba4b1c99200cef1852e83
BLAKE2b-256 eaa2fd227d2436b360a84096afd465825130e5b69bec0f0a037c12f9be38f09e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f16dd3378d7e9ac8c4a1437377c46402d03bc503b3cb49d599bb6da8df2266ff
MD5 5b6571d1f253a820bb61fca21f987bef
BLAKE2b-256 5b2660025b1ef24f89881110752e7eb2a2c5bc7c5dcf6ec96c3167d98f15959e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ef64597a04d9d0d2cc8b93b3b0058a62b79994fb93b4914805938b14df6d2a8
MD5 fd379fdfb8e61cf4346cb543df339672
BLAKE2b-256 11fdaf2c833b5a6fc4eb3fa528ccfa69f657f0abb3ee37142cadb286ad016592

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f32b0f32c7afb216d0d89fe0506b19df3e072e0e4d4f1b0a8eb619a964ac879
MD5 579deeef0dec638ed609a0e395b43080
BLAKE2b-256 7acc774907ec9019282e2d192e81aa676d5773a7506ed2f7c14f54a1497819f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d690c02632231cca94013f27e10a65313367b4d6bd7338772a2e61e627b2b03c
MD5 5927b79f3556d38a40a2be73cdfc40ff
BLAKE2b-256 90adbea1cb63f64f495ff832d625b0cf90839fd9567e14dfa3c925efbd49cf00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 717eaacb1c86e4c677b24d24297d3e10a71486ba3673d815f62da80a537af0e6
MD5 900254138f5a82f7d45bbb9bf803f82e
BLAKE2b-256 f5b71d91a1f4188d3ab118e3a008dbc7aa6ab542033c6c61c6d3603f6aa96588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 843a25a8ab712de6f938f6284b68e986998282d1c25c879e0805da2203ddc57d
MD5 4169c0017bf9d430f0569d1b1394685c
BLAKE2b-256 0e66e5901eb46ec07e2c9bfec2f98b9d5649251bcf97bd69e2f0d1e60fc23171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea5f2fe10be059f066826c9bfa312250908712d923a486c6093a98f74b5d6cbe
MD5 8c3f8a1c33d60a9e0b700f692687766c
BLAKE2b-256 b2df8dd250e6fe416960c2c5a22f64e279b94aa85441a35ef74e30dcc7ed99c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6fcde9315cbca7e9bf9bfe6cdeb0ae8ef5ee7dd6d18b784c18c89afd05acbec5
MD5 95846e93d6ba6c0df4c16d0a5daa2533
BLAKE2b-256 5e7a22050f9cc5b31013f7012e99be07cb90e6f2b587068c94f85407b58423ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a329a9a84a5e4b931e93bc27d03901fc1ef010b2ef228ebab01e255009dbb2f6
MD5 4f55032e74313bc73a4f886d754092a6
BLAKE2b-256 e6714954635f52233d7ff8176293c5620379f7398e95a93064f97ab1e68f58e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 578b994a3e4bfcffdb1e56445188b3ad4dcde2933b005fdcc2eb988a1d3ee38d
MD5 f3b0121420ee562ac70b52296576280e
BLAKE2b-256 50a3f9f2907f894fada8250e75cf5a7f464e49acd0f7fa0a54c757ede7314a72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f608f4badddcb895da8433fb1c72ed82d4ad69327908c923fd077787bc7052e1
MD5 7f8a7f9f00c0599408448dacf68383b8
BLAKE2b-256 c4bf3b4e7f4976409025632b79501d4ab18ea2325c228b876b34e7be07c4d90d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b6347b43a24f33ed9ce0fdd1db59fb473000c102304577fb400241c42a5cd97c
MD5 056bd58562b4853dd430781107e98e75
BLAKE2b-256 01af9476e84139cbf5f7ce10f894b84f6b4e8bd54695f8313c1451ccfe2465b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d1e139c57a96f5df7b489f4bf5ee79908d18883905683ca4cba19fe804adbdbb
MD5 fc55bc950c3966e932d894aab3f6af6e
BLAKE2b-256 69a8dfe1c06889a6e8ec3b55cab00988b77c2ecf96b0cfa268174428c53e1f1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b37ae5b5af99c6c5112910639a456cc0abaaf1d6c5ccb94b446ccd3210ee0b67
MD5 3a31c92250c5399d990b135b51d55869
BLAKE2b-256 bd5dbe1444fe43259592504a9e49ade42be95ba27a66be1c12870c488cf03b8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe401910a4b15f68f7f9ff7ffe69e4a94f505188b3d5209134e5561cd05606bd
MD5 55381f2dc3590dcbfbc9330d22b255a9
BLAKE2b-256 0a15b1b34654a06a5564ae5c445ff04d054f410dd6cc7b1b6498a23f6d502a8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4e93784efe7acf9c3c35b7f8720356e1d5b1339e9aa6d4df235c0b3d55efd474
MD5 471f2004fec6ec505df36a5e2c0fddac
BLAKE2b-256 369aca38fd61558ed8421065bf5d1fbdca67f1884b82d53cd8e7d1164414406d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.6-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 cb4e613106bbd791bae830eac685068673ed176661c7250422e746b01a25844f
MD5 33c109905abced192d382b8190df7bba
BLAKE2b-256 17717b51377400dde7f5167f6c2d319a3cb50b5df86aa168df47ce5e6952c766

See more details on using hashes here.

Provenance

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