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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

honeycomb_pycpp-0.1.9-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.9-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.9-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.9-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.9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1981fd23f48c8d12b1c13830e5f6b212cc9a359d309715a3b263122de01c7bb5
MD5 c68d7342d15bdf9dcf01ccfe17ca0a01
BLAKE2b-256 83a410ec6610c1354339a962c4b3275d3f22b7938a480d7c4486f4057d86ec77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 864026fcb45db69d392d7271eb5d72156fcc21bf201f783747f0cd99bd805d08
MD5 30df033e125e13efb5fa134a41ce2ab3
BLAKE2b-256 6441da45396e5b02a81e0e52386737cae035acfa979b6669f431f5f570437e60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9dd23617716b08ff445bd0e70ee2ebd4916340416b4dad762760a4004df7a106
MD5 3e9af61682306b3855fdfa0332d18334
BLAKE2b-256 3b6207608695c31afa1859903446113972138567fa4e9e72f921b5d1b3ab3f31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 aabb82971e7f413e6b50c5c8720666c33bf80bdd550ea8ef763b4f194b747b00
MD5 8d6021869b68f1f47fce2cfadbc173bc
BLAKE2b-256 713084fabd4f6bc9fdaa1f3c8e8c6b93eeeddee95a3960c3566d9597e28060d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2425e97eec49f942572309fc92a3a5a1401299ce284b5e3ae6834f4b2f5416f4
MD5 82b89c9e7f7030c7de01526bd98a470c
BLAKE2b-256 44a08c0510cfa1529009e2267227e3bf23ed66d93764e64b964b31b10dc4404e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40b5550b7f37c3d66fdb212c9fcd599c3e6eae663b5514523b9d3fad57461ced
MD5 dcc66ff609c505ea0a93b9b107760159
BLAKE2b-256 3e94bcfa6b6eee98a9da6315237f864f7fe48fb60ff477e971bc710b122ea2ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 3ab254251fc7c72916569e0d7c1d16b86ba3db2a6bf22f4534f62b629aefd82c
MD5 8f1041a71ac35dbce8514431cbaaeed2
BLAKE2b-256 c190dbbca9ac1190cc8cdb24254fda0ac2796252efc2a4311d3d6e6b543af3b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6ff068773624bb270ad4ba3826e34fbab9a80819d198ea0d71ad49a462932df6
MD5 6bd656b631be28c162f74c6f8f6ef340
BLAKE2b-256 0127c6dc7d6a3272518bd089fd74dfc2dd18f33610caa2983be8af7536d5333d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 845952b47140495688b675037686f594f8d556e3b60a5790675adb3e66960a39
MD5 a09ba335c4351597001549a36ae8d508
BLAKE2b-256 8b1405640663214ea520e9693963f1e3ebedcf84efc3af54caae20804915c21f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8eb62e9192f5917f98018b9ea029d7793cad56a53b4e5ba298bce1bdd65d7d8a
MD5 c6fe1d9299acadc4355ff667a7969851
BLAKE2b-256 306ffb833ba430fa3bed1c7c05814a1efdd953aea8fe95a43ea6718e26811140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 feef697a016dcac35d6715afb8cf133a51b6ddc2d1396eb331012b9c45202747
MD5 a28381e4dcc1df47df17b14427a99c37
BLAKE2b-256 edaf80994f2aff038afa767ca69d045993aae379729294c86d3fe2ff8d514297

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c0bd96fc5b672454343d06b8d1e51700bac714e08a6726d5d8b0329539d05757
MD5 6b7e59c31e2e5c8bc2ee82e125b7fbb9
BLAKE2b-256 8ca3b052c79f85001d3c37dbea76da5d14c1e7c533b592a33dfaf2328c3da022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36b25b24d24b7b60feb8799c39373acf6af4d782cf409785c13597f4b9ea7acd
MD5 cc0200453abdac3ce7c197366400bc3e
BLAKE2b-256 f5a318701e1274389f76f8c07c764c3eb13efa44ff71f946ea7e8c5eb4994a9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a95fd47996dd5a776961d25fdff25c9341dff8a3c3cd83cd1ebf19441b83bb9
MD5 97c4ad7f6318ec55942fc9f348c10d5b
BLAKE2b-256 c9e5647739adcf954cc3e254213002a6ffa72468cded2aba176909126c640bfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5dcca32189b25826d7d0255fbd3da6f4a928ccbc361d23f5d2d9b635eafabe83
MD5 b661b7e2e84231e053addaaeec44dee7
BLAKE2b-256 e6a51529c45ce283629a269746ab40c11a4fdf80c91e75e7108f30cad026d6ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7cc297b1e09704fca2ad5a2dc44d327326497fbe3b5793f28f7eade82312d8e8
MD5 9f76ffa9e11f93b81919a3bde8d267ed
BLAKE2b-256 d522fa72a9e3b5544d234ad010d9f2439aabae6fd30aa7b2931a460a122a7518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fbf49683d87079f5f87db2a40b893ad528d1df1307bb868acb368490ebfec3a
MD5 02cc053e3049a8e534cb645e5a4bf79c
BLAKE2b-256 0ee980970e8a68c362b2b93d25fe2de5e40105d9dbdd318b023cd91b00c22ce3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5746677e4078f8bdb766bfb8038f26fb0b4a8c78ab63c03459e2712710b0484
MD5 c79bc8e4eb40c72cc79bed9b0c73d6be
BLAKE2b-256 97e8ae698f3372ac6ec93f4e1aa127a780df797a89bc12f4efae73d35fdc2f7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1f1282f193ab3d506673720ee14ad0a8fd0e45fed6893351f30128552c9139c7
MD5 324fd10108cbfbc1ddb914f911a94f96
BLAKE2b-256 2ac4188836961ed6cddb17bfbdaf53455e1d7532150ad54fb57c90e0b1f05adb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for honeycomb_pycpp-0.1.9-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4e3afb0920b87b11cd69e362d3a2c0126218ee4f8bad3d9c78957b4bb8fe9ed2
MD5 3827bccee61e837ce20ee2b4ff80becf
BLAKE2b-256 80f1d61bbd0bb1efa96c85ed6fe95838216916354b1b1246283433403dc2cebb

See more details on using hashes here.

Provenance

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